Documentation
¶
Index ¶
- Variables
- func RegisterDataProductServiceServer(s *grpc.Server, srv DataProductServiceServer)
- type CreateDataProductRequest
- func (*CreateDataProductRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateDataProductRequest) GetItem() *v1alpha1.DataProduct
- func (*CreateDataProductRequest) ProtoMessage()
- func (x *CreateDataProductRequest) ProtoReflect() protoreflect.Message
- func (x *CreateDataProductRequest) Reset()
- func (x *CreateDataProductRequest) String() string
- type CreateDataProductResponse
- type DataProductServiceClient
- type DataProductServiceServer
- type DeleteDataProductRequest
- func (*DeleteDataProductRequest) Descriptor() ([]byte, []int)deprecated
- func (x *DeleteDataProductRequest) GetName() string
- func (x *DeleteDataProductRequest) GetNamespace() string
- func (*DeleteDataProductRequest) ProtoMessage()
- func (x *DeleteDataProductRequest) ProtoReflect() protoreflect.Message
- func (x *DeleteDataProductRequest) Reset()
- func (x *DeleteDataProductRequest) String() string
- type DeleteDataProductResponse
- type GetDataProductRequest
- func (*GetDataProductRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetDataProductRequest) GetName() string
- func (x *GetDataProductRequest) GetNamespace() string
- func (*GetDataProductRequest) ProtoMessage()
- func (x *GetDataProductRequest) ProtoReflect() protoreflect.Message
- func (x *GetDataProductRequest) Reset()
- func (x *GetDataProductRequest) String() string
- type GetDataProductResponse
- func (*GetDataProductResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GetDataProductResponse) GetItem() *v1alpha1.DataProduct
- func (x *GetDataProductResponse) GetYaml() string
- func (*GetDataProductResponse) ProtoMessage()
- func (x *GetDataProductResponse) ProtoReflect() protoreflect.Message
- func (x *GetDataProductResponse) Reset()
- func (x *GetDataProductResponse) String() string
- type ListDataProductsRequest
- func (*ListDataProductsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ListDataProductsRequest) GetLabels() map[string]string
- func (x *ListDataProductsRequest) GetNamespace() string
- func (*ListDataProductsRequest) ProtoMessage()
- func (x *ListDataProductsRequest) ProtoReflect() protoreflect.Message
- func (x *ListDataProductsRequest) Reset()
- func (x *ListDataProductsRequest) String() string
- type ListDataProductsResponse
- func (*ListDataProductsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ListDataProductsResponse) GetItems() *v1alpha1.DataProductList
- func (*ListDataProductsResponse) ProtoMessage()
- func (x *ListDataProductsResponse) ProtoReflect() protoreflect.Message
- func (x *ListDataProductsResponse) Reset()
- func (x *ListDataProductsResponse) String() string
- type UnimplementedDataProductServiceServer
- func (*UnimplementedDataProductServiceServer) CreateDataProduct(context.Context, *CreateDataProductRequest) (*CreateDataProductResponse, error)
- func (*UnimplementedDataProductServiceServer) DeleteDataProduct(context.Context, *DeleteDataProductRequest) (*DeleteDataProductResponse, error)
- func (*UnimplementedDataProductServiceServer) GetDataProduct(context.Context, *GetDataProductRequest) (*GetDataProductResponse, error)
- func (*UnimplementedDataProductServiceServer) ListDataProducts(context.Context, *ListDataProductsRequest) (*ListDataProductsResponse, error)
- func (*UnimplementedDataProductServiceServer) UpdateDataProduct(context.Context, *UpdateDataProductRequest) (*UpdateDataProductResponse, error)
- type UpdateDataProductRequest
- func (*UpdateDataProductRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UpdateDataProductRequest) GetItem() *v1alpha1.DataProduct
- func (*UpdateDataProductRequest) ProtoMessage()
- func (x *UpdateDataProductRequest) ProtoReflect() protoreflect.Message
- func (x *UpdateDataProductRequest) Reset()
- func (x *UpdateDataProductRequest) String() string
- type UpdateDataProductResponse
Constants ¶
This section is empty.
Variables ¶
var File_github_com_metaprov_modeldapi_services_dataproduct_v1_dataproduct_proto protoreflect.FileDescriptor
Functions ¶
func RegisterDataProductServiceServer ¶
func RegisterDataProductServiceServer(s *grpc.Server, srv DataProductServiceServer)
Types ¶
type CreateDataProductRequest ¶
type CreateDataProductRequest struct {
Item *v1alpha1.DataProduct `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
// contains filtered or unexported fields
}
func (*CreateDataProductRequest) Descriptor
deprecated
func (*CreateDataProductRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateDataProductRequest.ProtoReflect.Descriptor instead.
func (*CreateDataProductRequest) GetItem ¶ added in v0.2.305
func (x *CreateDataProductRequest) GetItem() *v1alpha1.DataProduct
func (*CreateDataProductRequest) ProtoMessage ¶
func (*CreateDataProductRequest) ProtoMessage()
func (*CreateDataProductRequest) ProtoReflect ¶
func (x *CreateDataProductRequest) ProtoReflect() protoreflect.Message
func (*CreateDataProductRequest) Reset ¶
func (x *CreateDataProductRequest) Reset()
func (*CreateDataProductRequest) String ¶
func (x *CreateDataProductRequest) String() string
type CreateDataProductResponse ¶
type CreateDataProductResponse struct {
// contains filtered or unexported fields
}
func (*CreateDataProductResponse) Descriptor
deprecated
func (*CreateDataProductResponse) Descriptor() ([]byte, []int)
Deprecated: Use CreateDataProductResponse.ProtoReflect.Descriptor instead.
func (*CreateDataProductResponse) ProtoMessage ¶
func (*CreateDataProductResponse) ProtoMessage()
func (*CreateDataProductResponse) ProtoReflect ¶
func (x *CreateDataProductResponse) ProtoReflect() protoreflect.Message
func (*CreateDataProductResponse) Reset ¶
func (x *CreateDataProductResponse) Reset()
func (*CreateDataProductResponse) String ¶
func (x *CreateDataProductResponse) String() string
type DataProductServiceClient ¶
type DataProductServiceClient interface {
ListDataProducts(ctx context.Context, in *ListDataProductsRequest, opts ...grpc.CallOption) (*ListDataProductsResponse, error)
CreateDataProduct(ctx context.Context, in *CreateDataProductRequest, opts ...grpc.CallOption) (*CreateDataProductResponse, error)
GetDataProduct(ctx context.Context, in *GetDataProductRequest, opts ...grpc.CallOption) (*GetDataProductResponse, error)
UpdateDataProduct(ctx context.Context, in *UpdateDataProductRequest, opts ...grpc.CallOption) (*UpdateDataProductResponse, error)
DeleteDataProduct(ctx context.Context, in *DeleteDataProductRequest, opts ...grpc.CallOption) (*DeleteDataProductResponse, error)
}
DataProductServiceClient is the client API for DataProductService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewDataProductServiceClient ¶
func NewDataProductServiceClient(cc grpc.ClientConnInterface) DataProductServiceClient
type DataProductServiceServer ¶
type DataProductServiceServer interface {
ListDataProducts(context.Context, *ListDataProductsRequest) (*ListDataProductsResponse, error)
CreateDataProduct(context.Context, *CreateDataProductRequest) (*CreateDataProductResponse, error)
GetDataProduct(context.Context, *GetDataProductRequest) (*GetDataProductResponse, error)
UpdateDataProduct(context.Context, *UpdateDataProductRequest) (*UpdateDataProductResponse, error)
DeleteDataProduct(context.Context, *DeleteDataProductRequest) (*DeleteDataProductResponse, error)
}
DataProductServiceServer is the server API for DataProductService service.
type DeleteDataProductRequest ¶
type DeleteDataProductRequest 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 (*DeleteDataProductRequest) Descriptor
deprecated
func (*DeleteDataProductRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteDataProductRequest.ProtoReflect.Descriptor instead.
func (*DeleteDataProductRequest) GetName ¶
func (x *DeleteDataProductRequest) GetName() string
func (*DeleteDataProductRequest) GetNamespace ¶
func (x *DeleteDataProductRequest) GetNamespace() string
func (*DeleteDataProductRequest) ProtoMessage ¶
func (*DeleteDataProductRequest) ProtoMessage()
func (*DeleteDataProductRequest) ProtoReflect ¶
func (x *DeleteDataProductRequest) ProtoReflect() protoreflect.Message
func (*DeleteDataProductRequest) Reset ¶
func (x *DeleteDataProductRequest) Reset()
func (*DeleteDataProductRequest) String ¶
func (x *DeleteDataProductRequest) String() string
type DeleteDataProductResponse ¶
type DeleteDataProductResponse struct {
// contains filtered or unexported fields
}
func (*DeleteDataProductResponse) Descriptor
deprecated
func (*DeleteDataProductResponse) Descriptor() ([]byte, []int)
Deprecated: Use DeleteDataProductResponse.ProtoReflect.Descriptor instead.
func (*DeleteDataProductResponse) ProtoMessage ¶
func (*DeleteDataProductResponse) ProtoMessage()
func (*DeleteDataProductResponse) ProtoReflect ¶
func (x *DeleteDataProductResponse) ProtoReflect() protoreflect.Message
func (*DeleteDataProductResponse) Reset ¶
func (x *DeleteDataProductResponse) Reset()
func (*DeleteDataProductResponse) String ¶
func (x *DeleteDataProductResponse) String() string
type GetDataProductRequest ¶
type GetDataProductRequest 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 (*GetDataProductRequest) Descriptor
deprecated
func (*GetDataProductRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetDataProductRequest.ProtoReflect.Descriptor instead.
func (*GetDataProductRequest) GetName ¶
func (x *GetDataProductRequest) GetName() string
func (*GetDataProductRequest) GetNamespace ¶
func (x *GetDataProductRequest) GetNamespace() string
func (*GetDataProductRequest) ProtoMessage ¶
func (*GetDataProductRequest) ProtoMessage()
func (*GetDataProductRequest) ProtoReflect ¶
func (x *GetDataProductRequest) ProtoReflect() protoreflect.Message
func (*GetDataProductRequest) Reset ¶
func (x *GetDataProductRequest) Reset()
func (*GetDataProductRequest) String ¶
func (x *GetDataProductRequest) String() string
type GetDataProductResponse ¶
type GetDataProductResponse struct {
Item *v1alpha1.DataProduct `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 (*GetDataProductResponse) Descriptor
deprecated
func (*GetDataProductResponse) Descriptor() ([]byte, []int)
Deprecated: Use GetDataProductResponse.ProtoReflect.Descriptor instead.
func (*GetDataProductResponse) GetItem ¶
func (x *GetDataProductResponse) GetItem() *v1alpha1.DataProduct
func (*GetDataProductResponse) GetYaml ¶
func (x *GetDataProductResponse) GetYaml() string
func (*GetDataProductResponse) ProtoMessage ¶
func (*GetDataProductResponse) ProtoMessage()
func (*GetDataProductResponse) ProtoReflect ¶
func (x *GetDataProductResponse) ProtoReflect() protoreflect.Message
func (*GetDataProductResponse) Reset ¶
func (x *GetDataProductResponse) Reset()
func (*GetDataProductResponse) String ¶
func (x *GetDataProductResponse) String() string
type ListDataProductsRequest ¶
type ListDataProductsRequest struct {
Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
Labels map[string]string `` /* 153-byte string literal not displayed */
// contains filtered or unexported fields
}
func (*ListDataProductsRequest) Descriptor
deprecated
func (*ListDataProductsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListDataProductsRequest.ProtoReflect.Descriptor instead.
func (*ListDataProductsRequest) GetLabels ¶
func (x *ListDataProductsRequest) GetLabels() map[string]string
func (*ListDataProductsRequest) GetNamespace ¶
func (x *ListDataProductsRequest) GetNamespace() string
func (*ListDataProductsRequest) ProtoMessage ¶
func (*ListDataProductsRequest) ProtoMessage()
func (*ListDataProductsRequest) ProtoReflect ¶
func (x *ListDataProductsRequest) ProtoReflect() protoreflect.Message
func (*ListDataProductsRequest) Reset ¶
func (x *ListDataProductsRequest) Reset()
func (*ListDataProductsRequest) String ¶
func (x *ListDataProductsRequest) String() string
type ListDataProductsResponse ¶
type ListDataProductsResponse struct {
Items *v1alpha1.DataProductList `protobuf:"bytes,1,opt,name=items,proto3" json:"items,omitempty"`
// contains filtered or unexported fields
}
func (*ListDataProductsResponse) Descriptor
deprecated
func (*ListDataProductsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListDataProductsResponse.ProtoReflect.Descriptor instead.
func (*ListDataProductsResponse) GetItems ¶
func (x *ListDataProductsResponse) GetItems() *v1alpha1.DataProductList
func (*ListDataProductsResponse) ProtoMessage ¶
func (*ListDataProductsResponse) ProtoMessage()
func (*ListDataProductsResponse) ProtoReflect ¶
func (x *ListDataProductsResponse) ProtoReflect() protoreflect.Message
func (*ListDataProductsResponse) Reset ¶
func (x *ListDataProductsResponse) Reset()
func (*ListDataProductsResponse) String ¶
func (x *ListDataProductsResponse) String() string
type UnimplementedDataProductServiceServer ¶
type UnimplementedDataProductServiceServer struct {
}
UnimplementedDataProductServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedDataProductServiceServer) CreateDataProduct ¶
func (*UnimplementedDataProductServiceServer) CreateDataProduct(context.Context, *CreateDataProductRequest) (*CreateDataProductResponse, error)
func (*UnimplementedDataProductServiceServer) DeleteDataProduct ¶
func (*UnimplementedDataProductServiceServer) DeleteDataProduct(context.Context, *DeleteDataProductRequest) (*DeleteDataProductResponse, error)
func (*UnimplementedDataProductServiceServer) GetDataProduct ¶
func (*UnimplementedDataProductServiceServer) GetDataProduct(context.Context, *GetDataProductRequest) (*GetDataProductResponse, error)
func (*UnimplementedDataProductServiceServer) ListDataProducts ¶
func (*UnimplementedDataProductServiceServer) ListDataProducts(context.Context, *ListDataProductsRequest) (*ListDataProductsResponse, error)
func (*UnimplementedDataProductServiceServer) UpdateDataProduct ¶
func (*UnimplementedDataProductServiceServer) UpdateDataProduct(context.Context, *UpdateDataProductRequest) (*UpdateDataProductResponse, error)
type UpdateDataProductRequest ¶
type UpdateDataProductRequest struct {
Item *v1alpha1.DataProduct `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
// contains filtered or unexported fields
}
func (*UpdateDataProductRequest) Descriptor
deprecated
func (*UpdateDataProductRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateDataProductRequest.ProtoReflect.Descriptor instead.
func (*UpdateDataProductRequest) GetItem ¶ added in v0.2.305
func (x *UpdateDataProductRequest) GetItem() *v1alpha1.DataProduct
func (*UpdateDataProductRequest) ProtoMessage ¶
func (*UpdateDataProductRequest) ProtoMessage()
func (*UpdateDataProductRequest) ProtoReflect ¶
func (x *UpdateDataProductRequest) ProtoReflect() protoreflect.Message
func (*UpdateDataProductRequest) Reset ¶
func (x *UpdateDataProductRequest) Reset()
func (*UpdateDataProductRequest) String ¶
func (x *UpdateDataProductRequest) String() string
type UpdateDataProductResponse ¶
type UpdateDataProductResponse struct {
// contains filtered or unexported fields
}
func (*UpdateDataProductResponse) Descriptor
deprecated
func (*UpdateDataProductResponse) Descriptor() ([]byte, []int)
Deprecated: Use UpdateDataProductResponse.ProtoReflect.Descriptor instead.
func (*UpdateDataProductResponse) ProtoMessage ¶
func (*UpdateDataProductResponse) ProtoMessage()
func (*UpdateDataProductResponse) ProtoReflect ¶
func (x *UpdateDataProductResponse) ProtoReflect() protoreflect.Message
func (*UpdateDataProductResponse) Reset ¶
func (x *UpdateDataProductResponse) Reset()
func (*UpdateDataProductResponse) String ¶
func (x *UpdateDataProductResponse) String() string