Documentation ¶
Index ¶
- Variables
- type AddOrganization
- func (*AddOrganization) Descriptor() ([]byte, []int)deprecated
- func (x *AddOrganization) GetKind() string
- func (x *AddOrganization) GetName() string
- func (*AddOrganization) ProtoMessage()
- func (x *AddOrganization) ProtoReflect() protoreflect.Message
- func (x *AddOrganization) Reset()
- func (x *AddOrganization) String() string
- type AddService
- func (*AddService) Descriptor() ([]byte, []int)deprecated
- func (x *AddService) GetAgent() *v0.Agent
- func (x *AddService) GetDescription() string
- func (x *AddService) GetKind() string
- func (x *AddService) GetName() string
- func (*AddService) ProtoMessage()
- func (x *AddService) ProtoReflect() protoreflect.Message
- func (x *AddService) Reset()
- func (x *AddService) String() string
- type AddServiceDependency
- func (*AddServiceDependency) Descriptor() ([]byte, []int)deprecated
- func (x *AddServiceDependency) GetDependencyModule() string
- func (x *AddServiceDependency) GetDependencyName() string
- func (x *AddServiceDependency) GetEndpoints() []string
- func (x *AddServiceDependency) GetKind() string
- func (x *AddServiceDependency) GetModule() string
- func (x *AddServiceDependency) GetName() string
- func (*AddServiceDependency) ProtoMessage()
- func (x *AddServiceDependency) ProtoReflect() protoreflect.Message
- func (x *AddServiceDependency) Reset()
- func (x *AddServiceDependency) String() string
- type NewModule
- func (*NewModule) Descriptor() ([]byte, []int)deprecated
- func (x *NewModule) GetDescription() string
- func (x *NewModule) GetKind() string
- func (x *NewModule) GetName() string
- func (*NewModule) ProtoMessage()
- func (x *NewModule) ProtoReflect() protoreflect.Message
- func (x *NewModule) Reset()
- func (x *NewModule) String() string
- type NewWorkspace
- func (*NewWorkspace) Descriptor() ([]byte, []int)deprecated
- func (x *NewWorkspace) GetDescription() string
- func (x *NewWorkspace) GetKind() string
- func (x *NewWorkspace) GetLayout() string
- func (x *NewWorkspace) GetName() string
- func (x *NewWorkspace) GetPath() string
- func (*NewWorkspace) ProtoMessage()
- func (x *NewWorkspace) ProtoReflect() protoreflect.Message
- func (x *NewWorkspace) Reset()
- func (x *NewWorkspace) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_actions_v0_module_proto protoreflect.FileDescriptor
View Source
var File_actions_v0_organization_proto protoreflect.FileDescriptor
View Source
var File_actions_v0_service_proto protoreflect.FileDescriptor
View Source
var File_actions_v0_workspace_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type AddOrganization ¶
type AddOrganization struct { // Kind is the kind of the message. Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*AddOrganization) Descriptor
deprecated
func (*AddOrganization) Descriptor() ([]byte, []int)
Deprecated: Use AddOrganization.ProtoReflect.Descriptor instead.
func (*AddOrganization) GetKind ¶
func (x *AddOrganization) GetKind() string
func (*AddOrganization) GetName ¶
func (x *AddOrganization) GetName() string
func (*AddOrganization) ProtoMessage ¶
func (*AddOrganization) ProtoMessage()
func (*AddOrganization) ProtoReflect ¶
func (x *AddOrganization) ProtoReflect() protoreflect.Message
func (*AddOrganization) Reset ¶
func (x *AddOrganization) Reset()
func (*AddOrganization) String ¶
func (x *AddOrganization) String() string
type AddService ¶
type AddService struct { Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` // name is the name of the service. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // description provides a brief explanation of the service. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // agent is the agent that the service belongs to. Agent *v0.Agent `protobuf:"bytes,4,opt,name=agent,proto3" json:"agent,omitempty"` // contains filtered or unexported fields }
func (*AddService) Descriptor
deprecated
func (*AddService) Descriptor() ([]byte, []int)
Deprecated: Use AddService.ProtoReflect.Descriptor instead.
func (*AddService) GetAgent ¶
func (x *AddService) GetAgent() *v0.Agent
func (*AddService) GetDescription ¶
func (x *AddService) GetDescription() string
func (*AddService) GetKind ¶
func (x *AddService) GetKind() string
func (*AddService) GetName ¶
func (x *AddService) GetName() string
func (*AddService) ProtoMessage ¶
func (*AddService) ProtoMessage()
func (*AddService) ProtoReflect ¶
func (x *AddService) ProtoReflect() protoreflect.Message
func (*AddService) Reset ¶
func (x *AddService) Reset()
func (*AddService) String ¶
func (x *AddService) String() string
type AddServiceDependency ¶
type AddServiceDependency struct { // kind is the type of the service. Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` // name is the name of the service. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // module is the name of the module that the service belongs to. Module string `protobuf:"bytes,4,opt,name=module,proto3" json:"module,omitempty"` // dependency_name is the name of the dependency. DependencyName string `protobuf:"bytes,5,opt,name=dependency_name,json=dependencyName,proto3" json:"dependency_name,omitempty"` // dependency_module is the name of the module that the dependency belongs to. DependencyModule string `protobuf:"bytes,6,opt,name=dependency_module,json=dependencyModule,proto3" json:"dependency_module,omitempty"` // endpoints are the endpoints that the service can connect to. Endpoints []string `protobuf:"bytes,7,rep,name=endpoints,proto3" json:"endpoints,omitempty"` // contains filtered or unexported fields }
func (*AddServiceDependency) Descriptor
deprecated
func (*AddServiceDependency) Descriptor() ([]byte, []int)
Deprecated: Use AddServiceDependency.ProtoReflect.Descriptor instead.
func (*AddServiceDependency) GetDependencyModule ¶ added in v0.1.89
func (x *AddServiceDependency) GetDependencyModule() string
func (*AddServiceDependency) GetDependencyName ¶
func (x *AddServiceDependency) GetDependencyName() string
func (*AddServiceDependency) GetEndpoints ¶
func (x *AddServiceDependency) GetEndpoints() []string
func (*AddServiceDependency) GetKind ¶
func (x *AddServiceDependency) GetKind() string
func (*AddServiceDependency) GetModule ¶ added in v0.1.89
func (x *AddServiceDependency) GetModule() string
func (*AddServiceDependency) GetName ¶
func (x *AddServiceDependency) GetName() string
func (*AddServiceDependency) ProtoMessage ¶
func (*AddServiceDependency) ProtoMessage()
func (*AddServiceDependency) ProtoReflect ¶
func (x *AddServiceDependency) ProtoReflect() protoreflect.Message
func (*AddServiceDependency) Reset ¶
func (x *AddServiceDependency) Reset()
func (*AddServiceDependency) String ¶
func (x *AddServiceDependency) String() string
type NewModule ¶ added in v0.1.89
type NewModule struct { // Kind is the kind of the message. Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` // name is the name of the module. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // description provides a brief explanation of the module. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // contains filtered or unexported fields }
func (*NewModule) Descriptor
deprecated
added in
v0.1.89
func (*NewModule) GetDescription ¶ added in v0.1.89
func (*NewModule) ProtoMessage ¶ added in v0.1.89
func (*NewModule) ProtoMessage()
func (*NewModule) ProtoReflect ¶ added in v0.1.89
func (x *NewModule) ProtoReflect() protoreflect.Message
type NewWorkspace ¶ added in v0.1.89
type NewWorkspace struct { // Kind is the kind of the message. Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"` // Name is the name of the workspace. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Description is the description of the workspace. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // Path is where the workspace will be created. Path string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"` // layout is how the workspace is structure Layout string `protobuf:"bytes,5,opt,name=layout,proto3" json:"layout,omitempty"` // contains filtered or unexported fields }
func (*NewWorkspace) Descriptor
deprecated
added in
v0.1.89
func (*NewWorkspace) Descriptor() ([]byte, []int)
Deprecated: Use NewWorkspace.ProtoReflect.Descriptor instead.
func (*NewWorkspace) GetDescription ¶ added in v0.1.89
func (x *NewWorkspace) GetDescription() string
func (*NewWorkspace) GetKind ¶ added in v0.1.89
func (x *NewWorkspace) GetKind() string
func (*NewWorkspace) GetLayout ¶ added in v0.1.89
func (x *NewWorkspace) GetLayout() string
func (*NewWorkspace) GetName ¶ added in v0.1.89
func (x *NewWorkspace) GetName() string
func (*NewWorkspace) GetPath ¶ added in v0.1.89
func (x *NewWorkspace) GetPath() string
func (*NewWorkspace) ProtoMessage ¶ added in v0.1.89
func (*NewWorkspace) ProtoMessage()
func (*NewWorkspace) ProtoReflect ¶ added in v0.1.89
func (x *NewWorkspace) ProtoReflect() protoreflect.Message
func (*NewWorkspace) Reset ¶ added in v0.1.89
func (x *NewWorkspace) Reset()
func (*NewWorkspace) String ¶ added in v0.1.89
func (x *NewWorkspace) String() string
Click to show internal directories.
Click to hide internal directories.