pluginstorepb

package
v0.0.0-...-daa3d23 Latest Latest
Warning

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

Go to latest
Published: Jun 15, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	PluginStore_ConfigurePluginStore_FullMethodName = "/pluginstorepb.PluginStore/ConfigurePluginStore"
	PluginStore_GetPluginStoreConfig_FullMethodName = "/pluginstorepb.PluginStore/GetPluginStoreConfig"
	PluginStore_SyncPluginStore_FullMethodName      = "/pluginstorepb.PluginStore/SyncPluginStore"
	PluginStore_GetPlugins_FullMethodName           = "/pluginstorepb.PluginStore/GetPlugins"
	PluginStore_GetPluginValues_FullMethodName      = "/pluginstorepb.PluginStore/GetPluginValues"
	PluginStore_GetPluginData_FullMethodName        = "/pluginstorepb.PluginStore/GetPluginData"
	PluginStore_DeployPlugin_FullMethodName         = "/pluginstorepb.PluginStore/DeployPlugin"
	PluginStore_UnDeployPlugin_FullMethodName       = "/pluginstorepb.PluginStore/UnDeployPlugin"
)

Variables

View Source
var (
	StatusCode_name = map[int32]string{
		0: "OK",
		1: "INTERNRAL_ERROR",
		2: "INVALID_ARGUMENT",
		3: "NOT_FOUND",
	}
	StatusCode_value = map[string]int32{
		"OK":               0,
		"INTERNRAL_ERROR":  1,
		"INVALID_ARGUMENT": 2,
		"NOT_FOUND":        3,
	}
)

Enum value maps for StatusCode.

View Source
var (
	StoreType_name = map[int32]string{
		0: "NONE",
		1: "CENTRAL_STORE",
		2: "LOCAL_STORE",
		3: "DEFAULT_STORE",
	}
	StoreType_value = map[string]int32{
		"NONE":          0,
		"CENTRAL_STORE": 1,
		"LOCAL_STORE":   2,
		"DEFAULT_STORE": 3,
	}
)

Enum value maps for StoreType.

View Source
var File_plugin_store_proto protoreflect.FileDescriptor
View Source
var PluginStore_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pluginstorepb.PluginStore",
	HandlerType: (*PluginStoreServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ConfigurePluginStore",
			Handler:    _PluginStore_ConfigurePluginStore_Handler,
		},
		{
			MethodName: "GetPluginStoreConfig",
			Handler:    _PluginStore_GetPluginStoreConfig_Handler,
		},
		{
			MethodName: "SyncPluginStore",
			Handler:    _PluginStore_SyncPluginStore_Handler,
		},
		{
			MethodName: "GetPlugins",
			Handler:    _PluginStore_GetPlugins_Handler,
		},
		{
			MethodName: "GetPluginValues",
			Handler:    _PluginStore_GetPluginValues_Handler,
		},
		{
			MethodName: "GetPluginData",
			Handler:    _PluginStore_GetPluginData_Handler,
		},
		{
			MethodName: "DeployPlugin",
			Handler:    _PluginStore_DeployPlugin_Handler,
		},
		{
			MethodName: "UnDeployPlugin",
			Handler:    _PluginStore_UnDeployPlugin_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "plugin_store.proto",
}

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

Functions

func RegisterPluginStoreServer

func RegisterPluginStoreServer(s grpc.ServiceRegistrar, srv PluginStoreServer)

Types

type ConfigurePluginStoreRequest

type ConfigurePluginStoreRequest struct {
	Config *PluginStoreConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigurePluginStoreRequest) Descriptor deprecated

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

Deprecated: Use ConfigurePluginStoreRequest.ProtoReflect.Descriptor instead.

func (*ConfigurePluginStoreRequest) GetConfig

func (*ConfigurePluginStoreRequest) ProtoMessage

func (*ConfigurePluginStoreRequest) ProtoMessage()

func (*ConfigurePluginStoreRequest) ProtoReflect

func (*ConfigurePluginStoreRequest) Reset

func (x *ConfigurePluginStoreRequest) Reset()

func (*ConfigurePluginStoreRequest) String

func (x *ConfigurePluginStoreRequest) String() string

type ConfigurePluginStoreResponse

type ConfigurePluginStoreResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigurePluginStoreResponse) Descriptor deprecated

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

Deprecated: Use ConfigurePluginStoreResponse.ProtoReflect.Descriptor instead.

func (*ConfigurePluginStoreResponse) GetStatus

func (*ConfigurePluginStoreResponse) GetStatusMessage

func (x *ConfigurePluginStoreResponse) GetStatusMessage() string

func (*ConfigurePluginStoreResponse) ProtoMessage

func (*ConfigurePluginStoreResponse) ProtoMessage()

func (*ConfigurePluginStoreResponse) ProtoReflect

func (*ConfigurePluginStoreResponse) Reset

func (x *ConfigurePluginStoreResponse) Reset()

func (*ConfigurePluginStoreResponse) String

type DeployPluginRequest

type DeployPluginRequest struct {
	StoreType  StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	Version    string    `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	Values     []byte    `protobuf:"bytes,4,opt,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployPluginRequest) Descriptor deprecated

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

Deprecated: Use DeployPluginRequest.ProtoReflect.Descriptor instead.

func (*DeployPluginRequest) GetPluginName

func (x *DeployPluginRequest) GetPluginName() string

func (*DeployPluginRequest) GetStoreType

func (x *DeployPluginRequest) GetStoreType() StoreType

func (*DeployPluginRequest) GetValues

func (x *DeployPluginRequest) GetValues() []byte

func (*DeployPluginRequest) GetVersion

func (x *DeployPluginRequest) GetVersion() string

func (*DeployPluginRequest) ProtoMessage

func (*DeployPluginRequest) ProtoMessage()

func (*DeployPluginRequest) ProtoReflect

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

func (*DeployPluginRequest) Reset

func (x *DeployPluginRequest) Reset()

func (*DeployPluginRequest) String

func (x *DeployPluginRequest) String() string

type DeployPluginResponse

type DeployPluginResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployPluginResponse) Descriptor deprecated

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

Deprecated: Use DeployPluginResponse.ProtoReflect.Descriptor instead.

func (*DeployPluginResponse) GetStatus

func (x *DeployPluginResponse) GetStatus() StatusCode

func (*DeployPluginResponse) GetStatusMessage

func (x *DeployPluginResponse) GetStatusMessage() string

func (*DeployPluginResponse) ProtoMessage

func (*DeployPluginResponse) ProtoMessage()

func (*DeployPluginResponse) ProtoReflect

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

func (*DeployPluginResponse) Reset

func (x *DeployPluginResponse) Reset()

func (*DeployPluginResponse) String

func (x *DeployPluginResponse) String() string

type GetPluginDataRequest

type GetPluginDataRequest struct {
	StoreType  StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginDataRequest) Descriptor deprecated

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

Deprecated: Use GetPluginDataRequest.ProtoReflect.Descriptor instead.

func (*GetPluginDataRequest) GetPluginName

func (x *GetPluginDataRequest) GetPluginName() string

func (*GetPluginDataRequest) GetStoreType

func (x *GetPluginDataRequest) GetStoreType() StoreType

func (*GetPluginDataRequest) ProtoMessage

func (*GetPluginDataRequest) ProtoMessage()

func (*GetPluginDataRequest) ProtoReflect

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

func (*GetPluginDataRequest) Reset

func (x *GetPluginDataRequest) Reset()

func (*GetPluginDataRequest) String

func (x *GetPluginDataRequest) String() string

type GetPluginDataResponse

type GetPluginDataResponse struct {
	Status        StatusCode  `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string      `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	PluginData    *PluginData `protobuf:"bytes,3,opt,name=pluginData,proto3" json:"pluginData,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginDataResponse) Descriptor deprecated

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

Deprecated: Use GetPluginDataResponse.ProtoReflect.Descriptor instead.

func (*GetPluginDataResponse) GetPluginData

func (x *GetPluginDataResponse) GetPluginData() *PluginData

func (*GetPluginDataResponse) GetStatus

func (x *GetPluginDataResponse) GetStatus() StatusCode

func (*GetPluginDataResponse) GetStatusMessage

func (x *GetPluginDataResponse) GetStatusMessage() string

func (*GetPluginDataResponse) ProtoMessage

func (*GetPluginDataResponse) ProtoMessage()

func (*GetPluginDataResponse) ProtoReflect

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

func (*GetPluginDataResponse) Reset

func (x *GetPluginDataResponse) Reset()

func (*GetPluginDataResponse) String

func (x *GetPluginDataResponse) String() string

type GetPluginStoreConfigRequest

type GetPluginStoreConfigRequest struct {
	StoreType StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginStoreConfigRequest) Descriptor deprecated

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

Deprecated: Use GetPluginStoreConfigRequest.ProtoReflect.Descriptor instead.

func (*GetPluginStoreConfigRequest) GetStoreType

func (x *GetPluginStoreConfigRequest) GetStoreType() StoreType

func (*GetPluginStoreConfigRequest) ProtoMessage

func (*GetPluginStoreConfigRequest) ProtoMessage()

func (*GetPluginStoreConfigRequest) ProtoReflect

func (*GetPluginStoreConfigRequest) Reset

func (x *GetPluginStoreConfigRequest) Reset()

func (*GetPluginStoreConfigRequest) String

func (x *GetPluginStoreConfigRequest) String() string

type GetPluginStoreConfigResponse

type GetPluginStoreConfigResponse struct {
	Status        StatusCode         `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string             `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	Config        *PluginStoreConfig `protobuf:"bytes,3,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginStoreConfigResponse) Descriptor deprecated

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

Deprecated: Use GetPluginStoreConfigResponse.ProtoReflect.Descriptor instead.

func (*GetPluginStoreConfigResponse) GetConfig

func (*GetPluginStoreConfigResponse) GetStatus

func (*GetPluginStoreConfigResponse) GetStatusMessage

func (x *GetPluginStoreConfigResponse) GetStatusMessage() string

func (*GetPluginStoreConfigResponse) ProtoMessage

func (*GetPluginStoreConfigResponse) ProtoMessage()

func (*GetPluginStoreConfigResponse) ProtoReflect

func (*GetPluginStoreConfigResponse) Reset

func (x *GetPluginStoreConfigResponse) Reset()

func (*GetPluginStoreConfigResponse) String

type GetPluginValuesRequest

type GetPluginValuesRequest struct {
	StoreType  StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	Version    string    `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginValuesRequest) Descriptor deprecated

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

Deprecated: Use GetPluginValuesRequest.ProtoReflect.Descriptor instead.

func (*GetPluginValuesRequest) GetPluginName

func (x *GetPluginValuesRequest) GetPluginName() string

func (*GetPluginValuesRequest) GetStoreType

func (x *GetPluginValuesRequest) GetStoreType() StoreType

func (*GetPluginValuesRequest) GetVersion

func (x *GetPluginValuesRequest) GetVersion() string

func (*GetPluginValuesRequest) ProtoMessage

func (*GetPluginValuesRequest) ProtoMessage()

func (*GetPluginValuesRequest) ProtoReflect

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

func (*GetPluginValuesRequest) Reset

func (x *GetPluginValuesRequest) Reset()

func (*GetPluginValuesRequest) String

func (x *GetPluginValuesRequest) String() string

type GetPluginValuesResponse

type GetPluginValuesResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	Values        []byte     `protobuf:"bytes,3,opt,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginValuesResponse) Descriptor deprecated

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

Deprecated: Use GetPluginValuesResponse.ProtoReflect.Descriptor instead.

func (*GetPluginValuesResponse) GetStatus

func (x *GetPluginValuesResponse) GetStatus() StatusCode

func (*GetPluginValuesResponse) GetStatusMessage

func (x *GetPluginValuesResponse) GetStatusMessage() string

func (*GetPluginValuesResponse) GetValues

func (x *GetPluginValuesResponse) GetValues() []byte

func (*GetPluginValuesResponse) ProtoMessage

func (*GetPluginValuesResponse) ProtoMessage()

func (*GetPluginValuesResponse) ProtoReflect

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

func (*GetPluginValuesResponse) Reset

func (x *GetPluginValuesResponse) Reset()

func (*GetPluginValuesResponse) String

func (x *GetPluginValuesResponse) String() string

type GetPluginsRequest

type GetPluginsRequest struct {
	StoreType StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginsRequest) Descriptor deprecated

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

Deprecated: Use GetPluginsRequest.ProtoReflect.Descriptor instead.

func (*GetPluginsRequest) GetStoreType

func (x *GetPluginsRequest) GetStoreType() StoreType

func (*GetPluginsRequest) ProtoMessage

func (*GetPluginsRequest) ProtoMessage()

func (*GetPluginsRequest) ProtoReflect

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

func (*GetPluginsRequest) Reset

func (x *GetPluginsRequest) Reset()

func (*GetPluginsRequest) String

func (x *GetPluginsRequest) String() string

type GetPluginsResponse

type GetPluginsResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	Plugins       []*Plugin  `protobuf:"bytes,3,rep,name=plugins,proto3" json:"plugins,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPluginsResponse) Descriptor deprecated

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

Deprecated: Use GetPluginsResponse.ProtoReflect.Descriptor instead.

func (*GetPluginsResponse) GetPlugins

func (x *GetPluginsResponse) GetPlugins() []*Plugin

func (*GetPluginsResponse) GetStatus

func (x *GetPluginsResponse) GetStatus() StatusCode

func (*GetPluginsResponse) GetStatusMessage

func (x *GetPluginsResponse) GetStatusMessage() string

func (*GetPluginsResponse) ProtoMessage

func (*GetPluginsResponse) ProtoMessage()

func (*GetPluginsResponse) ProtoReflect

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

func (*GetPluginsResponse) Reset

func (x *GetPluginsResponse) Reset()

func (*GetPluginsResponse) String

func (x *GetPluginsResponse) String() string

type Plugin

type Plugin struct {
	StoreType   StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName  string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	Description string    `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Category    string    `protobuf:"bytes,4,opt,name=category,proto3" json:"category,omitempty"`
	Versions    []string  `protobuf:"bytes,5,rep,name=versions,proto3" json:"versions,omitempty"`
	Icon        []byte    `protobuf:"bytes,6,opt,name=icon,proto3" json:"icon,omitempty"`
	// contains filtered or unexported fields
}

func (*Plugin) Descriptor deprecated

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

Deprecated: Use Plugin.ProtoReflect.Descriptor instead.

func (*Plugin) GetCategory

func (x *Plugin) GetCategory() string

func (*Plugin) GetDescription

func (x *Plugin) GetDescription() string

func (*Plugin) GetIcon

func (x *Plugin) GetIcon() []byte

func (*Plugin) GetPluginName

func (x *Plugin) GetPluginName() string

func (*Plugin) GetStoreType

func (x *Plugin) GetStoreType() StoreType

func (*Plugin) GetVersions

func (x *Plugin) GetVersions() []string

func (*Plugin) ProtoMessage

func (*Plugin) ProtoMessage()

func (*Plugin) ProtoReflect

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

func (*Plugin) Reset

func (x *Plugin) Reset()

func (*Plugin) String

func (x *Plugin) String() string

type PluginData

type PluginData struct {
	StoreType   StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName  string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	Description string    `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Category    string    `protobuf:"bytes,4,opt,name=category,proto3" json:"category,omitempty"`
	Versions    []string  `protobuf:"bytes,5,rep,name=versions,proto3" json:"versions,omitempty"`
	Icon        []byte    `protobuf:"bytes,6,opt,name=icon,proto3" json:"icon,omitempty"`
	// contains filtered or unexported fields
}

func (*PluginData) Descriptor deprecated

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

Deprecated: Use PluginData.ProtoReflect.Descriptor instead.

func (*PluginData) GetCategory

func (x *PluginData) GetCategory() string

func (*PluginData) GetDescription

func (x *PluginData) GetDescription() string

func (*PluginData) GetIcon

func (x *PluginData) GetIcon() []byte

func (*PluginData) GetPluginName

func (x *PluginData) GetPluginName() string

func (*PluginData) GetStoreType

func (x *PluginData) GetStoreType() StoreType

func (*PluginData) GetVersions

func (x *PluginData) GetVersions() []string

func (*PluginData) ProtoMessage

func (*PluginData) ProtoMessage()

func (*PluginData) ProtoReflect

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

func (*PluginData) Reset

func (x *PluginData) Reset()

func (*PluginData) String

func (x *PluginData) String() string

type PluginStoreClient

PluginStoreClient is the client API for PluginStore 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 PluginStoreConfig

type PluginStoreConfig struct {
	StoreType     StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	GitProjectId  string    `protobuf:"bytes,2,opt,name=gitProjectId,proto3" json:"gitProjectId,omitempty"`
	GitProjectURL string    `protobuf:"bytes,3,opt,name=gitProjectURL,proto3" json:"gitProjectURL,omitempty"`
	// contains filtered or unexported fields
}

func (*PluginStoreConfig) Descriptor deprecated

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

Deprecated: Use PluginStoreConfig.ProtoReflect.Descriptor instead.

func (*PluginStoreConfig) GetGitProjectId

func (x *PluginStoreConfig) GetGitProjectId() string

func (*PluginStoreConfig) GetGitProjectURL

func (x *PluginStoreConfig) GetGitProjectURL() string

func (*PluginStoreConfig) GetStoreType

func (x *PluginStoreConfig) GetStoreType() StoreType

func (*PluginStoreConfig) ProtoMessage

func (*PluginStoreConfig) ProtoMessage()

func (*PluginStoreConfig) ProtoReflect

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

func (*PluginStoreConfig) Reset

func (x *PluginStoreConfig) Reset()

func (*PluginStoreConfig) String

func (x *PluginStoreConfig) String() string

type PluginStoreServer

PluginStoreServer is the server API for PluginStore service. All implementations must embed UnimplementedPluginStoreServer for forward compatibility

type StatusCode

type StatusCode int32
const (
	StatusCode_OK               StatusCode = 0
	StatusCode_INTERNRAL_ERROR  StatusCode = 1
	StatusCode_INVALID_ARGUMENT StatusCode = 2
	StatusCode_NOT_FOUND        StatusCode = 3
)

func (StatusCode) Descriptor

func (StatusCode) Descriptor() protoreflect.EnumDescriptor

func (StatusCode) Enum

func (x StatusCode) Enum() *StatusCode

func (StatusCode) EnumDescriptor deprecated

func (StatusCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use StatusCode.Descriptor instead.

func (StatusCode) Number

func (x StatusCode) Number() protoreflect.EnumNumber

func (StatusCode) String

func (x StatusCode) String() string

func (StatusCode) Type

type StoreType

type StoreType int32
const (
	StoreType_NONE          StoreType = 0
	StoreType_CENTRAL_STORE StoreType = 1
	StoreType_LOCAL_STORE   StoreType = 2
	StoreType_DEFAULT_STORE StoreType = 3
)

func (StoreType) Descriptor

func (StoreType) Descriptor() protoreflect.EnumDescriptor

func (StoreType) Enum

func (x StoreType) Enum() *StoreType

func (StoreType) EnumDescriptor deprecated

func (StoreType) EnumDescriptor() ([]byte, []int)

Deprecated: Use StoreType.Descriptor instead.

func (StoreType) Number

func (x StoreType) Number() protoreflect.EnumNumber

func (StoreType) String

func (x StoreType) String() string

func (StoreType) Type

type SyncPluginStoreRequest

type SyncPluginStoreRequest struct {
	StoreType StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	// contains filtered or unexported fields
}

func (*SyncPluginStoreRequest) Descriptor deprecated

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

Deprecated: Use SyncPluginStoreRequest.ProtoReflect.Descriptor instead.

func (*SyncPluginStoreRequest) GetStoreType

func (x *SyncPluginStoreRequest) GetStoreType() StoreType

func (*SyncPluginStoreRequest) ProtoMessage

func (*SyncPluginStoreRequest) ProtoMessage()

func (*SyncPluginStoreRequest) ProtoReflect

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

func (*SyncPluginStoreRequest) Reset

func (x *SyncPluginStoreRequest) Reset()

func (*SyncPluginStoreRequest) String

func (x *SyncPluginStoreRequest) String() string

type SyncPluginStoreResponse

type SyncPluginStoreResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*SyncPluginStoreResponse) Descriptor deprecated

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

Deprecated: Use SyncPluginStoreResponse.ProtoReflect.Descriptor instead.

func (*SyncPluginStoreResponse) GetStatus

func (x *SyncPluginStoreResponse) GetStatus() StatusCode

func (*SyncPluginStoreResponse) GetStatusMessage

func (x *SyncPluginStoreResponse) GetStatusMessage() string

func (*SyncPluginStoreResponse) ProtoMessage

func (*SyncPluginStoreResponse) ProtoMessage()

func (*SyncPluginStoreResponse) ProtoReflect

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

func (*SyncPluginStoreResponse) Reset

func (x *SyncPluginStoreResponse) Reset()

func (*SyncPluginStoreResponse) String

func (x *SyncPluginStoreResponse) String() string

type UnDeployPluginRequest

type UnDeployPluginRequest struct {
	StoreType  StoreType `protobuf:"varint,1,opt,name=storeType,proto3,enum=pluginstorepb.StoreType" json:"storeType,omitempty"`
	PluginName string    `protobuf:"bytes,2,opt,name=pluginName,proto3" json:"pluginName,omitempty"`
	// contains filtered or unexported fields
}

func (*UnDeployPluginRequest) Descriptor deprecated

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

Deprecated: Use UnDeployPluginRequest.ProtoReflect.Descriptor instead.

func (*UnDeployPluginRequest) GetPluginName

func (x *UnDeployPluginRequest) GetPluginName() string

func (*UnDeployPluginRequest) GetStoreType

func (x *UnDeployPluginRequest) GetStoreType() StoreType

func (*UnDeployPluginRequest) ProtoMessage

func (*UnDeployPluginRequest) ProtoMessage()

func (*UnDeployPluginRequest) ProtoReflect

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

func (*UnDeployPluginRequest) Reset

func (x *UnDeployPluginRequest) Reset()

func (*UnDeployPluginRequest) String

func (x *UnDeployPluginRequest) String() string

type UnDeployPluginResponse

type UnDeployPluginResponse struct {
	Status        StatusCode `protobuf:"varint,1,opt,name=status,proto3,enum=pluginstorepb.StatusCode" json:"status,omitempty"`
	StatusMessage string     `protobuf:"bytes,2,opt,name=statusMessage,proto3" json:"statusMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*UnDeployPluginResponse) Descriptor deprecated

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

Deprecated: Use UnDeployPluginResponse.ProtoReflect.Descriptor instead.

func (*UnDeployPluginResponse) GetStatus

func (x *UnDeployPluginResponse) GetStatus() StatusCode

func (*UnDeployPluginResponse) GetStatusMessage

func (x *UnDeployPluginResponse) GetStatusMessage() string

func (*UnDeployPluginResponse) ProtoMessage

func (*UnDeployPluginResponse) ProtoMessage()

func (*UnDeployPluginResponse) ProtoReflect

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

func (*UnDeployPluginResponse) Reset

func (x *UnDeployPluginResponse) Reset()

func (*UnDeployPluginResponse) String

func (x *UnDeployPluginResponse) String() string

type UnimplementedPluginStoreServer

type UnimplementedPluginStoreServer struct {
}

UnimplementedPluginStoreServer must be embedded to have forward compatible implementations.

func (UnimplementedPluginStoreServer) DeployPlugin

func (UnimplementedPluginStoreServer) GetPluginData

func (UnimplementedPluginStoreServer) GetPluginValues

func (UnimplementedPluginStoreServer) GetPlugins

func (UnimplementedPluginStoreServer) SyncPluginStore

func (UnimplementedPluginStoreServer) UnDeployPlugin

type UnsafePluginStoreServer

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

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

Jump to

Keyboard shortcuts

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