Documentation ¶
Overview ¶
Package front is a generated protocol buffer package.
It is generated from these files:
front.proto
It has these top-level messages:
ExposedParametersRequest ExposedParameter ExposedParametersResponse
Package front is a generated protocol buffer package.
It is generated from these files:
front.proto
It has these top-level messages:
ExposedParametersRequest ExposedParameter ExposedParametersResponse
Index ¶
- func RegisterManifestServiceHandler(s server.Server, hdlr ManifestServiceHandler, opts ...server.HandlerOption)
- type ExposedParameter
- func (*ExposedParameter) Descriptor() ([]byte, []int)
- func (m *ExposedParameter) GetName() string
- func (m *ExposedParameter) GetPluginId() string
- func (m *ExposedParameter) GetScope() string
- func (*ExposedParameter) ProtoMessage()
- func (m *ExposedParameter) Reset()
- func (m *ExposedParameter) String() string
- func (this *ExposedParameter) Validate() error
- type ExposedParametersRequest
- func (*ExposedParametersRequest) Descriptor() ([]byte, []int)
- func (m *ExposedParametersRequest) GetExposed() bool
- func (m *ExposedParametersRequest) GetScope() string
- func (*ExposedParametersRequest) ProtoMessage()
- func (m *ExposedParametersRequest) Reset()
- func (m *ExposedParametersRequest) String() string
- func (this *ExposedParametersRequest) Validate() error
- type ExposedParametersResponse
- func (*ExposedParametersResponse) Descriptor() ([]byte, []int)
- func (m *ExposedParametersResponse) GetParameters() []*ExposedParameter
- func (*ExposedParametersResponse) ProtoMessage()
- func (m *ExposedParametersResponse) Reset()
- func (m *ExposedParametersResponse) String() string
- func (this *ExposedParametersResponse) Validate() error
- type ManifestService
- type ManifestServiceClient
- type ManifestServiceHandler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterManifestServiceHandler ¶
func RegisterManifestServiceHandler(s server.Server, hdlr ManifestServiceHandler, opts ...server.HandlerOption)
Types ¶
type ExposedParameter ¶
type ExposedParameter struct { Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"` Scope string `protobuf:"bytes,2,opt,name=Scope" json:"Scope,omitempty"` PluginId string `protobuf:"bytes,3,opt,name=PluginId" json:"PluginId,omitempty"` }
func (*ExposedParameter) Descriptor ¶
func (*ExposedParameter) Descriptor() ([]byte, []int)
func (*ExposedParameter) GetName ¶
func (m *ExposedParameter) GetName() string
func (*ExposedParameter) GetPluginId ¶
func (m *ExposedParameter) GetPluginId() string
func (*ExposedParameter) GetScope ¶
func (m *ExposedParameter) GetScope() string
func (*ExposedParameter) ProtoMessage ¶
func (*ExposedParameter) ProtoMessage()
func (*ExposedParameter) Reset ¶
func (m *ExposedParameter) Reset()
func (*ExposedParameter) String ¶
func (m *ExposedParameter) String() string
func (*ExposedParameter) Validate ¶
func (this *ExposedParameter) Validate() error
type ExposedParametersRequest ¶
type ExposedParametersRequest struct { Scope string `protobuf:"bytes,1,opt,name=Scope" json:"Scope,omitempty"` Exposed bool `protobuf:"varint,2,opt,name=Exposed" json:"Exposed,omitempty"` }
func (*ExposedParametersRequest) Descriptor ¶
func (*ExposedParametersRequest) Descriptor() ([]byte, []int)
func (*ExposedParametersRequest) GetExposed ¶
func (m *ExposedParametersRequest) GetExposed() bool
func (*ExposedParametersRequest) GetScope ¶
func (m *ExposedParametersRequest) GetScope() string
func (*ExposedParametersRequest) ProtoMessage ¶
func (*ExposedParametersRequest) ProtoMessage()
func (*ExposedParametersRequest) Reset ¶
func (m *ExposedParametersRequest) Reset()
func (*ExposedParametersRequest) String ¶
func (m *ExposedParametersRequest) String() string
func (*ExposedParametersRequest) Validate ¶
func (this *ExposedParametersRequest) Validate() error
type ExposedParametersResponse ¶
type ExposedParametersResponse struct {
Parameters []*ExposedParameter `protobuf:"bytes,1,rep,name=Parameters" json:"Parameters,omitempty"`
}
func (*ExposedParametersResponse) Descriptor ¶
func (*ExposedParametersResponse) Descriptor() ([]byte, []int)
func (*ExposedParametersResponse) GetParameters ¶
func (m *ExposedParametersResponse) GetParameters() []*ExposedParameter
func (*ExposedParametersResponse) ProtoMessage ¶
func (*ExposedParametersResponse) ProtoMessage()
func (*ExposedParametersResponse) Reset ¶
func (m *ExposedParametersResponse) Reset()
func (*ExposedParametersResponse) String ¶
func (m *ExposedParametersResponse) String() string
func (*ExposedParametersResponse) Validate ¶
func (this *ExposedParametersResponse) Validate() error
type ManifestService ¶
type ManifestService struct {
ManifestServiceHandler
}
func (*ManifestService) ExposedParameters ¶
func (h *ManifestService) ExposedParameters(ctx context.Context, in *ExposedParametersRequest, out *ExposedParametersResponse) error
type ManifestServiceClient ¶
type ManifestServiceClient interface {
ExposedParameters(ctx context.Context, in *ExposedParametersRequest, opts ...client.CallOption) (*ExposedParametersResponse, error)
}
func NewManifestServiceClient ¶
func NewManifestServiceClient(serviceName string, c client.Client) ManifestServiceClient
type ManifestServiceHandler ¶
type ManifestServiceHandler interface {
ExposedParameters(context.Context, *ExposedParametersRequest, *ExposedParametersResponse) error
}
Click to show internal directories.
Click to hide internal directories.