Documentation
¶
Index ¶
- Variables
- func RegisterFeatureHistogramServiceServer(s *grpc.Server, srv FeatureHistogramServiceServer)
- type CreateFeatureHistogramRequest
- func (*CreateFeatureHistogramRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateFeatureHistogramRequest) GetHistogram() *v1alpha1.FeatureHistogram
- func (x *CreateFeatureHistogramRequest) GetNextPageToken() string
- func (*CreateFeatureHistogramRequest) ProtoMessage()
- func (x *CreateFeatureHistogramRequest) ProtoReflect() protoreflect.Message
- func (x *CreateFeatureHistogramRequest) Reset()
- func (x *CreateFeatureHistogramRequest) String() string
- type CreateFeatureHistogramResponse
- func (*CreateFeatureHistogramResponse) Descriptor() ([]byte, []int)deprecated
- func (*CreateFeatureHistogramResponse) ProtoMessage()
- func (x *CreateFeatureHistogramResponse) ProtoReflect() protoreflect.Message
- func (x *CreateFeatureHistogramResponse) Reset()
- func (x *CreateFeatureHistogramResponse) String() string
- type DeleteFeatureHistogramRequest
- func (*DeleteFeatureHistogramRequest) Descriptor() ([]byte, []int)deprecated
- func (x *DeleteFeatureHistogramRequest) GetName() string
- func (x *DeleteFeatureHistogramRequest) GetNamespace() string
- func (*DeleteFeatureHistogramRequest) ProtoMessage()
- func (x *DeleteFeatureHistogramRequest) ProtoReflect() protoreflect.Message
- func (x *DeleteFeatureHistogramRequest) Reset()
- func (x *DeleteFeatureHistogramRequest) String() string
- type DeleteFeatureHistogramResponse
- func (*DeleteFeatureHistogramResponse) Descriptor() ([]byte, []int)deprecated
- func (*DeleteFeatureHistogramResponse) ProtoMessage()
- func (x *DeleteFeatureHistogramResponse) ProtoReflect() protoreflect.Message
- func (x *DeleteFeatureHistogramResponse) Reset()
- func (x *DeleteFeatureHistogramResponse) String() string
- type FeatureHistogramServiceClient
- type FeatureHistogramServiceServer
- type GetFeatureHistogramRequest
- func (*GetFeatureHistogramRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetFeatureHistogramRequest) GetName() string
- func (x *GetFeatureHistogramRequest) GetNamespace() string
- func (*GetFeatureHistogramRequest) ProtoMessage()
- func (x *GetFeatureHistogramRequest) ProtoReflect() protoreflect.Message
- func (x *GetFeatureHistogramRequest) Reset()
- func (x *GetFeatureHistogramRequest) String() string
- type GetFeatureHistogramResponse
- func (*GetFeatureHistogramResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GetFeatureHistogramResponse) GetHistogram() *v1alpha1.FeatureHistogram
- func (x *GetFeatureHistogramResponse) GetYaml() string
- func (*GetFeatureHistogramResponse) ProtoMessage()
- func (x *GetFeatureHistogramResponse) ProtoReflect() protoreflect.Message
- func (x *GetFeatureHistogramResponse) Reset()
- func (x *GetFeatureHistogramResponse) String() string
- type ListFeatureHistogramsRequest
- func (*ListFeatureHistogramsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ListFeatureHistogramsRequest) GetLabels() map[string]string
- func (x *ListFeatureHistogramsRequest) GetNamespace() string
- func (x *ListFeatureHistogramsRequest) GetOrderBy() string
- func (x *ListFeatureHistogramsRequest) GetPageSize() int32
- func (x *ListFeatureHistogramsRequest) GetPageToken() string
- func (*ListFeatureHistogramsRequest) ProtoMessage()
- func (x *ListFeatureHistogramsRequest) ProtoReflect() protoreflect.Message
- func (x *ListFeatureHistogramsRequest) Reset()
- func (x *ListFeatureHistogramsRequest) String() string
- type ListFeatureHistogramsResponse
- func (*ListFeatureHistogramsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ListFeatureHistogramsResponse) GetHistograms() *v1alpha1.FeatureHistogramList
- func (x *ListFeatureHistogramsResponse) GetNextPageToken() string
- func (*ListFeatureHistogramsResponse) ProtoMessage()
- func (x *ListFeatureHistogramsResponse) ProtoReflect() protoreflect.Message
- func (x *ListFeatureHistogramsResponse) Reset()
- func (x *ListFeatureHistogramsResponse) String() string
- type UnimplementedFeatureHistogramServiceServer
- func (*UnimplementedFeatureHistogramServiceServer) CreateFeatureHistogram(context.Context, *CreateFeatureHistogramRequest) (*CreateFeatureHistogramResponse, error)
- func (*UnimplementedFeatureHistogramServiceServer) DeleteFeatureHistogram(context.Context, *DeleteFeatureHistogramRequest) (*DeleteFeatureHistogramResponse, error)
- func (*UnimplementedFeatureHistogramServiceServer) GetFeatureHistogram(context.Context, *GetFeatureHistogramRequest) (*GetFeatureHistogramResponse, error)
- func (*UnimplementedFeatureHistogramServiceServer) ListFeatureHistograms(context.Context, *ListFeatureHistogramsRequest) (*ListFeatureHistogramsResponse, error)
- func (*UnimplementedFeatureHistogramServiceServer) UpdateFeatureHistogram(context.Context, *UpdateFeatureHistogramRequest) (*UpdateFeatureHistogramResponse, error)
- type UpdateFeatureHistogramRequest
- func (*UpdateFeatureHistogramRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UpdateFeatureHistogramRequest) GetFieldMask() *field_mask.FieldMask
- func (x *UpdateFeatureHistogramRequest) GetHistogram() *v1alpha1.FeatureHistogram
- func (*UpdateFeatureHistogramRequest) ProtoMessage()
- func (x *UpdateFeatureHistogramRequest) ProtoReflect() protoreflect.Message
- func (x *UpdateFeatureHistogramRequest) Reset()
- func (x *UpdateFeatureHistogramRequest) String() string
- type UpdateFeatureHistogramResponse
- func (*UpdateFeatureHistogramResponse) Descriptor() ([]byte, []int)deprecated
- func (*UpdateFeatureHistogramResponse) ProtoMessage()
- func (x *UpdateFeatureHistogramResponse) ProtoReflect() protoreflect.Message
- func (x *UpdateFeatureHistogramResponse) Reset()
- func (x *UpdateFeatureHistogramResponse) String() string
Constants ¶
This section is empty.
Variables ¶
var File_github_com_metaprov_modelaapi_services_featurehistogram_v1_featurehistogram_proto protoreflect.FileDescriptor
Functions ¶
func RegisterFeatureHistogramServiceServer ¶
func RegisterFeatureHistogramServiceServer(s *grpc.Server, srv FeatureHistogramServiceServer)
Types ¶
type CreateFeatureHistogramRequest ¶
type CreateFeatureHistogramRequest struct { Histogram *v1alpha1.FeatureHistogram `protobuf:"bytes,1,opt,name=histogram,proto3" json:"histogram,omitempty"` NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*CreateFeatureHistogramRequest) Descriptor
deprecated
func (*CreateFeatureHistogramRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateFeatureHistogramRequest.ProtoReflect.Descriptor instead.
func (*CreateFeatureHistogramRequest) GetHistogram ¶ added in v0.4.472
func (x *CreateFeatureHistogramRequest) GetHistogram() *v1alpha1.FeatureHistogram
func (*CreateFeatureHistogramRequest) GetNextPageToken ¶ added in v0.4.472
func (x *CreateFeatureHistogramRequest) GetNextPageToken() string
func (*CreateFeatureHistogramRequest) ProtoMessage ¶
func (*CreateFeatureHistogramRequest) ProtoMessage()
func (*CreateFeatureHistogramRequest) ProtoReflect ¶
func (x *CreateFeatureHistogramRequest) ProtoReflect() protoreflect.Message
func (*CreateFeatureHistogramRequest) Reset ¶
func (x *CreateFeatureHistogramRequest) Reset()
func (*CreateFeatureHistogramRequest) String ¶
func (x *CreateFeatureHistogramRequest) String() string
type CreateFeatureHistogramResponse ¶
type CreateFeatureHistogramResponse struct {
// contains filtered or unexported fields
}
func (*CreateFeatureHistogramResponse) Descriptor
deprecated
func (*CreateFeatureHistogramResponse) Descriptor() ([]byte, []int)
Deprecated: Use CreateFeatureHistogramResponse.ProtoReflect.Descriptor instead.
func (*CreateFeatureHistogramResponse) ProtoMessage ¶
func (*CreateFeatureHistogramResponse) ProtoMessage()
func (*CreateFeatureHistogramResponse) ProtoReflect ¶
func (x *CreateFeatureHistogramResponse) ProtoReflect() protoreflect.Message
func (*CreateFeatureHistogramResponse) Reset ¶
func (x *CreateFeatureHistogramResponse) Reset()
func (*CreateFeatureHistogramResponse) String ¶
func (x *CreateFeatureHistogramResponse) String() string
type DeleteFeatureHistogramRequest ¶
type DeleteFeatureHistogramRequest 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 (*DeleteFeatureHistogramRequest) Descriptor
deprecated
func (*DeleteFeatureHistogramRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteFeatureHistogramRequest.ProtoReflect.Descriptor instead.
func (*DeleteFeatureHistogramRequest) GetName ¶
func (x *DeleteFeatureHistogramRequest) GetName() string
func (*DeleteFeatureHistogramRequest) GetNamespace ¶
func (x *DeleteFeatureHistogramRequest) GetNamespace() string
func (*DeleteFeatureHistogramRequest) ProtoMessage ¶
func (*DeleteFeatureHistogramRequest) ProtoMessage()
func (*DeleteFeatureHistogramRequest) ProtoReflect ¶
func (x *DeleteFeatureHistogramRequest) ProtoReflect() protoreflect.Message
func (*DeleteFeatureHistogramRequest) Reset ¶
func (x *DeleteFeatureHistogramRequest) Reset()
func (*DeleteFeatureHistogramRequest) String ¶
func (x *DeleteFeatureHistogramRequest) String() string
type DeleteFeatureHistogramResponse ¶
type DeleteFeatureHistogramResponse struct {
// contains filtered or unexported fields
}
func (*DeleteFeatureHistogramResponse) Descriptor
deprecated
func (*DeleteFeatureHistogramResponse) Descriptor() ([]byte, []int)
Deprecated: Use DeleteFeatureHistogramResponse.ProtoReflect.Descriptor instead.
func (*DeleteFeatureHistogramResponse) ProtoMessage ¶
func (*DeleteFeatureHistogramResponse) ProtoMessage()
func (*DeleteFeatureHistogramResponse) ProtoReflect ¶
func (x *DeleteFeatureHistogramResponse) ProtoReflect() protoreflect.Message
func (*DeleteFeatureHistogramResponse) Reset ¶
func (x *DeleteFeatureHistogramResponse) Reset()
func (*DeleteFeatureHistogramResponse) String ¶
func (x *DeleteFeatureHistogramResponse) String() string
type FeatureHistogramServiceClient ¶
type FeatureHistogramServiceClient interface { ListFeatureHistograms(ctx context.Context, in *ListFeatureHistogramsRequest, opts ...grpc.CallOption) (*ListFeatureHistogramsResponse, error) CreateFeatureHistogram(ctx context.Context, in *CreateFeatureHistogramRequest, opts ...grpc.CallOption) (*CreateFeatureHistogramResponse, error) GetFeatureHistogram(ctx context.Context, in *GetFeatureHistogramRequest, opts ...grpc.CallOption) (*GetFeatureHistogramResponse, error) UpdateFeatureHistogram(ctx context.Context, in *UpdateFeatureHistogramRequest, opts ...grpc.CallOption) (*UpdateFeatureHistogramResponse, error) DeleteFeatureHistogram(ctx context.Context, in *DeleteFeatureHistogramRequest, opts ...grpc.CallOption) (*DeleteFeatureHistogramResponse, error) }
FeatureHistogramServiceClient is the client API for FeatureHistogramService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewFeatureHistogramServiceClient ¶
func NewFeatureHistogramServiceClient(cc grpc.ClientConnInterface) FeatureHistogramServiceClient
type FeatureHistogramServiceServer ¶
type FeatureHistogramServiceServer interface { ListFeatureHistograms(context.Context, *ListFeatureHistogramsRequest) (*ListFeatureHistogramsResponse, error) CreateFeatureHistogram(context.Context, *CreateFeatureHistogramRequest) (*CreateFeatureHistogramResponse, error) GetFeatureHistogram(context.Context, *GetFeatureHistogramRequest) (*GetFeatureHistogramResponse, error) UpdateFeatureHistogram(context.Context, *UpdateFeatureHistogramRequest) (*UpdateFeatureHistogramResponse, error) DeleteFeatureHistogram(context.Context, *DeleteFeatureHistogramRequest) (*DeleteFeatureHistogramResponse, error) }
FeatureHistogramServiceServer is the server API for FeatureHistogramService service.
type GetFeatureHistogramRequest ¶
type GetFeatureHistogramRequest 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 (*GetFeatureHistogramRequest) Descriptor
deprecated
func (*GetFeatureHistogramRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetFeatureHistogramRequest.ProtoReflect.Descriptor instead.
func (*GetFeatureHistogramRequest) GetName ¶
func (x *GetFeatureHistogramRequest) GetName() string
func (*GetFeatureHistogramRequest) GetNamespace ¶
func (x *GetFeatureHistogramRequest) GetNamespace() string
func (*GetFeatureHistogramRequest) ProtoMessage ¶
func (*GetFeatureHistogramRequest) ProtoMessage()
func (*GetFeatureHistogramRequest) ProtoReflect ¶
func (x *GetFeatureHistogramRequest) ProtoReflect() protoreflect.Message
func (*GetFeatureHistogramRequest) Reset ¶
func (x *GetFeatureHistogramRequest) Reset()
func (*GetFeatureHistogramRequest) String ¶
func (x *GetFeatureHistogramRequest) String() string
type GetFeatureHistogramResponse ¶
type GetFeatureHistogramResponse struct { Histogram *v1alpha1.FeatureHistogram `protobuf:"bytes,1,opt,name=histogram,proto3" json:"histogram,omitempty"` Yaml string `protobuf:"bytes,2,opt,name=yaml,proto3" json:"yaml,omitempty"` // contains filtered or unexported fields }
func (*GetFeatureHistogramResponse) Descriptor
deprecated
func (*GetFeatureHistogramResponse) Descriptor() ([]byte, []int)
Deprecated: Use GetFeatureHistogramResponse.ProtoReflect.Descriptor instead.
func (*GetFeatureHistogramResponse) GetHistogram ¶ added in v0.4.475
func (x *GetFeatureHistogramResponse) GetHistogram() *v1alpha1.FeatureHistogram
func (*GetFeatureHistogramResponse) GetYaml ¶
func (x *GetFeatureHistogramResponse) GetYaml() string
func (*GetFeatureHistogramResponse) ProtoMessage ¶
func (*GetFeatureHistogramResponse) ProtoMessage()
func (*GetFeatureHistogramResponse) ProtoReflect ¶
func (x *GetFeatureHistogramResponse) ProtoReflect() protoreflect.Message
func (*GetFeatureHistogramResponse) Reset ¶
func (x *GetFeatureHistogramResponse) Reset()
func (*GetFeatureHistogramResponse) String ¶
func (x *GetFeatureHistogramResponse) String() string
type ListFeatureHistogramsRequest ¶
type ListFeatureHistogramsRequest 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 (*ListFeatureHistogramsRequest) Descriptor
deprecated
func (*ListFeatureHistogramsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListFeatureHistogramsRequest.ProtoReflect.Descriptor instead.
func (*ListFeatureHistogramsRequest) GetLabels ¶
func (x *ListFeatureHistogramsRequest) GetLabels() map[string]string
func (*ListFeatureHistogramsRequest) GetNamespace ¶
func (x *ListFeatureHistogramsRequest) GetNamespace() string
func (*ListFeatureHistogramsRequest) GetOrderBy ¶ added in v0.4.414
func (x *ListFeatureHistogramsRequest) GetOrderBy() string
func (*ListFeatureHistogramsRequest) GetPageSize ¶ added in v0.4.414
func (x *ListFeatureHistogramsRequest) GetPageSize() int32
func (*ListFeatureHistogramsRequest) GetPageToken ¶ added in v0.4.414
func (x *ListFeatureHistogramsRequest) GetPageToken() string
func (*ListFeatureHistogramsRequest) ProtoMessage ¶
func (*ListFeatureHistogramsRequest) ProtoMessage()
func (*ListFeatureHistogramsRequest) ProtoReflect ¶
func (x *ListFeatureHistogramsRequest) ProtoReflect() protoreflect.Message
func (*ListFeatureHistogramsRequest) Reset ¶
func (x *ListFeatureHistogramsRequest) Reset()
func (*ListFeatureHistogramsRequest) String ¶
func (x *ListFeatureHistogramsRequest) String() string
type ListFeatureHistogramsResponse ¶
type ListFeatureHistogramsResponse struct { Histograms *v1alpha1.FeatureHistogramList `protobuf:"bytes,1,opt,name=histograms,proto3" json:"histograms,omitempty"` NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListFeatureHistogramsResponse) Descriptor
deprecated
func (*ListFeatureHistogramsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListFeatureHistogramsResponse.ProtoReflect.Descriptor instead.
func (*ListFeatureHistogramsResponse) GetHistograms ¶ added in v0.4.472
func (x *ListFeatureHistogramsResponse) GetHistograms() *v1alpha1.FeatureHistogramList
func (*ListFeatureHistogramsResponse) GetNextPageToken ¶ added in v0.4.472
func (x *ListFeatureHistogramsResponse) GetNextPageToken() string
func (*ListFeatureHistogramsResponse) ProtoMessage ¶
func (*ListFeatureHistogramsResponse) ProtoMessage()
func (*ListFeatureHistogramsResponse) ProtoReflect ¶
func (x *ListFeatureHistogramsResponse) ProtoReflect() protoreflect.Message
func (*ListFeatureHistogramsResponse) Reset ¶
func (x *ListFeatureHistogramsResponse) Reset()
func (*ListFeatureHistogramsResponse) String ¶
func (x *ListFeatureHistogramsResponse) String() string
type UnimplementedFeatureHistogramServiceServer ¶
type UnimplementedFeatureHistogramServiceServer struct { }
UnimplementedFeatureHistogramServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedFeatureHistogramServiceServer) CreateFeatureHistogram ¶
func (*UnimplementedFeatureHistogramServiceServer) CreateFeatureHistogram(context.Context, *CreateFeatureHistogramRequest) (*CreateFeatureHistogramResponse, error)
func (*UnimplementedFeatureHistogramServiceServer) DeleteFeatureHistogram ¶
func (*UnimplementedFeatureHistogramServiceServer) DeleteFeatureHistogram(context.Context, *DeleteFeatureHistogramRequest) (*DeleteFeatureHistogramResponse, error)
func (*UnimplementedFeatureHistogramServiceServer) GetFeatureHistogram ¶
func (*UnimplementedFeatureHistogramServiceServer) GetFeatureHistogram(context.Context, *GetFeatureHistogramRequest) (*GetFeatureHistogramResponse, error)
func (*UnimplementedFeatureHistogramServiceServer) ListFeatureHistograms ¶
func (*UnimplementedFeatureHistogramServiceServer) ListFeatureHistograms(context.Context, *ListFeatureHistogramsRequest) (*ListFeatureHistogramsResponse, error)
func (*UnimplementedFeatureHistogramServiceServer) UpdateFeatureHistogram ¶
func (*UnimplementedFeatureHistogramServiceServer) UpdateFeatureHistogram(context.Context, *UpdateFeatureHistogramRequest) (*UpdateFeatureHistogramResponse, error)
type UpdateFeatureHistogramRequest ¶
type UpdateFeatureHistogramRequest struct { Histogram *v1alpha1.FeatureHistogram `protobuf:"bytes,1,opt,name=histogram,proto3" json:"histogram,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 (*UpdateFeatureHistogramRequest) Descriptor
deprecated
func (*UpdateFeatureHistogramRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateFeatureHistogramRequest.ProtoReflect.Descriptor instead.
func (*UpdateFeatureHistogramRequest) GetFieldMask ¶ added in v0.4.422
func (x *UpdateFeatureHistogramRequest) GetFieldMask() *field_mask.FieldMask
func (*UpdateFeatureHistogramRequest) GetHistogram ¶ added in v0.4.475
func (x *UpdateFeatureHistogramRequest) GetHistogram() *v1alpha1.FeatureHistogram
func (*UpdateFeatureHistogramRequest) ProtoMessage ¶
func (*UpdateFeatureHistogramRequest) ProtoMessage()
func (*UpdateFeatureHistogramRequest) ProtoReflect ¶
func (x *UpdateFeatureHistogramRequest) ProtoReflect() protoreflect.Message
func (*UpdateFeatureHistogramRequest) Reset ¶
func (x *UpdateFeatureHistogramRequest) Reset()
func (*UpdateFeatureHistogramRequest) String ¶
func (x *UpdateFeatureHistogramRequest) String() string
type UpdateFeatureHistogramResponse ¶
type UpdateFeatureHistogramResponse struct {
// contains filtered or unexported fields
}
func (*UpdateFeatureHistogramResponse) Descriptor
deprecated
func (*UpdateFeatureHistogramResponse) Descriptor() ([]byte, []int)
Deprecated: Use UpdateFeatureHistogramResponse.ProtoReflect.Descriptor instead.
func (*UpdateFeatureHistogramResponse) ProtoMessage ¶
func (*UpdateFeatureHistogramResponse) ProtoMessage()
func (*UpdateFeatureHistogramResponse) ProtoReflect ¶
func (x *UpdateFeatureHistogramResponse) ProtoReflect() protoreflect.Message
func (*UpdateFeatureHistogramResponse) Reset ¶
func (x *UpdateFeatureHistogramResponse) Reset()
func (*UpdateFeatureHistogramResponse) String ¶
func (x *UpdateFeatureHistogramResponse) String() string