deployer_spb

package
v0.0.0-...-a8e7fc3 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2024 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DeploymentCommandService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "o5.deployer.v1.service.DeploymentCommandService",
	HandlerType: (*DeploymentCommandServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "TriggerDeployment",
			Handler:    _DeploymentCommandService_TriggerDeployment_Handler,
		},
		{
			MethodName: "TerminateDeployment",
			Handler:    _DeploymentCommandService_TerminateDeployment_Handler,
		},
		{
			MethodName: "UpsertCluster",
			Handler:    _DeploymentCommandService_UpsertCluster_Handler,
		},
		{
			MethodName: "UpsertEnvironment",
			Handler:    _DeploymentCommandService_UpsertEnvironment_Handler,
		},
		{
			MethodName: "UpsertStack",
			Handler:    _DeploymentCommandService_UpsertStack_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "o5/deployer/v1/service/command.proto",
}

DeploymentCommandService_ServiceDesc is the grpc.ServiceDesc for DeploymentCommandService 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 DeploymentQueryService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "o5.deployer.v1.service.DeploymentQueryService",
	HandlerType: (*DeploymentQueryServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetDeployment",
			Handler:    _DeploymentQueryService_GetDeployment_Handler,
		},
		{
			MethodName: "ListDeploymentEvents",
			Handler:    _DeploymentQueryService_ListDeploymentEvents_Handler,
		},
		{
			MethodName: "ListDeployments",
			Handler:    _DeploymentQueryService_ListDeployments_Handler,
		},
		{
			MethodName: "GetStack",
			Handler:    _DeploymentQueryService_GetStack_Handler,
		},
		{
			MethodName: "ListStacks",
			Handler:    _DeploymentQueryService_ListStacks_Handler,
		},
		{
			MethodName: "ListStackEvents",
			Handler:    _DeploymentQueryService_ListStackEvents_Handler,
		},
		{
			MethodName: "ListEnvironments",
			Handler:    _DeploymentQueryService_ListEnvironments_Handler,
		},
		{
			MethodName: "GetEnvironment",
			Handler:    _DeploymentQueryService_GetEnvironment_Handler,
		},
		{
			MethodName: "ListEnvironmentEvents",
			Handler:    _DeploymentQueryService_ListEnvironmentEvents_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "o5/deployer/v1/service/query.proto",
}

DeploymentQueryService_ServiceDesc is the grpc.ServiceDesc for DeploymentQueryService 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_o5_deployer_v1_service_command_proto protoreflect.FileDescriptor
View Source
var File_o5_deployer_v1_service_query_proto protoreflect.FileDescriptor

Functions

func RegisterDeploymentCommandServiceServer

func RegisterDeploymentCommandServiceServer(s grpc.ServiceRegistrar, srv DeploymentCommandServiceServer)

func RegisterDeploymentQueryServiceServer

func RegisterDeploymentQueryServiceServer(s grpc.ServiceRegistrar, srv DeploymentQueryServiceServer)

Types

type DeploymentCommandServiceClient

type DeploymentCommandServiceClient interface {
	TriggerDeployment(ctx context.Context, in *TriggerDeploymentRequest, opts ...grpc.CallOption) (*TriggerDeploymentResponse, error)
	TerminateDeployment(ctx context.Context, in *TerminateDeploymentRequest, opts ...grpc.CallOption) (*TerminateDeploymentResponse, error)
	UpsertCluster(ctx context.Context, in *UpsertClusterRequest, opts ...grpc.CallOption) (*UpsertClusterResponse, error)
	UpsertEnvironment(ctx context.Context, in *UpsertEnvironmentRequest, opts ...grpc.CallOption) (*UpsertEnvironmentResponse, error)
	UpsertStack(ctx context.Context, in *UpsertStackRequest, opts ...grpc.CallOption) (*UpsertStackResponse, error)
}

DeploymentCommandServiceClient is the client API for DeploymentCommandService 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 DeploymentCommandServiceServer

type DeploymentCommandServiceServer interface {
	TriggerDeployment(context.Context, *TriggerDeploymentRequest) (*TriggerDeploymentResponse, error)
	TerminateDeployment(context.Context, *TerminateDeploymentRequest) (*TerminateDeploymentResponse, error)
	UpsertCluster(context.Context, *UpsertClusterRequest) (*UpsertClusterResponse, error)
	UpsertEnvironment(context.Context, *UpsertEnvironmentRequest) (*UpsertEnvironmentResponse, error)
	UpsertStack(context.Context, *UpsertStackRequest) (*UpsertStackResponse, error)
	// contains filtered or unexported methods
}

DeploymentCommandServiceServer is the server API for DeploymentCommandService service. All implementations must embed UnimplementedDeploymentCommandServiceServer for forward compatibility

type DeploymentQueryServiceClient

DeploymentQueryServiceClient is the client API for DeploymentQueryService 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 DeploymentQueryServiceServer

DeploymentQueryServiceServer is the server API for DeploymentQueryService service. All implementations must embed UnimplementedDeploymentQueryServiceServer for forward compatibility

type GetDeploymentRequest

type GetDeploymentRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentRequest) Descriptor deprecated

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) GetDeploymentId

func (x *GetDeploymentRequest) GetDeploymentId() string

func (*GetDeploymentRequest) ProtoMessage

func (*GetDeploymentRequest) ProtoMessage()

func (*GetDeploymentRequest) ProtoReflect

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

func (*GetDeploymentRequest) Reset

func (x *GetDeploymentRequest) Reset()

func (*GetDeploymentRequest) String

func (x *GetDeploymentRequest) String() string

type GetDeploymentResponse

type GetDeploymentResponse struct {
	State  *deployer_pb.DeploymentState   `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	Events []*deployer_pb.DeploymentEvent `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentResponse) GetEvents

func (*GetDeploymentResponse) GetState

func (*GetDeploymentResponse) ProtoMessage

func (*GetDeploymentResponse) ProtoMessage()

func (*GetDeploymentResponse) ProtoReflect

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

func (*GetDeploymentResponse) Reset

func (x *GetDeploymentResponse) Reset()

func (*GetDeploymentResponse) String

func (x *GetDeploymentResponse) String() string

type GetEnvironmentRequest

type GetEnvironmentRequest struct {
	EnvironmentId string `protobuf:"bytes,1,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEnvironmentRequest) Descriptor deprecated

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

Deprecated: Use GetEnvironmentRequest.ProtoReflect.Descriptor instead.

func (*GetEnvironmentRequest) GetEnvironmentId

func (x *GetEnvironmentRequest) GetEnvironmentId() string

func (*GetEnvironmentRequest) ProtoMessage

func (*GetEnvironmentRequest) ProtoMessage()

func (*GetEnvironmentRequest) ProtoReflect

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

func (*GetEnvironmentRequest) Reset

func (x *GetEnvironmentRequest) Reset()

func (*GetEnvironmentRequest) String

func (x *GetEnvironmentRequest) String() string

type GetEnvironmentResponse

type GetEnvironmentResponse struct {
	State  *deployer_pb.EnvironmentState   `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	Events []*deployer_pb.EnvironmentEvent `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEnvironmentResponse) Descriptor deprecated

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

Deprecated: Use GetEnvironmentResponse.ProtoReflect.Descriptor instead.

func (*GetEnvironmentResponse) GetEvents

func (*GetEnvironmentResponse) GetState

func (*GetEnvironmentResponse) ProtoMessage

func (*GetEnvironmentResponse) ProtoMessage()

func (*GetEnvironmentResponse) ProtoReflect

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

func (*GetEnvironmentResponse) Reset

func (x *GetEnvironmentResponse) Reset()

func (*GetEnvironmentResponse) String

func (x *GetEnvironmentResponse) String() string

type GetStackRequest

type GetStackRequest struct {
	StackId string `protobuf:"bytes,1,opt,name=stack_id,json=stackId,proto3" json:"stack_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStackRequest) Descriptor deprecated

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

Deprecated: Use GetStackRequest.ProtoReflect.Descriptor instead.

func (*GetStackRequest) GetStackId

func (x *GetStackRequest) GetStackId() string

func (*GetStackRequest) ProtoMessage

func (*GetStackRequest) ProtoMessage()

func (*GetStackRequest) ProtoReflect

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

func (*GetStackRequest) Reset

func (x *GetStackRequest) Reset()

func (*GetStackRequest) String

func (x *GetStackRequest) String() string

type GetStackResponse

type GetStackResponse struct {
	State  *deployer_pb.StackState   `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	Events []*deployer_pb.StackEvent `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStackResponse) Descriptor deprecated

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

Deprecated: Use GetStackResponse.ProtoReflect.Descriptor instead.

func (*GetStackResponse) GetEvents

func (x *GetStackResponse) GetEvents() []*deployer_pb.StackEvent

func (*GetStackResponse) GetState

func (x *GetStackResponse) GetState() *deployer_pb.StackState

func (*GetStackResponse) ProtoMessage

func (*GetStackResponse) ProtoMessage()

func (*GetStackResponse) ProtoReflect

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

func (*GetStackResponse) Reset

func (x *GetStackResponse) Reset()

func (*GetStackResponse) String

func (x *GetStackResponse) String() string

type IsTriggerSource_GithubSource_Ref

type IsTriggerSource_GithubSource_Ref = isTriggerSource_GithubSource_Ref

type IsTriggerSource_Type

type IsTriggerSource_Type = isTriggerSource_Type

type IsUpsertClusterRequest_Src

type IsUpsertClusterRequest_Src = isUpsertClusterRequest_Src

type IsUpsertEnvironmentRequest_Src

type IsUpsertEnvironmentRequest_Src = isUpsertEnvironmentRequest_Src

type ListDeploymentEventsRequest

type ListDeploymentEventsRequest struct {
	DeploymentId string                `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	Page         *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query        *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDeploymentEventsRequest) Descriptor deprecated

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

Deprecated: Use ListDeploymentEventsRequest.ProtoReflect.Descriptor instead.

func (*ListDeploymentEventsRequest) GetDeploymentId

func (x *ListDeploymentEventsRequest) GetDeploymentId() string

func (*ListDeploymentEventsRequest) GetPage

func (*ListDeploymentEventsRequest) GetQuery

func (*ListDeploymentEventsRequest) ProtoMessage

func (*ListDeploymentEventsRequest) ProtoMessage()

func (*ListDeploymentEventsRequest) ProtoReflect

func (*ListDeploymentEventsRequest) Reset

func (x *ListDeploymentEventsRequest) Reset()

func (*ListDeploymentEventsRequest) String

func (x *ListDeploymentEventsRequest) String() string

type ListDeploymentEventsResponse

type ListDeploymentEventsResponse struct {
	Events []*deployer_pb.DeploymentEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	Page   *psml_pb.PageResponse          `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDeploymentEventsResponse) Descriptor deprecated

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

Deprecated: Use ListDeploymentEventsResponse.ProtoReflect.Descriptor instead.

func (*ListDeploymentEventsResponse) GetEvents

func (*ListDeploymentEventsResponse) GetPage

func (*ListDeploymentEventsResponse) ProtoMessage

func (*ListDeploymentEventsResponse) ProtoMessage()

func (*ListDeploymentEventsResponse) ProtoReflect

func (*ListDeploymentEventsResponse) Reset

func (x *ListDeploymentEventsResponse) Reset()

func (*ListDeploymentEventsResponse) String

type ListDeploymentsRequest

type ListDeploymentsRequest struct {
	Page  *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDeploymentsRequest) Descriptor deprecated

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

Deprecated: Use ListDeploymentsRequest.ProtoReflect.Descriptor instead.

func (*ListDeploymentsRequest) GetPage

func (*ListDeploymentsRequest) GetQuery

func (*ListDeploymentsRequest) ProtoMessage

func (*ListDeploymentsRequest) ProtoMessage()

func (*ListDeploymentsRequest) ProtoReflect

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

func (*ListDeploymentsRequest) Reset

func (x *ListDeploymentsRequest) Reset()

func (*ListDeploymentsRequest) String

func (x *ListDeploymentsRequest) String() string

type ListDeploymentsResponse

type ListDeploymentsResponse struct {
	Deployments []*deployer_pb.DeploymentState `protobuf:"bytes,1,rep,name=deployments,proto3" json:"deployments,omitempty"`
	Page        *psml_pb.PageResponse          `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDeploymentsResponse) Descriptor deprecated

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

Deprecated: Use ListDeploymentsResponse.ProtoReflect.Descriptor instead.

func (*ListDeploymentsResponse) GetDeployments

func (x *ListDeploymentsResponse) GetDeployments() []*deployer_pb.DeploymentState

func (*ListDeploymentsResponse) GetPage

func (*ListDeploymentsResponse) ProtoMessage

func (*ListDeploymentsResponse) ProtoMessage()

func (*ListDeploymentsResponse) ProtoReflect

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

func (*ListDeploymentsResponse) Reset

func (x *ListDeploymentsResponse) Reset()

func (*ListDeploymentsResponse) String

func (x *ListDeploymentsResponse) String() string

type ListEnvironmentEventsRequest

type ListEnvironmentEventsRequest struct {
	EnvironmentId string                `protobuf:"bytes,1,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	Page          *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query         *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEnvironmentEventsRequest) Descriptor deprecated

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

Deprecated: Use ListEnvironmentEventsRequest.ProtoReflect.Descriptor instead.

func (*ListEnvironmentEventsRequest) GetEnvironmentId

func (x *ListEnvironmentEventsRequest) GetEnvironmentId() string

func (*ListEnvironmentEventsRequest) GetPage

func (*ListEnvironmentEventsRequest) GetQuery

func (*ListEnvironmentEventsRequest) ProtoMessage

func (*ListEnvironmentEventsRequest) ProtoMessage()

func (*ListEnvironmentEventsRequest) ProtoReflect

func (*ListEnvironmentEventsRequest) Reset

func (x *ListEnvironmentEventsRequest) Reset()

func (*ListEnvironmentEventsRequest) String

type ListEnvironmentEventsResponse

type ListEnvironmentEventsResponse struct {
	Events []*deployer_pb.EnvironmentEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	Page   *psml_pb.PageResponse           `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEnvironmentEventsResponse) Descriptor deprecated

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

Deprecated: Use ListEnvironmentEventsResponse.ProtoReflect.Descriptor instead.

func (*ListEnvironmentEventsResponse) GetEvents

func (*ListEnvironmentEventsResponse) GetPage

func (*ListEnvironmentEventsResponse) ProtoMessage

func (*ListEnvironmentEventsResponse) ProtoMessage()

func (*ListEnvironmentEventsResponse) ProtoReflect

func (*ListEnvironmentEventsResponse) Reset

func (x *ListEnvironmentEventsResponse) Reset()

func (*ListEnvironmentEventsResponse) String

type ListEnvironmentsRequest

type ListEnvironmentsRequest struct {
	Page  *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEnvironmentsRequest) Descriptor deprecated

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

Deprecated: Use ListEnvironmentsRequest.ProtoReflect.Descriptor instead.

func (*ListEnvironmentsRequest) GetPage

func (*ListEnvironmentsRequest) GetQuery

func (*ListEnvironmentsRequest) ProtoMessage

func (*ListEnvironmentsRequest) ProtoMessage()

func (*ListEnvironmentsRequest) ProtoReflect

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

func (*ListEnvironmentsRequest) Reset

func (x *ListEnvironmentsRequest) Reset()

func (*ListEnvironmentsRequest) String

func (x *ListEnvironmentsRequest) String() string

type ListEnvironmentsResponse

type ListEnvironmentsResponse struct {
	Environments []*deployer_pb.EnvironmentState `protobuf:"bytes,1,rep,name=environments,proto3" json:"environments,omitempty"`
	Page         *psml_pb.PageResponse           `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEnvironmentsResponse) Descriptor deprecated

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

Deprecated: Use ListEnvironmentsResponse.ProtoReflect.Descriptor instead.

func (*ListEnvironmentsResponse) GetEnvironments

func (x *ListEnvironmentsResponse) GetEnvironments() []*deployer_pb.EnvironmentState

func (*ListEnvironmentsResponse) GetPage

func (*ListEnvironmentsResponse) ProtoMessage

func (*ListEnvironmentsResponse) ProtoMessage()

func (*ListEnvironmentsResponse) ProtoReflect

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

func (*ListEnvironmentsResponse) Reset

func (x *ListEnvironmentsResponse) Reset()

func (*ListEnvironmentsResponse) String

func (x *ListEnvironmentsResponse) String() string

type ListStackEventsRequest

type ListStackEventsRequest struct {
	StackId string                `protobuf:"bytes,1,opt,name=stack_id,json=stackId,proto3" json:"stack_id,omitempty"`
	Page    *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query   *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListStackEventsRequest) Descriptor deprecated

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

Deprecated: Use ListStackEventsRequest.ProtoReflect.Descriptor instead.

func (*ListStackEventsRequest) GetPage

func (*ListStackEventsRequest) GetQuery

func (*ListStackEventsRequest) GetStackId

func (x *ListStackEventsRequest) GetStackId() string

func (*ListStackEventsRequest) ProtoMessage

func (*ListStackEventsRequest) ProtoMessage()

func (*ListStackEventsRequest) ProtoReflect

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

func (*ListStackEventsRequest) Reset

func (x *ListStackEventsRequest) Reset()

func (*ListStackEventsRequest) String

func (x *ListStackEventsRequest) String() string

type ListStackEventsResponse

type ListStackEventsResponse struct {
	Events []*deployer_pb.StackEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	Page   *psml_pb.PageResponse     `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListStackEventsResponse) Descriptor deprecated

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

Deprecated: Use ListStackEventsResponse.ProtoReflect.Descriptor instead.

func (*ListStackEventsResponse) GetEvents

func (*ListStackEventsResponse) GetPage

func (*ListStackEventsResponse) ProtoMessage

func (*ListStackEventsResponse) ProtoMessage()

func (*ListStackEventsResponse) ProtoReflect

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

func (*ListStackEventsResponse) Reset

func (x *ListStackEventsResponse) Reset()

func (*ListStackEventsResponse) String

func (x *ListStackEventsResponse) String() string

type ListStacksRequest

type ListStacksRequest struct {
	Page  *psml_pb.PageRequest  `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	Query *psml_pb.QueryRequest `protobuf:"bytes,101,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListStacksRequest) Descriptor deprecated

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

Deprecated: Use ListStacksRequest.ProtoReflect.Descriptor instead.

func (*ListStacksRequest) GetPage

func (x *ListStacksRequest) GetPage() *psml_pb.PageRequest

func (*ListStacksRequest) GetQuery

func (x *ListStacksRequest) GetQuery() *psml_pb.QueryRequest

func (*ListStacksRequest) ProtoMessage

func (*ListStacksRequest) ProtoMessage()

func (*ListStacksRequest) ProtoReflect

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

func (*ListStacksRequest) Reset

func (x *ListStacksRequest) Reset()

func (*ListStacksRequest) String

func (x *ListStacksRequest) String() string

type ListStacksResponse

type ListStacksResponse struct {
	Stacks []*deployer_pb.StackState `protobuf:"bytes,1,rep,name=stacks,proto3" json:"stacks,omitempty"`
	Page   *psml_pb.PageResponse     `protobuf:"bytes,100,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListStacksResponse) Descriptor deprecated

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

Deprecated: Use ListStacksResponse.ProtoReflect.Descriptor instead.

func (*ListStacksResponse) GetPage

func (x *ListStacksResponse) GetPage() *psml_pb.PageResponse

func (*ListStacksResponse) GetStacks

func (x *ListStacksResponse) GetStacks() []*deployer_pb.StackState

func (*ListStacksResponse) ProtoMessage

func (*ListStacksResponse) ProtoMessage()

func (*ListStacksResponse) ProtoReflect

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

func (*ListStacksResponse) Reset

func (x *ListStacksResponse) Reset()

func (*ListStacksResponse) String

func (x *ListStacksResponse) String() string

type TerminateDeploymentRequest

type TerminateDeploymentRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TerminateDeploymentRequest) Descriptor deprecated

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

Deprecated: Use TerminateDeploymentRequest.ProtoReflect.Descriptor instead.

func (*TerminateDeploymentRequest) GetDeploymentId

func (x *TerminateDeploymentRequest) GetDeploymentId() string

func (*TerminateDeploymentRequest) ProtoMessage

func (*TerminateDeploymentRequest) ProtoMessage()

func (*TerminateDeploymentRequest) ProtoReflect

func (*TerminateDeploymentRequest) Reset

func (x *TerminateDeploymentRequest) Reset()

func (*TerminateDeploymentRequest) String

func (x *TerminateDeploymentRequest) String() string

type TerminateDeploymentResponse

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

func (*TerminateDeploymentResponse) Descriptor deprecated

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

Deprecated: Use TerminateDeploymentResponse.ProtoReflect.Descriptor instead.

func (*TerminateDeploymentResponse) ProtoMessage

func (*TerminateDeploymentResponse) ProtoMessage()

func (*TerminateDeploymentResponse) ProtoReflect

func (*TerminateDeploymentResponse) Reset

func (x *TerminateDeploymentResponse) Reset()

func (*TerminateDeploymentResponse) String

func (x *TerminateDeploymentResponse) String() string

type TriggerDeploymentRequest

type TriggerDeploymentRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// Should be either a UUID, or the environment's full name
	Environment string                       `protobuf:"bytes,2,opt,name=environment,proto3" json:"environment,omitempty"`
	Source      *TriggerSource               `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"`
	Flags       *deployer_pb.DeploymentFlags `protobuf:"bytes,4,opt,name=flags,proto3" json:"flags,omitempty"`
	// contains filtered or unexported fields
}

func (*TriggerDeploymentRequest) Descriptor deprecated

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

Deprecated: Use TriggerDeploymentRequest.ProtoReflect.Descriptor instead.

func (*TriggerDeploymentRequest) GetDeploymentId

func (x *TriggerDeploymentRequest) GetDeploymentId() string

func (*TriggerDeploymentRequest) GetEnvironment

func (x *TriggerDeploymentRequest) GetEnvironment() string

func (*TriggerDeploymentRequest) GetFlags

func (*TriggerDeploymentRequest) GetSource

func (x *TriggerDeploymentRequest) GetSource() *TriggerSource

func (*TriggerDeploymentRequest) ProtoMessage

func (*TriggerDeploymentRequest) ProtoMessage()

func (*TriggerDeploymentRequest) ProtoReflect

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

func (*TriggerDeploymentRequest) Reset

func (x *TriggerDeploymentRequest) Reset()

func (*TriggerDeploymentRequest) String

func (x *TriggerDeploymentRequest) String() string

type TriggerDeploymentResponse

type TriggerDeploymentResponse struct {
	DeploymentId  string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	EnvironmentId string `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	ClusterId     string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TriggerDeploymentResponse) Descriptor deprecated

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

Deprecated: Use TriggerDeploymentResponse.ProtoReflect.Descriptor instead.

func (*TriggerDeploymentResponse) GetClusterId

func (x *TriggerDeploymentResponse) GetClusterId() string

func (*TriggerDeploymentResponse) GetDeploymentId

func (x *TriggerDeploymentResponse) GetDeploymentId() string

func (*TriggerDeploymentResponse) GetEnvironmentId

func (x *TriggerDeploymentResponse) GetEnvironmentId() string

func (*TriggerDeploymentResponse) ProtoMessage

func (*TriggerDeploymentResponse) ProtoMessage()

func (*TriggerDeploymentResponse) ProtoReflect

func (*TriggerDeploymentResponse) Reset

func (x *TriggerDeploymentResponse) Reset()

func (*TriggerDeploymentResponse) String

func (x *TriggerDeploymentResponse) String() string

type TriggerSource

type TriggerSource struct {

	// Types that are assignable to Type:
	//
	//	*TriggerSource_Github
	Type isTriggerSource_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*TriggerSource) Descriptor deprecated

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

Deprecated: Use TriggerSource.ProtoReflect.Descriptor instead.

func (*TriggerSource) GetGithub

func (x *TriggerSource) GetGithub() *TriggerSource_GithubSource

func (*TriggerSource) GetType

func (m *TriggerSource) GetType() isTriggerSource_Type

func (*TriggerSource) ProtoMessage

func (*TriggerSource) ProtoMessage()

func (*TriggerSource) ProtoReflect

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

func (*TriggerSource) Reset

func (x *TriggerSource) Reset()

func (*TriggerSource) String

func (x *TriggerSource) String() string

type TriggerSource_Github

type TriggerSource_Github struct {
	Github *TriggerSource_GithubSource `protobuf:"bytes,10,opt,name=github,proto3,oneof"`
}

type TriggerSource_GithubSource

type TriggerSource_GithubSource struct {
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo  string `protobuf:"bytes,3,opt,name=repo,proto3" json:"repo,omitempty"`
	// Types that are assignable to Ref:
	//
	//	*TriggerSource_GithubSource_Branch
	//	*TriggerSource_GithubSource_Tag
	//	*TriggerSource_GithubSource_Commit
	Ref isTriggerSource_GithubSource_Ref `protobuf_oneof:"ref"`
	// contains filtered or unexported fields
}

func (*TriggerSource_GithubSource) Descriptor deprecated

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

Deprecated: Use TriggerSource_GithubSource.ProtoReflect.Descriptor instead.

func (*TriggerSource_GithubSource) GetBranch

func (x *TriggerSource_GithubSource) GetBranch() string

func (*TriggerSource_GithubSource) GetCommit

func (x *TriggerSource_GithubSource) GetCommit() string

func (*TriggerSource_GithubSource) GetOwner

func (x *TriggerSource_GithubSource) GetOwner() string

func (*TriggerSource_GithubSource) GetRef

func (m *TriggerSource_GithubSource) GetRef() isTriggerSource_GithubSource_Ref

func (*TriggerSource_GithubSource) GetRepo

func (x *TriggerSource_GithubSource) GetRepo() string

func (*TriggerSource_GithubSource) GetTag

func (x *TriggerSource_GithubSource) GetTag() string

func (*TriggerSource_GithubSource) ProtoMessage

func (*TriggerSource_GithubSource) ProtoMessage()

func (*TriggerSource_GithubSource) ProtoReflect

func (*TriggerSource_GithubSource) Reset

func (x *TriggerSource_GithubSource) Reset()

func (*TriggerSource_GithubSource) String

func (x *TriggerSource_GithubSource) String() string

type TriggerSource_GithubSource_Branch

type TriggerSource_GithubSource_Branch struct {
	Branch string `protobuf:"bytes,4,opt,name=branch,proto3,oneof"`
}

type TriggerSource_GithubSource_Commit

type TriggerSource_GithubSource_Commit struct {
	Commit string `protobuf:"bytes,6,opt,name=commit,proto3,oneof"`
}

type TriggerSource_GithubSource_Tag

type TriggerSource_GithubSource_Tag struct {
	Tag string `protobuf:"bytes,5,opt,name=tag,proto3,oneof"`
}

type UnimplementedDeploymentCommandServiceServer

type UnimplementedDeploymentCommandServiceServer struct {
}

UnimplementedDeploymentCommandServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedDeploymentCommandServiceServer) TerminateDeployment

func (UnimplementedDeploymentCommandServiceServer) TriggerDeployment

func (UnimplementedDeploymentCommandServiceServer) UpsertCluster

func (UnimplementedDeploymentCommandServiceServer) UpsertEnvironment

func (UnimplementedDeploymentCommandServiceServer) UpsertStack

type UnimplementedDeploymentQueryServiceServer

type UnimplementedDeploymentQueryServiceServer struct {
}

UnimplementedDeploymentQueryServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedDeploymentQueryServiceServer) GetDeployment

func (UnimplementedDeploymentQueryServiceServer) GetEnvironment

func (UnimplementedDeploymentQueryServiceServer) GetStack

func (UnimplementedDeploymentQueryServiceServer) ListDeploymentEvents

func (UnimplementedDeploymentQueryServiceServer) ListDeployments

func (UnimplementedDeploymentQueryServiceServer) ListEnvironmentEvents

func (UnimplementedDeploymentQueryServiceServer) ListEnvironments

func (UnimplementedDeploymentQueryServiceServer) ListStackEvents

func (UnimplementedDeploymentQueryServiceServer) ListStacks

type UnsafeDeploymentCommandServiceServer

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

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

type UnsafeDeploymentQueryServiceServer

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

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

type UpsertClusterRequest

type UpsertClusterRequest struct {

	// Either a UUID, or the cluster's full name
	ClusterId string `protobuf:"bytes,1,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
	// if combined contains environments, they will also be upserted.
	//
	// Types that are assignable to Src:
	//
	//	*UpsertClusterRequest_Config
	//	*UpsertClusterRequest_ConfigYaml
	//	*UpsertClusterRequest_ConfigJson
	Src isUpsertClusterRequest_Src `protobuf_oneof:"src"`
	// contains filtered or unexported fields
}

func (*UpsertClusterRequest) Descriptor deprecated

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

Deprecated: Use UpsertClusterRequest.ProtoReflect.Descriptor instead.

func (*UpsertClusterRequest) GetClusterId

func (x *UpsertClusterRequest) GetClusterId() string

func (*UpsertClusterRequest) GetConfig

func (*UpsertClusterRequest) GetConfigJson

func (x *UpsertClusterRequest) GetConfigJson() []byte

func (*UpsertClusterRequest) GetConfigYaml

func (x *UpsertClusterRequest) GetConfigYaml() []byte

func (*UpsertClusterRequest) GetSrc

func (m *UpsertClusterRequest) GetSrc() isUpsertClusterRequest_Src

func (*UpsertClusterRequest) ProtoMessage

func (*UpsertClusterRequest) ProtoMessage()

func (*UpsertClusterRequest) ProtoReflect

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

func (*UpsertClusterRequest) Reset

func (x *UpsertClusterRequest) Reset()

func (*UpsertClusterRequest) String

func (x *UpsertClusterRequest) String() string

type UpsertClusterRequest_Config

type UpsertClusterRequest_Config struct {
	Config *environment_pb.CombinedConfig `protobuf:"bytes,10,opt,name=config,proto3,oneof"`
}

type UpsertClusterRequest_ConfigJson

type UpsertClusterRequest_ConfigJson struct {
	ConfigJson []byte `protobuf:"bytes,12,opt,name=config_json,json=configJson,proto3,oneof"`
}

type UpsertClusterRequest_ConfigYaml

type UpsertClusterRequest_ConfigYaml struct {
	ConfigYaml []byte `protobuf:"bytes,11,opt,name=config_yaml,json=configYaml,proto3,oneof"`
}

type UpsertClusterResponse

type UpsertClusterResponse struct {
	State *deployer_pb.ClusterState `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertClusterResponse) Descriptor deprecated

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

Deprecated: Use UpsertClusterResponse.ProtoReflect.Descriptor instead.

func (*UpsertClusterResponse) GetState

func (*UpsertClusterResponse) ProtoMessage

func (*UpsertClusterResponse) ProtoMessage()

func (*UpsertClusterResponse) ProtoReflect

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

func (*UpsertClusterResponse) Reset

func (x *UpsertClusterResponse) Reset()

func (*UpsertClusterResponse) String

func (x *UpsertClusterResponse) String() string

type UpsertEnvironmentRequest

type UpsertEnvironmentRequest struct {

	// Either a UUID, or the environment's full name
	EnvironmentId string `protobuf:"bytes,1,opt,name=environment_id,json=environmentId,proto3" json:"environment_id,omitempty"`
	// Either a UUID or the cluster's name
	ClusterId string `protobuf:"bytes,2,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
	// Types that are assignable to Src:
	//
	//	*UpsertEnvironmentRequest_Config
	//	*UpsertEnvironmentRequest_ConfigYaml
	//	*UpsertEnvironmentRequest_ConfigJson
	Src isUpsertEnvironmentRequest_Src `protobuf_oneof:"src"`
	// contains filtered or unexported fields
}

func (*UpsertEnvironmentRequest) Descriptor deprecated

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

Deprecated: Use UpsertEnvironmentRequest.ProtoReflect.Descriptor instead.

func (*UpsertEnvironmentRequest) GetClusterId

func (x *UpsertEnvironmentRequest) GetClusterId() string

func (*UpsertEnvironmentRequest) GetConfig

func (*UpsertEnvironmentRequest) GetConfigJson

func (x *UpsertEnvironmentRequest) GetConfigJson() []byte

func (*UpsertEnvironmentRequest) GetConfigYaml

func (x *UpsertEnvironmentRequest) GetConfigYaml() []byte

func (*UpsertEnvironmentRequest) GetEnvironmentId

func (x *UpsertEnvironmentRequest) GetEnvironmentId() string

func (*UpsertEnvironmentRequest) GetSrc

func (m *UpsertEnvironmentRequest) GetSrc() isUpsertEnvironmentRequest_Src

func (*UpsertEnvironmentRequest) ProtoMessage

func (*UpsertEnvironmentRequest) ProtoMessage()

func (*UpsertEnvironmentRequest) ProtoReflect

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

func (*UpsertEnvironmentRequest) Reset

func (x *UpsertEnvironmentRequest) Reset()

func (*UpsertEnvironmentRequest) String

func (x *UpsertEnvironmentRequest) String() string

type UpsertEnvironmentRequest_Config

type UpsertEnvironmentRequest_Config struct {
	Config *environment_pb.Environment `protobuf:"bytes,10,opt,name=config,proto3,oneof"`
}

type UpsertEnvironmentRequest_ConfigJson

type UpsertEnvironmentRequest_ConfigJson struct {
	ConfigJson []byte `protobuf:"bytes,12,opt,name=config_json,json=configJson,proto3,oneof"`
}

type UpsertEnvironmentRequest_ConfigYaml

type UpsertEnvironmentRequest_ConfigYaml struct {
	ConfigYaml []byte `protobuf:"bytes,11,opt,name=config_yaml,json=configYaml,proto3,oneof"`
}

type UpsertEnvironmentResponse

type UpsertEnvironmentResponse struct {
	State *deployer_pb.EnvironmentState `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertEnvironmentResponse) Descriptor deprecated

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

Deprecated: Use UpsertEnvironmentResponse.ProtoReflect.Descriptor instead.

func (*UpsertEnvironmentResponse) GetState

func (*UpsertEnvironmentResponse) ProtoMessage

func (*UpsertEnvironmentResponse) ProtoMessage()

func (*UpsertEnvironmentResponse) ProtoReflect

func (*UpsertEnvironmentResponse) Reset

func (x *UpsertEnvironmentResponse) Reset()

func (*UpsertEnvironmentResponse) String

func (x *UpsertEnvironmentResponse) String() string

type UpsertStackRequest

type UpsertStackRequest struct {

	// Should be either a UUID, or the env-app style name for the stack.
	StackId string                   `protobuf:"bytes,1,opt,name=stack_id,json=stackId,proto3" json:"stack_id,omitempty"`
	Config  *deployer_pb.StackConfig `protobuf:"bytes,4,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertStackRequest) Descriptor deprecated

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

Deprecated: Use UpsertStackRequest.ProtoReflect.Descriptor instead.

func (*UpsertStackRequest) GetConfig

func (x *UpsertStackRequest) GetConfig() *deployer_pb.StackConfig

func (*UpsertStackRequest) GetStackId

func (x *UpsertStackRequest) GetStackId() string

func (*UpsertStackRequest) ProtoMessage

func (*UpsertStackRequest) ProtoMessage()

func (*UpsertStackRequest) ProtoReflect

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

func (*UpsertStackRequest) Reset

func (x *UpsertStackRequest) Reset()

func (*UpsertStackRequest) String

func (x *UpsertStackRequest) String() string

type UpsertStackResponse

type UpsertStackResponse struct {
	State *deployer_pb.StackState `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertStackResponse) Descriptor deprecated

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

Deprecated: Use UpsertStackResponse.ProtoReflect.Descriptor instead.

func (*UpsertStackResponse) GetState

func (*UpsertStackResponse) ProtoMessage

func (*UpsertStackResponse) ProtoMessage()

func (*UpsertStackResponse) ProtoReflect

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

func (*UpsertStackResponse) Reset

func (x *UpsertStackResponse) Reset()

func (*UpsertStackResponse) String

func (x *UpsertStackResponse) String() string

Jump to

Keyboard shortcuts

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