Documentation
¶
Index ¶
- Variables
- func RegisterRecipeRunServiceServer(s *grpc.Server, srv RecipeRunServiceServer)
- type CreateRecipeRunRequest
- func (*CreateRecipeRunRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateRecipeRunRequest) GetItem() *v1alpha1.RecipeRun
- func (*CreateRecipeRunRequest) ProtoMessage()
- func (x *CreateRecipeRunRequest) ProtoReflect() protoreflect.Message
- func (x *CreateRecipeRunRequest) Reset()
- func (x *CreateRecipeRunRequest) String() string
- type CreateRecipeRunResponse
- type DeleteRecipeRunRequest
- func (*DeleteRecipeRunRequest) Descriptor() ([]byte, []int)deprecated
- func (x *DeleteRecipeRunRequest) GetName() string
- func (x *DeleteRecipeRunRequest) GetNamespace() string
- func (*DeleteRecipeRunRequest) ProtoMessage()
- func (x *DeleteRecipeRunRequest) ProtoReflect() protoreflect.Message
- func (x *DeleteRecipeRunRequest) Reset()
- func (x *DeleteRecipeRunRequest) String() string
- type DeleteRecipeRunResponse
- type GetRecipeRunRequest
- func (*GetRecipeRunRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetRecipeRunRequest) GetName() string
- func (x *GetRecipeRunRequest) GetNamespace() string
- func (*GetRecipeRunRequest) ProtoMessage()
- func (x *GetRecipeRunRequest) ProtoReflect() protoreflect.Message
- func (x *GetRecipeRunRequest) Reset()
- func (x *GetRecipeRunRequest) String() string
- type GetRecipeRunResponse
- func (*GetRecipeRunResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GetRecipeRunResponse) GetItem() *v1alpha1.RecipeRun
- func (x *GetRecipeRunResponse) GetYaml() string
- func (*GetRecipeRunResponse) ProtoMessage()
- func (x *GetRecipeRunResponse) ProtoReflect() protoreflect.Message
- func (x *GetRecipeRunResponse) Reset()
- func (x *GetRecipeRunResponse) String() string
- type ListRecipeRunsRequest
- func (*ListRecipeRunsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ListRecipeRunsRequest) GetLabels() map[string]string
- func (x *ListRecipeRunsRequest) GetNamespace() string
- func (x *ListRecipeRunsRequest) GetOrderBy() string
- func (x *ListRecipeRunsRequest) GetPageSize() int32
- func (x *ListRecipeRunsRequest) GetPageToken() string
- func (*ListRecipeRunsRequest) ProtoMessage()
- func (x *ListRecipeRunsRequest) ProtoReflect() protoreflect.Message
- func (x *ListRecipeRunsRequest) Reset()
- func (x *ListRecipeRunsRequest) String() string
- type ListRecipeRunsResponse
- func (*ListRecipeRunsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ListRecipeRunsResponse) GetItems() *v1alpha1.RecipeRunList
- func (*ListRecipeRunsResponse) ProtoMessage()
- func (x *ListRecipeRunsResponse) ProtoReflect() protoreflect.Message
- func (x *ListRecipeRunsResponse) Reset()
- func (x *ListRecipeRunsResponse) String() string
- type RecipeRunServiceClient
- type RecipeRunServiceServer
- type UnimplementedRecipeRunServiceServer
- func (*UnimplementedRecipeRunServiceServer) CreateRecipeRun(context.Context, *CreateRecipeRunRequest) (*CreateRecipeRunResponse, error)
- func (*UnimplementedRecipeRunServiceServer) DeleteRecipeRun(context.Context, *DeleteRecipeRunRequest) (*DeleteRecipeRunResponse, error)
- func (*UnimplementedRecipeRunServiceServer) GetRecipeRun(context.Context, *GetRecipeRunRequest) (*GetRecipeRunResponse, error)
- func (*UnimplementedRecipeRunServiceServer) ListRecipeRuns(context.Context, *ListRecipeRunsRequest) (*ListRecipeRunsResponse, error)
- func (*UnimplementedRecipeRunServiceServer) UpdateRecipeRun(context.Context, *UpdateRecipeRunRequest) (*UpdateRecipeRunResponse, error)
- type UpdateRecipeRunRequest
- func (*UpdateRecipeRunRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UpdateRecipeRunRequest) GetFieldMask() *field_mask.FieldMask
- func (x *UpdateRecipeRunRequest) GetItem() *v1alpha1.RecipeRun
- func (*UpdateRecipeRunRequest) ProtoMessage()
- func (x *UpdateRecipeRunRequest) ProtoReflect() protoreflect.Message
- func (x *UpdateRecipeRunRequest) Reset()
- func (x *UpdateRecipeRunRequest) String() string
- type UpdateRecipeRunResponse
Constants ¶
This section is empty.
Variables ¶
var File_github_com_metaprov_modelaapi_services_reciperun_v1_reciperun_proto protoreflect.FileDescriptor
Functions ¶
func RegisterRecipeRunServiceServer ¶
func RegisterRecipeRunServiceServer(s *grpc.Server, srv RecipeRunServiceServer)
Types ¶
type CreateRecipeRunRequest ¶
type CreateRecipeRunRequest struct { Item *v1alpha1.RecipeRun `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"` // contains filtered or unexported fields }
func (*CreateRecipeRunRequest) Descriptor
deprecated
func (*CreateRecipeRunRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateRecipeRunRequest.ProtoReflect.Descriptor instead.
func (*CreateRecipeRunRequest) GetItem ¶
func (x *CreateRecipeRunRequest) GetItem() *v1alpha1.RecipeRun
func (*CreateRecipeRunRequest) ProtoMessage ¶
func (*CreateRecipeRunRequest) ProtoMessage()
func (*CreateRecipeRunRequest) ProtoReflect ¶
func (x *CreateRecipeRunRequest) ProtoReflect() protoreflect.Message
func (*CreateRecipeRunRequest) Reset ¶
func (x *CreateRecipeRunRequest) Reset()
func (*CreateRecipeRunRequest) String ¶
func (x *CreateRecipeRunRequest) String() string
type CreateRecipeRunResponse ¶
type CreateRecipeRunResponse struct {
// contains filtered or unexported fields
}
func (*CreateRecipeRunResponse) Descriptor
deprecated
func (*CreateRecipeRunResponse) Descriptor() ([]byte, []int)
Deprecated: Use CreateRecipeRunResponse.ProtoReflect.Descriptor instead.
func (*CreateRecipeRunResponse) ProtoMessage ¶
func (*CreateRecipeRunResponse) ProtoMessage()
func (*CreateRecipeRunResponse) ProtoReflect ¶
func (x *CreateRecipeRunResponse) ProtoReflect() protoreflect.Message
func (*CreateRecipeRunResponse) Reset ¶
func (x *CreateRecipeRunResponse) Reset()
func (*CreateRecipeRunResponse) String ¶
func (x *CreateRecipeRunResponse) String() string
type DeleteRecipeRunRequest ¶
type DeleteRecipeRunRequest struct { Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*DeleteRecipeRunRequest) Descriptor
deprecated
func (*DeleteRecipeRunRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteRecipeRunRequest.ProtoReflect.Descriptor instead.
func (*DeleteRecipeRunRequest) GetName ¶
func (x *DeleteRecipeRunRequest) GetName() string
func (*DeleteRecipeRunRequest) GetNamespace ¶
func (x *DeleteRecipeRunRequest) GetNamespace() string
func (*DeleteRecipeRunRequest) ProtoMessage ¶
func (*DeleteRecipeRunRequest) ProtoMessage()
func (*DeleteRecipeRunRequest) ProtoReflect ¶
func (x *DeleteRecipeRunRequest) ProtoReflect() protoreflect.Message
func (*DeleteRecipeRunRequest) Reset ¶
func (x *DeleteRecipeRunRequest) Reset()
func (*DeleteRecipeRunRequest) String ¶
func (x *DeleteRecipeRunRequest) String() string
type DeleteRecipeRunResponse ¶
type DeleteRecipeRunResponse struct {
// contains filtered or unexported fields
}
func (*DeleteRecipeRunResponse) Descriptor
deprecated
func (*DeleteRecipeRunResponse) Descriptor() ([]byte, []int)
Deprecated: Use DeleteRecipeRunResponse.ProtoReflect.Descriptor instead.
func (*DeleteRecipeRunResponse) ProtoMessage ¶
func (*DeleteRecipeRunResponse) ProtoMessage()
func (*DeleteRecipeRunResponse) ProtoReflect ¶
func (x *DeleteRecipeRunResponse) ProtoReflect() protoreflect.Message
func (*DeleteRecipeRunResponse) Reset ¶
func (x *DeleteRecipeRunResponse) Reset()
func (*DeleteRecipeRunResponse) String ¶
func (x *DeleteRecipeRunResponse) String() string
type GetRecipeRunRequest ¶
type GetRecipeRunRequest struct { Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*GetRecipeRunRequest) Descriptor
deprecated
func (*GetRecipeRunRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetRecipeRunRequest.ProtoReflect.Descriptor instead.
func (*GetRecipeRunRequest) GetName ¶
func (x *GetRecipeRunRequest) GetName() string
func (*GetRecipeRunRequest) GetNamespace ¶
func (x *GetRecipeRunRequest) GetNamespace() string
func (*GetRecipeRunRequest) ProtoMessage ¶
func (*GetRecipeRunRequest) ProtoMessage()
func (*GetRecipeRunRequest) ProtoReflect ¶
func (x *GetRecipeRunRequest) ProtoReflect() protoreflect.Message
func (*GetRecipeRunRequest) Reset ¶
func (x *GetRecipeRunRequest) Reset()
func (*GetRecipeRunRequest) String ¶
func (x *GetRecipeRunRequest) String() string
type GetRecipeRunResponse ¶
type GetRecipeRunResponse struct { Item *v1alpha1.RecipeRun `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"` Yaml string `protobuf:"bytes,2,opt,name=yaml,proto3" json:"yaml,omitempty"` // contains filtered or unexported fields }
func (*GetRecipeRunResponse) Descriptor
deprecated
func (*GetRecipeRunResponse) Descriptor() ([]byte, []int)
Deprecated: Use GetRecipeRunResponse.ProtoReflect.Descriptor instead.
func (*GetRecipeRunResponse) GetItem ¶
func (x *GetRecipeRunResponse) GetItem() *v1alpha1.RecipeRun
func (*GetRecipeRunResponse) GetYaml ¶
func (x *GetRecipeRunResponse) GetYaml() string
func (*GetRecipeRunResponse) ProtoMessage ¶
func (*GetRecipeRunResponse) ProtoMessage()
func (*GetRecipeRunResponse) ProtoReflect ¶
func (x *GetRecipeRunResponse) ProtoReflect() protoreflect.Message
func (*GetRecipeRunResponse) Reset ¶
func (x *GetRecipeRunResponse) Reset()
func (*GetRecipeRunResponse) String ¶
func (x *GetRecipeRunResponse) String() string
type ListRecipeRunsRequest ¶
type ListRecipeRunsRequest struct { Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"` Labels map[string]string `` /* 153-byte string literal not displayed */ PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` OrderBy string `protobuf:"bytes,5,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` // contains filtered or unexported fields }
func (*ListRecipeRunsRequest) Descriptor
deprecated
func (*ListRecipeRunsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListRecipeRunsRequest.ProtoReflect.Descriptor instead.
func (*ListRecipeRunsRequest) GetLabels ¶
func (x *ListRecipeRunsRequest) GetLabels() map[string]string
func (*ListRecipeRunsRequest) GetNamespace ¶
func (x *ListRecipeRunsRequest) GetNamespace() string
func (*ListRecipeRunsRequest) GetOrderBy ¶ added in v0.4.414
func (x *ListRecipeRunsRequest) GetOrderBy() string
func (*ListRecipeRunsRequest) GetPageSize ¶ added in v0.4.414
func (x *ListRecipeRunsRequest) GetPageSize() int32
func (*ListRecipeRunsRequest) GetPageToken ¶ added in v0.4.414
func (x *ListRecipeRunsRequest) GetPageToken() string
func (*ListRecipeRunsRequest) ProtoMessage ¶
func (*ListRecipeRunsRequest) ProtoMessage()
func (*ListRecipeRunsRequest) ProtoReflect ¶
func (x *ListRecipeRunsRequest) ProtoReflect() protoreflect.Message
func (*ListRecipeRunsRequest) Reset ¶
func (x *ListRecipeRunsRequest) Reset()
func (*ListRecipeRunsRequest) String ¶
func (x *ListRecipeRunsRequest) String() string
type ListRecipeRunsResponse ¶
type ListRecipeRunsResponse struct { Items *v1alpha1.RecipeRunList `protobuf:"bytes,1,opt,name=items,proto3" json:"items,omitempty"` // contains filtered or unexported fields }
func (*ListRecipeRunsResponse) Descriptor
deprecated
func (*ListRecipeRunsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListRecipeRunsResponse.ProtoReflect.Descriptor instead.
func (*ListRecipeRunsResponse) GetItems ¶
func (x *ListRecipeRunsResponse) GetItems() *v1alpha1.RecipeRunList
func (*ListRecipeRunsResponse) ProtoMessage ¶
func (*ListRecipeRunsResponse) ProtoMessage()
func (*ListRecipeRunsResponse) ProtoReflect ¶
func (x *ListRecipeRunsResponse) ProtoReflect() protoreflect.Message
func (*ListRecipeRunsResponse) Reset ¶
func (x *ListRecipeRunsResponse) Reset()
func (*ListRecipeRunsResponse) String ¶
func (x *ListRecipeRunsResponse) String() string
type RecipeRunServiceClient ¶
type RecipeRunServiceClient interface { ListRecipeRuns(ctx context.Context, in *ListRecipeRunsRequest, opts ...grpc.CallOption) (*ListRecipeRunsResponse, error) CreateRecipeRun(ctx context.Context, in *CreateRecipeRunRequest, opts ...grpc.CallOption) (*CreateRecipeRunResponse, error) GetRecipeRun(ctx context.Context, in *GetRecipeRunRequest, opts ...grpc.CallOption) (*GetRecipeRunResponse, error) UpdateRecipeRun(ctx context.Context, in *UpdateRecipeRunRequest, opts ...grpc.CallOption) (*UpdateRecipeRunResponse, error) DeleteRecipeRun(ctx context.Context, in *DeleteRecipeRunRequest, opts ...grpc.CallOption) (*DeleteRecipeRunResponse, error) }
RecipeRunServiceClient is the client API for RecipeRunService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewRecipeRunServiceClient ¶
func NewRecipeRunServiceClient(cc grpc.ClientConnInterface) RecipeRunServiceClient
type RecipeRunServiceServer ¶
type RecipeRunServiceServer interface { ListRecipeRuns(context.Context, *ListRecipeRunsRequest) (*ListRecipeRunsResponse, error) CreateRecipeRun(context.Context, *CreateRecipeRunRequest) (*CreateRecipeRunResponse, error) GetRecipeRun(context.Context, *GetRecipeRunRequest) (*GetRecipeRunResponse, error) UpdateRecipeRun(context.Context, *UpdateRecipeRunRequest) (*UpdateRecipeRunResponse, error) DeleteRecipeRun(context.Context, *DeleteRecipeRunRequest) (*DeleteRecipeRunResponse, error) }
RecipeRunServiceServer is the server API for RecipeRunService service.
type UnimplementedRecipeRunServiceServer ¶
type UnimplementedRecipeRunServiceServer struct { }
UnimplementedRecipeRunServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedRecipeRunServiceServer) CreateRecipeRun ¶
func (*UnimplementedRecipeRunServiceServer) CreateRecipeRun(context.Context, *CreateRecipeRunRequest) (*CreateRecipeRunResponse, error)
func (*UnimplementedRecipeRunServiceServer) DeleteRecipeRun ¶
func (*UnimplementedRecipeRunServiceServer) DeleteRecipeRun(context.Context, *DeleteRecipeRunRequest) (*DeleteRecipeRunResponse, error)
func (*UnimplementedRecipeRunServiceServer) GetRecipeRun ¶
func (*UnimplementedRecipeRunServiceServer) GetRecipeRun(context.Context, *GetRecipeRunRequest) (*GetRecipeRunResponse, error)
func (*UnimplementedRecipeRunServiceServer) ListRecipeRuns ¶
func (*UnimplementedRecipeRunServiceServer) ListRecipeRuns(context.Context, *ListRecipeRunsRequest) (*ListRecipeRunsResponse, error)
func (*UnimplementedRecipeRunServiceServer) UpdateRecipeRun ¶
func (*UnimplementedRecipeRunServiceServer) UpdateRecipeRun(context.Context, *UpdateRecipeRunRequest) (*UpdateRecipeRunResponse, error)
type UpdateRecipeRunRequest ¶
type UpdateRecipeRunRequest struct { Item *v1alpha1.RecipeRun `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"` FieldMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` // contains filtered or unexported fields }
func (*UpdateRecipeRunRequest) Descriptor
deprecated
func (*UpdateRecipeRunRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateRecipeRunRequest.ProtoReflect.Descriptor instead.
func (*UpdateRecipeRunRequest) GetFieldMask ¶ added in v0.4.422
func (x *UpdateRecipeRunRequest) GetFieldMask() *field_mask.FieldMask
func (*UpdateRecipeRunRequest) GetItem ¶
func (x *UpdateRecipeRunRequest) GetItem() *v1alpha1.RecipeRun
func (*UpdateRecipeRunRequest) ProtoMessage ¶
func (*UpdateRecipeRunRequest) ProtoMessage()
func (*UpdateRecipeRunRequest) ProtoReflect ¶
func (x *UpdateRecipeRunRequest) ProtoReflect() protoreflect.Message
func (*UpdateRecipeRunRequest) Reset ¶
func (x *UpdateRecipeRunRequest) Reset()
func (*UpdateRecipeRunRequest) String ¶
func (x *UpdateRecipeRunRequest) String() string
type UpdateRecipeRunResponse ¶
type UpdateRecipeRunResponse struct {
// contains filtered or unexported fields
}
func (*UpdateRecipeRunResponse) Descriptor
deprecated
func (*UpdateRecipeRunResponse) Descriptor() ([]byte, []int)
Deprecated: Use UpdateRecipeRunResponse.ProtoReflect.Descriptor instead.
func (*UpdateRecipeRunResponse) ProtoMessage ¶
func (*UpdateRecipeRunResponse) ProtoMessage()
func (*UpdateRecipeRunResponse) ProtoReflect ¶
func (x *UpdateRecipeRunResponse) ProtoReflect() protoreflect.Message
func (*UpdateRecipeRunResponse) Reset ¶
func (x *UpdateRecipeRunResponse) Reset()
func (*UpdateRecipeRunResponse) String ¶
func (x *UpdateRecipeRunResponse) String() string