v1

package
v0.5.277 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var FeatureViewService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "github.com.metaprov.modelaapi.services.featureview.v1.FeatureViewService",
	HandlerType: (*FeatureViewServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ListFeatureViews",
			Handler:    _FeatureViewService_ListFeatureViews_Handler,
		},
		{
			MethodName: "CreateFeatureView",
			Handler:    _FeatureViewService_CreateFeatureView_Handler,
		},
		{
			MethodName: "GetFeatureView",
			Handler:    _FeatureViewService_GetFeatureView_Handler,
		},
		{
			MethodName: "UpdateFeatureView",
			Handler:    _FeatureViewService_UpdateFeatureView_Handler,
		},
		{
			MethodName: "DeleteFeatureView",
			Handler:    _FeatureViewService_DeleteFeatureView_Handler,
		},
		{
			MethodName: "PauseFeatureView",
			Handler:    _FeatureViewService_PauseFeatureView_Handler,
		},
		{
			MethodName: "ResumeFeatureView",
			Handler:    _FeatureViewService_ResumeFeatureView_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "github.com/metaprov/modelaapi/services/featureview/v1/featureview.proto",
}

FeatureViewService_ServiceDesc is the grpc.ServiceDesc for FeatureViewService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_github_com_metaprov_modelaapi_services_featureview_v1_featureview_proto protoreflect.FileDescriptor

Functions

func RegisterFeatureViewServiceServer

func RegisterFeatureViewServiceServer(s grpc.ServiceRegistrar, srv FeatureViewServiceServer)

Types

type CreateFeatureViewRequest

type CreateFeatureViewRequest struct {
	Featureview *v1alpha1.FeatureView `protobuf:"bytes,1,opt,name=featureview,proto3" json:"featureview,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateFeatureViewRequest) Descriptor deprecated

func (*CreateFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*CreateFeatureViewRequest) GetFeatureview

func (x *CreateFeatureViewRequest) GetFeatureview() *v1alpha1.FeatureView

func (*CreateFeatureViewRequest) ProtoMessage

func (*CreateFeatureViewRequest) ProtoMessage()

func (*CreateFeatureViewRequest) ProtoReflect

func (x *CreateFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*CreateFeatureViewRequest) Reset

func (x *CreateFeatureViewRequest) Reset()

func (*CreateFeatureViewRequest) String

func (x *CreateFeatureViewRequest) String() string

type CreateFeatureViewResponse

type CreateFeatureViewResponse struct {
	// contains filtered or unexported fields
}

func (*CreateFeatureViewResponse) Descriptor deprecated

func (*CreateFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*CreateFeatureViewResponse) ProtoMessage

func (*CreateFeatureViewResponse) ProtoMessage()

func (*CreateFeatureViewResponse) ProtoReflect

func (*CreateFeatureViewResponse) Reset

func (x *CreateFeatureViewResponse) Reset()

func (*CreateFeatureViewResponse) String

func (x *CreateFeatureViewResponse) String() string

type DeleteFeatureViewRequest

type DeleteFeatureViewRequest 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 (*DeleteFeatureViewRequest) Descriptor deprecated

func (*DeleteFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*DeleteFeatureViewRequest) GetName

func (x *DeleteFeatureViewRequest) GetName() string

func (*DeleteFeatureViewRequest) GetNamespace

func (x *DeleteFeatureViewRequest) GetNamespace() string

func (*DeleteFeatureViewRequest) ProtoMessage

func (*DeleteFeatureViewRequest) ProtoMessage()

func (*DeleteFeatureViewRequest) ProtoReflect

func (x *DeleteFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*DeleteFeatureViewRequest) Reset

func (x *DeleteFeatureViewRequest) Reset()

func (*DeleteFeatureViewRequest) String

func (x *DeleteFeatureViewRequest) String() string

type DeleteFeatureViewResponse

type DeleteFeatureViewResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteFeatureViewResponse) Descriptor deprecated

func (*DeleteFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*DeleteFeatureViewResponse) ProtoMessage

func (*DeleteFeatureViewResponse) ProtoMessage()

func (*DeleteFeatureViewResponse) ProtoReflect

func (*DeleteFeatureViewResponse) Reset

func (x *DeleteFeatureViewResponse) Reset()

func (*DeleteFeatureViewResponse) String

func (x *DeleteFeatureViewResponse) String() string

type FeatureViewServiceClient

type FeatureViewServiceClient interface {
	ListFeatureViews(ctx context.Context, in *ListFeatureViewRequest, opts ...grpc.CallOption) (*ListFeatureViewResponse, error)
	CreateFeatureView(ctx context.Context, in *CreateFeatureViewRequest, opts ...grpc.CallOption) (*CreateFeatureViewResponse, error)
	GetFeatureView(ctx context.Context, in *GetFeatureViewRequest, opts ...grpc.CallOption) (*GetFeatureViewResponse, error)
	UpdateFeatureView(ctx context.Context, in *UpdateFeatureViewRequest, opts ...grpc.CallOption) (*UpdateFeatureViewResponse, error)
	DeleteFeatureView(ctx context.Context, in *DeleteFeatureViewRequest, opts ...grpc.CallOption) (*DeleteFeatureViewResponse, error)
	PauseFeatureView(ctx context.Context, in *PauseFeatureViewRequest, opts ...grpc.CallOption) (*PauseFeatureViewResponse, error)
	ResumeFeatureView(ctx context.Context, in *ResumeFeatureViewRequest, opts ...grpc.CallOption) (*ResumeFeatureViewResponse, error)
}

FeatureViewServiceClient is the client API for FeatureViewService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type FeatureViewServiceServer

FeatureViewServiceServer is the server API for FeatureViewService service. All implementations must embed UnimplementedFeatureViewServiceServer for forward compatibility

type GetFeatureViewRequest

type GetFeatureViewRequest 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 (*GetFeatureViewRequest) Descriptor deprecated

func (*GetFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*GetFeatureViewRequest) GetName

func (x *GetFeatureViewRequest) GetName() string

func (*GetFeatureViewRequest) GetNamespace

func (x *GetFeatureViewRequest) GetNamespace() string

func (*GetFeatureViewRequest) ProtoMessage

func (*GetFeatureViewRequest) ProtoMessage()

func (*GetFeatureViewRequest) ProtoReflect

func (x *GetFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*GetFeatureViewRequest) Reset

func (x *GetFeatureViewRequest) Reset()

func (*GetFeatureViewRequest) String

func (x *GetFeatureViewRequest) String() string

type GetFeatureViewResponse

type GetFeatureViewResponse struct {
	Featureview *v1alpha1.FeatureView `protobuf:"bytes,1,opt,name=featureview,proto3" json:"featureview,omitempty"`
	Yaml        string                `protobuf:"bytes,2,opt,name=yaml,proto3" json:"yaml,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFeatureViewResponse) Descriptor deprecated

func (*GetFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*GetFeatureViewResponse) GetFeatureview

func (x *GetFeatureViewResponse) GetFeatureview() *v1alpha1.FeatureView

func (*GetFeatureViewResponse) GetYaml

func (x *GetFeatureViewResponse) GetYaml() string

func (*GetFeatureViewResponse) ProtoMessage

func (*GetFeatureViewResponse) ProtoMessage()

func (*GetFeatureViewResponse) ProtoReflect

func (x *GetFeatureViewResponse) ProtoReflect() protoreflect.Message

func (*GetFeatureViewResponse) Reset

func (x *GetFeatureViewResponse) Reset()

func (*GetFeatureViewResponse) String

func (x *GetFeatureViewResponse) String() string

type ListFeatureViewRequest

type ListFeatureViewRequest 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 (*ListFeatureViewRequest) Descriptor deprecated

func (*ListFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*ListFeatureViewRequest) GetLabels

func (x *ListFeatureViewRequest) GetLabels() map[string]string

func (*ListFeatureViewRequest) GetNamespace

func (x *ListFeatureViewRequest) GetNamespace() string

func (*ListFeatureViewRequest) GetOrderBy

func (x *ListFeatureViewRequest) GetOrderBy() string

func (*ListFeatureViewRequest) GetPageSize

func (x *ListFeatureViewRequest) GetPageSize() int32

func (*ListFeatureViewRequest) GetPageToken

func (x *ListFeatureViewRequest) GetPageToken() string

func (*ListFeatureViewRequest) ProtoMessage

func (*ListFeatureViewRequest) ProtoMessage()

func (*ListFeatureViewRequest) ProtoReflect

func (x *ListFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*ListFeatureViewRequest) Reset

func (x *ListFeatureViewRequest) Reset()

func (*ListFeatureViewRequest) String

func (x *ListFeatureViewRequest) String() string

type ListFeatureViewResponse

type ListFeatureViewResponse struct {
	Featureviews  *v1alpha1.FeatureViewList `protobuf:"bytes,1,opt,name=featureviews,proto3" json:"featureviews,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 (*ListFeatureViewResponse) Descriptor deprecated

func (*ListFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*ListFeatureViewResponse) GetFeatureviews

func (x *ListFeatureViewResponse) GetFeatureviews() *v1alpha1.FeatureViewList

func (*ListFeatureViewResponse) GetNextPageToken

func (x *ListFeatureViewResponse) GetNextPageToken() string

func (*ListFeatureViewResponse) ProtoMessage

func (*ListFeatureViewResponse) ProtoMessage()

func (*ListFeatureViewResponse) ProtoReflect

func (x *ListFeatureViewResponse) ProtoReflect() protoreflect.Message

func (*ListFeatureViewResponse) Reset

func (x *ListFeatureViewResponse) Reset()

func (*ListFeatureViewResponse) String

func (x *ListFeatureViewResponse) String() string

type PauseFeatureViewRequest

type PauseFeatureViewRequest 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 (*PauseFeatureViewRequest) Descriptor deprecated

func (*PauseFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use PauseFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*PauseFeatureViewRequest) GetName

func (x *PauseFeatureViewRequest) GetName() string

func (*PauseFeatureViewRequest) GetNamespace

func (x *PauseFeatureViewRequest) GetNamespace() string

func (*PauseFeatureViewRequest) ProtoMessage

func (*PauseFeatureViewRequest) ProtoMessage()

func (*PauseFeatureViewRequest) ProtoReflect

func (x *PauseFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*PauseFeatureViewRequest) Reset

func (x *PauseFeatureViewRequest) Reset()

func (*PauseFeatureViewRequest) String

func (x *PauseFeatureViewRequest) String() string

type PauseFeatureViewResponse

type PauseFeatureViewResponse struct {
	// contains filtered or unexported fields
}

func (*PauseFeatureViewResponse) Descriptor deprecated

func (*PauseFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use PauseFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*PauseFeatureViewResponse) ProtoMessage

func (*PauseFeatureViewResponse) ProtoMessage()

func (*PauseFeatureViewResponse) ProtoReflect

func (x *PauseFeatureViewResponse) ProtoReflect() protoreflect.Message

func (*PauseFeatureViewResponse) Reset

func (x *PauseFeatureViewResponse) Reset()

func (*PauseFeatureViewResponse) String

func (x *PauseFeatureViewResponse) String() string

type ResumeFeatureViewRequest

type ResumeFeatureViewRequest 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 (*ResumeFeatureViewRequest) Descriptor deprecated

func (*ResumeFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use ResumeFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*ResumeFeatureViewRequest) GetName

func (x *ResumeFeatureViewRequest) GetName() string

func (*ResumeFeatureViewRequest) GetNamespace

func (x *ResumeFeatureViewRequest) GetNamespace() string

func (*ResumeFeatureViewRequest) ProtoMessage

func (*ResumeFeatureViewRequest) ProtoMessage()

func (*ResumeFeatureViewRequest) ProtoReflect

func (x *ResumeFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*ResumeFeatureViewRequest) Reset

func (x *ResumeFeatureViewRequest) Reset()

func (*ResumeFeatureViewRequest) String

func (x *ResumeFeatureViewRequest) String() string

type ResumeFeatureViewResponse

type ResumeFeatureViewResponse struct {
	// contains filtered or unexported fields
}

func (*ResumeFeatureViewResponse) Descriptor deprecated

func (*ResumeFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use ResumeFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*ResumeFeatureViewResponse) ProtoMessage

func (*ResumeFeatureViewResponse) ProtoMessage()

func (*ResumeFeatureViewResponse) ProtoReflect

func (*ResumeFeatureViewResponse) Reset

func (x *ResumeFeatureViewResponse) Reset()

func (*ResumeFeatureViewResponse) String

func (x *ResumeFeatureViewResponse) String() string

type UnimplementedFeatureViewServiceServer

type UnimplementedFeatureViewServiceServer struct {
}

UnimplementedFeatureViewServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedFeatureViewServiceServer) CreateFeatureView

func (UnimplementedFeatureViewServiceServer) DeleteFeatureView

func (UnimplementedFeatureViewServiceServer) GetFeatureView

func (UnimplementedFeatureViewServiceServer) ListFeatureViews

func (UnimplementedFeatureViewServiceServer) PauseFeatureView

func (UnimplementedFeatureViewServiceServer) ResumeFeatureView

func (UnimplementedFeatureViewServiceServer) UpdateFeatureView

type UnsafeFeatureViewServiceServer

type UnsafeFeatureViewServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeFeatureViewServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FeatureViewServiceServer will result in compilation errors.

type UpdateFeatureViewRequest

type UpdateFeatureViewRequest struct {
	Featureview *v1alpha1.FeatureView `protobuf:"bytes,1,opt,name=featureview,proto3" json:"featureview,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 (*UpdateFeatureViewRequest) Descriptor deprecated

func (*UpdateFeatureViewRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateFeatureViewRequest.ProtoReflect.Descriptor instead.

func (*UpdateFeatureViewRequest) GetFeatureview

func (x *UpdateFeatureViewRequest) GetFeatureview() *v1alpha1.FeatureView

func (*UpdateFeatureViewRequest) GetFieldMask

func (x *UpdateFeatureViewRequest) GetFieldMask() *field_mask.FieldMask

func (*UpdateFeatureViewRequest) ProtoMessage

func (*UpdateFeatureViewRequest) ProtoMessage()

func (*UpdateFeatureViewRequest) ProtoReflect

func (x *UpdateFeatureViewRequest) ProtoReflect() protoreflect.Message

func (*UpdateFeatureViewRequest) Reset

func (x *UpdateFeatureViewRequest) Reset()

func (*UpdateFeatureViewRequest) String

func (x *UpdateFeatureViewRequest) String() string

type UpdateFeatureViewResponse

type UpdateFeatureViewResponse struct {
	// contains filtered or unexported fields
}

func (*UpdateFeatureViewResponse) Descriptor deprecated

func (*UpdateFeatureViewResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateFeatureViewResponse.ProtoReflect.Descriptor instead.

func (*UpdateFeatureViewResponse) ProtoMessage

func (*UpdateFeatureViewResponse) ProtoMessage()

func (*UpdateFeatureViewResponse) ProtoReflect

func (*UpdateFeatureViewResponse) Reset

func (x *UpdateFeatureViewResponse) Reset()

func (*UpdateFeatureViewResponse) String

func (x *UpdateFeatureViewResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL