pipedservice

package
v0.47.1 Latest Latest
Warning

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

Go to latest
Published: Apr 22, 2024 License: Apache-2.0 Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ListOrder_name = map[int32]string{
		0: "NONE",
		1: "ASC",
		2: "DESC",
	}
	ListOrder_value = map[string]int32{
		"NONE": 0,
		"ASC":  1,
		"DESC": 2,
	}
)

Enum value maps for ListOrder.

View Source
var (
	ListEventsRequest_Status_name = map[int32]string{
		0: "ALL",
		1: "NOT_HANDLED",
		2: "SUCCESS",
		3: "FAILURE",
		4: "OUTDATED",
	}
	ListEventsRequest_Status_value = map[string]int32{
		"ALL":         0,
		"NOT_HANDLED": 1,
		"SUCCESS":     2,
		"FAILURE":     3,
		"OUTDATED":    4,
	}
)

Enum value maps for ListEventsRequest_Status.

View Source
var File_pkg_app_server_service_pipedservice_service_proto protoreflect.FileDescriptor
View Source
var PipedService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "grpc.service.pipedservice.PipedService",
	HandlerType: (*PipedServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReportStat",
			Handler:    _PipedService_ReportStat_Handler,
		},
		{
			MethodName: "ReportPipedMeta",
			Handler:    _PipedService_ReportPipedMeta_Handler,
		},
		{
			MethodName: "ListApplications",
			Handler:    _PipedService_ListApplications_Handler,
		},
		{
			MethodName: "ReportApplicationSyncState",
			Handler:    _PipedService_ReportApplicationSyncState_Handler,
		},
		{
			MethodName: "ReportApplicationDeployingStatus",
			Handler:    _PipedService_ReportApplicationDeployingStatus_Handler,
		},
		{
			MethodName: "ReportApplicationMostRecentDeployment",
			Handler:    _PipedService_ReportApplicationMostRecentDeployment_Handler,
		},
		{
			MethodName: "GetApplicationMostRecentDeployment",
			Handler:    _PipedService_GetApplicationMostRecentDeployment_Handler,
		},
		{
			MethodName: "GetDeployment",
			Handler:    _PipedService_GetDeployment_Handler,
		},
		{
			MethodName: "ListNotCompletedDeployments",
			Handler:    _PipedService_ListNotCompletedDeployments_Handler,
		},
		{
			MethodName: "CreateDeployment",
			Handler:    _PipedService_CreateDeployment_Handler,
		},
		{
			MethodName: "ReportDeploymentPlanned",
			Handler:    _PipedService_ReportDeploymentPlanned_Handler,
		},
		{
			MethodName: "ReportDeploymentStatusChanged",
			Handler:    _PipedService_ReportDeploymentStatusChanged_Handler,
		},
		{
			MethodName: "ReportDeploymentCompleted",
			Handler:    _PipedService_ReportDeploymentCompleted_Handler,
		},
		{
			MethodName: "SaveDeploymentMetadata",
			Handler:    _PipedService_SaveDeploymentMetadata_Handler,
		},
		{
			MethodName: "SaveStageMetadata",
			Handler:    _PipedService_SaveStageMetadata_Handler,
		},
		{
			MethodName: "ReportStageLogs",
			Handler:    _PipedService_ReportStageLogs_Handler,
		},
		{
			MethodName: "ReportStageLogsFromLastCheckpoint",
			Handler:    _PipedService_ReportStageLogsFromLastCheckpoint_Handler,
		},
		{
			MethodName: "ReportStageStatusChanged",
			Handler:    _PipedService_ReportStageStatusChanged_Handler,
		},
		{
			MethodName: "ListUnhandledCommands",
			Handler:    _PipedService_ListUnhandledCommands_Handler,
		},
		{
			MethodName: "ReportCommandHandled",
			Handler:    _PipedService_ReportCommandHandled_Handler,
		},
		{
			MethodName: "ReportApplicationLiveState",
			Handler:    _PipedService_ReportApplicationLiveState_Handler,
		},
		{
			MethodName: "ReportApplicationLiveStateEvents",
			Handler:    _PipedService_ReportApplicationLiveStateEvents_Handler,
		},
		{
			MethodName: "GetLatestEvent",
			Handler:    _PipedService_GetLatestEvent_Handler,
		},
		{
			MethodName: "ListEvents",
			Handler:    _PipedService_ListEvents_Handler,
		},
		{
			MethodName: "ReportEventsHandled",
			Handler:    _PipedService_ReportEventsHandled_Handler,
		},
		{
			MethodName: "ReportEventStatuses",
			Handler:    _PipedService_ReportEventStatuses_Handler,
		},
		{
			MethodName: "GetLatestAnalysisResult",
			Handler:    _PipedService_GetLatestAnalysisResult_Handler,
		},
		{
			MethodName: "PutLatestAnalysisResult",
			Handler:    _PipedService_PutLatestAnalysisResult_Handler,
		},
		{
			MethodName: "GetDesiredVersion",
			Handler:    _PipedService_GetDesiredVersion_Handler,
		},
		{
			MethodName: "UpdateApplicationConfigurations",
			Handler:    _PipedService_UpdateApplicationConfigurations_Handler,
		},
		{
			MethodName: "ReportUnregisteredApplicationConfigurations",
			Handler:    _PipedService_ReportUnregisteredApplicationConfigurations_Handler,
		},
		{
			MethodName: "CreateDeploymentChain",
			Handler:    _PipedService_CreateDeploymentChain_Handler,
		},
		{
			MethodName: "InChainDeploymentPlannable",
			Handler:    _PipedService_InChainDeploymentPlannable_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "pkg/app/server/service/pipedservice/service.proto",
}

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

Functions

func NewRetry

func NewRetry(maxRetries int) backoff.Retry

NewRetry returns a new backoff.Retry for piped API caller. 0s 997.867435ms 2.015381172s 3.485134345s 4.389600179s 18.118099328s 48.73058264s

func RegisterPipedServiceServer added in v0.27.0

func RegisterPipedServiceServer(s grpc.ServiceRegistrar, srv PipedServiceServer)

func Retriable

func Retriable(err error) bool

Retriable checks whether the caller should retry the api call for the given error.

Types

type Client

type Client interface {
	PipedServiceClient
	Close() error
}

func NewClient

func NewClient(ctx context.Context, addr string, opts ...rpcclient.DialOption) (Client, error)

type CreateDeploymentChainRequest added in v0.27.0

type CreateDeploymentChainRequest struct {
	FirstDeployment *model.Deployment                                  `protobuf:"bytes,1,opt,name=first_deployment,json=firstDeployment,proto3" json:"first_deployment,omitempty"`
	Matchers        []*CreateDeploymentChainRequest_ApplicationMatcher `protobuf:"bytes,2,rep,name=matchers,proto3" json:"matchers,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDeploymentChainRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use CreateDeploymentChainRequest.ProtoReflect.Descriptor instead.

func (*CreateDeploymentChainRequest) GetFirstDeployment added in v0.27.0

func (x *CreateDeploymentChainRequest) GetFirstDeployment() *model.Deployment

func (*CreateDeploymentChainRequest) GetMatchers added in v0.27.0

func (*CreateDeploymentChainRequest) ProtoMessage added in v0.27.0

func (*CreateDeploymentChainRequest) ProtoMessage()

func (*CreateDeploymentChainRequest) ProtoReflect added in v0.27.0

func (*CreateDeploymentChainRequest) Reset added in v0.27.0

func (x *CreateDeploymentChainRequest) Reset()

func (*CreateDeploymentChainRequest) String added in v0.27.0

func (*CreateDeploymentChainRequest) Validate added in v0.27.0

func (m *CreateDeploymentChainRequest) Validate() error

Validate checks the field values on CreateDeploymentChainRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDeploymentChainRequest) ValidateAll added in v0.27.0

func (m *CreateDeploymentChainRequest) ValidateAll() error

ValidateAll checks the field values on CreateDeploymentChainRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDeploymentChainRequestMultiError, or nil if none found.

type CreateDeploymentChainRequestMultiError added in v0.27.0

type CreateDeploymentChainRequestMultiError []error

CreateDeploymentChainRequestMultiError is an error wrapping multiple validation errors returned by CreateDeploymentChainRequest.ValidateAll() if the designated constraints aren't met.

func (CreateDeploymentChainRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (CreateDeploymentChainRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type CreateDeploymentChainRequestValidationError added in v0.27.0

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

CreateDeploymentChainRequestValidationError is the validation error returned by CreateDeploymentChainRequest.Validate if the designated constraints aren't met.

func (CreateDeploymentChainRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (CreateDeploymentChainRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (CreateDeploymentChainRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (CreateDeploymentChainRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (CreateDeploymentChainRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (CreateDeploymentChainRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type CreateDeploymentChainRequest_ApplicationMatcher added in v0.27.0

type CreateDeploymentChainRequest_ApplicationMatcher struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The kind is one of: KUBERNETES, TERRAFORM, CLOUDRUN, LAMBDA, ECS.
	// This kind will be cast to model.ApplicationKind and we use string to use
	// empty string as default value in case this matcher field is not set.
	Kind   string            `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

Note: The matcher use AND operator to merge all conditions used to determine which apps should be trigger as node in chain.

func (*CreateDeploymentChainRequest_ApplicationMatcher) Descriptor deprecated added in v0.27.0

Deprecated: Use CreateDeploymentChainRequest_ApplicationMatcher.ProtoReflect.Descriptor instead.

func (*CreateDeploymentChainRequest_ApplicationMatcher) GetKind added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) GetLabels added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) GetName added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) ProtoMessage added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) ProtoReflect added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) Reset added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) String added in v0.27.0

func (*CreateDeploymentChainRequest_ApplicationMatcher) Validate added in v0.27.0

Validate checks the field values on CreateDeploymentChainRequest_ApplicationMatcher with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDeploymentChainRequest_ApplicationMatcher) ValidateAll added in v0.27.0

ValidateAll checks the field values on CreateDeploymentChainRequest_ApplicationMatcher with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDeploymentChainRequest_ApplicationMatcherMultiError, or nil if none found.

type CreateDeploymentChainRequest_ApplicationMatcherMultiError added in v0.27.0

type CreateDeploymentChainRequest_ApplicationMatcherMultiError []error

CreateDeploymentChainRequest_ApplicationMatcherMultiError is an error wrapping multiple validation errors returned by CreateDeploymentChainRequest_ApplicationMatcher.ValidateAll() if the designated constraints aren't met.

func (CreateDeploymentChainRequest_ApplicationMatcherMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (CreateDeploymentChainRequest_ApplicationMatcherMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type CreateDeploymentChainRequest_ApplicationMatcherValidationError added in v0.27.0

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

CreateDeploymentChainRequest_ApplicationMatcherValidationError is the validation error returned by CreateDeploymentChainRequest_ApplicationMatcher.Validate if the designated constraints aren't met.

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) Field added in v0.27.0

Field function returns field value.

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) Key added in v0.27.0

Key function returns key value.

func (CreateDeploymentChainRequest_ApplicationMatcherValidationError) Reason added in v0.27.0

Reason function returns reason value.

type CreateDeploymentChainResponse added in v0.27.0

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

func (*CreateDeploymentChainResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use CreateDeploymentChainResponse.ProtoReflect.Descriptor instead.

func (*CreateDeploymentChainResponse) ProtoMessage added in v0.27.0

func (*CreateDeploymentChainResponse) ProtoMessage()

func (*CreateDeploymentChainResponse) ProtoReflect added in v0.27.0

func (*CreateDeploymentChainResponse) Reset added in v0.27.0

func (x *CreateDeploymentChainResponse) Reset()

func (*CreateDeploymentChainResponse) String added in v0.27.0

func (*CreateDeploymentChainResponse) Validate added in v0.27.0

func (m *CreateDeploymentChainResponse) Validate() error

Validate checks the field values on CreateDeploymentChainResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDeploymentChainResponse) ValidateAll added in v0.27.0

func (m *CreateDeploymentChainResponse) ValidateAll() error

ValidateAll checks the field values on CreateDeploymentChainResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDeploymentChainResponseMultiError, or nil if none found.

type CreateDeploymentChainResponseMultiError added in v0.27.0

type CreateDeploymentChainResponseMultiError []error

CreateDeploymentChainResponseMultiError is an error wrapping multiple validation errors returned by CreateDeploymentChainResponse.ValidateAll() if the designated constraints aren't met.

func (CreateDeploymentChainResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (CreateDeploymentChainResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type CreateDeploymentChainResponseValidationError added in v0.27.0

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

CreateDeploymentChainResponseValidationError is the validation error returned by CreateDeploymentChainResponse.Validate if the designated constraints aren't met.

func (CreateDeploymentChainResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (CreateDeploymentChainResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (CreateDeploymentChainResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (CreateDeploymentChainResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (CreateDeploymentChainResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (CreateDeploymentChainResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type CreateDeploymentRequest added in v0.27.0

type CreateDeploymentRequest struct {
	Deployment *model.Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDeploymentRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use CreateDeploymentRequest.ProtoReflect.Descriptor instead.

func (*CreateDeploymentRequest) GetDeployment added in v0.27.0

func (x *CreateDeploymentRequest) GetDeployment() *model.Deployment

func (*CreateDeploymentRequest) ProtoMessage added in v0.27.0

func (*CreateDeploymentRequest) ProtoMessage()

func (*CreateDeploymentRequest) ProtoReflect added in v0.27.0

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

func (*CreateDeploymentRequest) Reset added in v0.27.0

func (x *CreateDeploymentRequest) Reset()

func (*CreateDeploymentRequest) String added in v0.27.0

func (x *CreateDeploymentRequest) String() string

func (*CreateDeploymentRequest) Validate added in v0.27.0

func (m *CreateDeploymentRequest) Validate() error

Validate checks the field values on CreateDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDeploymentRequest) ValidateAll added in v0.27.0

func (m *CreateDeploymentRequest) ValidateAll() error

ValidateAll checks the field values on CreateDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDeploymentRequestMultiError, or nil if none found.

type CreateDeploymentRequestMultiError added in v0.27.0

type CreateDeploymentRequestMultiError []error

CreateDeploymentRequestMultiError is an error wrapping multiple validation errors returned by CreateDeploymentRequest.ValidateAll() if the designated constraints aren't met.

func (CreateDeploymentRequestMultiError) AllErrors added in v0.27.0

func (m CreateDeploymentRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateDeploymentRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type CreateDeploymentRequestValidationError added in v0.27.0

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

CreateDeploymentRequestValidationError is the validation error returned by CreateDeploymentRequest.Validate if the designated constraints aren't met.

func (CreateDeploymentRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (CreateDeploymentRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (CreateDeploymentRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (CreateDeploymentRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (CreateDeploymentRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (CreateDeploymentRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type CreateDeploymentResponse added in v0.27.0

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

func (*CreateDeploymentResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use CreateDeploymentResponse.ProtoReflect.Descriptor instead.

func (*CreateDeploymentResponse) ProtoMessage added in v0.27.0

func (*CreateDeploymentResponse) ProtoMessage()

func (*CreateDeploymentResponse) ProtoReflect added in v0.27.0

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

func (*CreateDeploymentResponse) Reset added in v0.27.0

func (x *CreateDeploymentResponse) Reset()

func (*CreateDeploymentResponse) String added in v0.27.0

func (x *CreateDeploymentResponse) String() string

func (*CreateDeploymentResponse) Validate added in v0.27.0

func (m *CreateDeploymentResponse) Validate() error

Validate checks the field values on CreateDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDeploymentResponse) ValidateAll added in v0.27.0

func (m *CreateDeploymentResponse) ValidateAll() error

ValidateAll checks the field values on CreateDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDeploymentResponseMultiError, or nil if none found.

type CreateDeploymentResponseMultiError added in v0.27.0

type CreateDeploymentResponseMultiError []error

CreateDeploymentResponseMultiError is an error wrapping multiple validation errors returned by CreateDeploymentResponse.ValidateAll() if the designated constraints aren't met.

func (CreateDeploymentResponseMultiError) AllErrors added in v0.27.0

func (m CreateDeploymentResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateDeploymentResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type CreateDeploymentResponseValidationError added in v0.27.0

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

CreateDeploymentResponseValidationError is the validation error returned by CreateDeploymentResponse.Validate if the designated constraints aren't met.

func (CreateDeploymentResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (CreateDeploymentResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (CreateDeploymentResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (CreateDeploymentResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (CreateDeploymentResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (CreateDeploymentResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetApplicationMostRecentDeploymentRequest added in v0.27.0

type GetApplicationMostRecentDeploymentRequest struct {
	ApplicationId string                 `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	Status        model.DeploymentStatus `protobuf:"varint,2,opt,name=status,proto3,enum=model.DeploymentStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMostRecentDeploymentRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetApplicationMostRecentDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetApplicationMostRecentDeploymentRequest) GetApplicationId added in v0.27.0

func (x *GetApplicationMostRecentDeploymentRequest) GetApplicationId() string

func (*GetApplicationMostRecentDeploymentRequest) GetStatus added in v0.27.0

func (*GetApplicationMostRecentDeploymentRequest) ProtoMessage added in v0.27.0

func (*GetApplicationMostRecentDeploymentRequest) ProtoReflect added in v0.27.0

func (*GetApplicationMostRecentDeploymentRequest) Reset added in v0.27.0

func (*GetApplicationMostRecentDeploymentRequest) String added in v0.27.0

func (*GetApplicationMostRecentDeploymentRequest) Validate added in v0.27.0

Validate checks the field values on GetApplicationMostRecentDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMostRecentDeploymentRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on GetApplicationMostRecentDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMostRecentDeploymentRequestMultiError, or nil if none found.

type GetApplicationMostRecentDeploymentRequestMultiError added in v0.27.0

type GetApplicationMostRecentDeploymentRequestMultiError []error

GetApplicationMostRecentDeploymentRequestMultiError is an error wrapping multiple validation errors returned by GetApplicationMostRecentDeploymentRequest.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMostRecentDeploymentRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetApplicationMostRecentDeploymentRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMostRecentDeploymentRequestValidationError added in v0.27.0

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

GetApplicationMostRecentDeploymentRequestValidationError is the validation error returned by GetApplicationMostRecentDeploymentRequest.Validate if the designated constraints aren't met.

func (GetApplicationMostRecentDeploymentRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetApplicationMostRecentDeploymentRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetApplicationMostRecentDeploymentRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetApplicationMostRecentDeploymentRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetApplicationMostRecentDeploymentRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetApplicationMostRecentDeploymentRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetApplicationMostRecentDeploymentResponse added in v0.27.0

type GetApplicationMostRecentDeploymentResponse struct {
	Deployment *model.ApplicationDeploymentReference `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMostRecentDeploymentResponse) Descriptor deprecated added in v0.27.0

Deprecated: Use GetApplicationMostRecentDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetApplicationMostRecentDeploymentResponse) GetDeployment added in v0.27.0

func (*GetApplicationMostRecentDeploymentResponse) ProtoMessage added in v0.27.0

func (*GetApplicationMostRecentDeploymentResponse) ProtoReflect added in v0.27.0

func (*GetApplicationMostRecentDeploymentResponse) Reset added in v0.27.0

func (*GetApplicationMostRecentDeploymentResponse) String added in v0.27.0

func (*GetApplicationMostRecentDeploymentResponse) Validate added in v0.27.0

Validate checks the field values on GetApplicationMostRecentDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMostRecentDeploymentResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on GetApplicationMostRecentDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMostRecentDeploymentResponseMultiError, or nil if none found.

type GetApplicationMostRecentDeploymentResponseMultiError added in v0.27.0

type GetApplicationMostRecentDeploymentResponseMultiError []error

GetApplicationMostRecentDeploymentResponseMultiError is an error wrapping multiple validation errors returned by GetApplicationMostRecentDeploymentResponse.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMostRecentDeploymentResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetApplicationMostRecentDeploymentResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMostRecentDeploymentResponseValidationError added in v0.27.0

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

GetApplicationMostRecentDeploymentResponseValidationError is the validation error returned by GetApplicationMostRecentDeploymentResponse.Validate if the designated constraints aren't met.

func (GetApplicationMostRecentDeploymentResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetApplicationMostRecentDeploymentResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetApplicationMostRecentDeploymentResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetApplicationMostRecentDeploymentResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetApplicationMostRecentDeploymentResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetApplicationMostRecentDeploymentResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetDeploymentRequest added in v0.27.0

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

func (*GetDeploymentRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) GetId added in v0.27.0

func (x *GetDeploymentRequest) GetId() string

func (*GetDeploymentRequest) ProtoMessage added in v0.27.0

func (*GetDeploymentRequest) ProtoMessage()

func (*GetDeploymentRequest) ProtoReflect added in v0.27.0

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

func (*GetDeploymentRequest) Reset added in v0.27.0

func (x *GetDeploymentRequest) Reset()

func (*GetDeploymentRequest) String added in v0.27.0

func (x *GetDeploymentRequest) String() string

func (*GetDeploymentRequest) Validate added in v0.27.0

func (m *GetDeploymentRequest) Validate() error

Validate checks the field values on GetDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeploymentRequest) ValidateAll added in v0.27.0

func (m *GetDeploymentRequest) ValidateAll() error

ValidateAll checks the field values on GetDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeploymentRequestMultiError, or nil if none found.

type GetDeploymentRequestMultiError added in v0.27.0

type GetDeploymentRequestMultiError []error

GetDeploymentRequestMultiError is an error wrapping multiple validation errors returned by GetDeploymentRequest.ValidateAll() if the designated constraints aren't met.

func (GetDeploymentRequestMultiError) AllErrors added in v0.27.0

func (m GetDeploymentRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDeploymentRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetDeploymentRequestValidationError added in v0.27.0

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

GetDeploymentRequestValidationError is the validation error returned by GetDeploymentRequest.Validate if the designated constraints aren't met.

func (GetDeploymentRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetDeploymentRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetDeploymentRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetDeploymentRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetDeploymentRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetDeploymentRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetDeploymentResponse added in v0.27.0

type GetDeploymentResponse struct {
	Deployment *model.Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentResponse) GetDeployment added in v0.27.0

func (x *GetDeploymentResponse) GetDeployment() *model.Deployment

func (*GetDeploymentResponse) ProtoMessage added in v0.27.0

func (*GetDeploymentResponse) ProtoMessage()

func (*GetDeploymentResponse) ProtoReflect added in v0.27.0

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

func (*GetDeploymentResponse) Reset added in v0.27.0

func (x *GetDeploymentResponse) Reset()

func (*GetDeploymentResponse) String added in v0.27.0

func (x *GetDeploymentResponse) String() string

func (*GetDeploymentResponse) Validate added in v0.27.0

func (m *GetDeploymentResponse) Validate() error

Validate checks the field values on GetDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeploymentResponse) ValidateAll added in v0.27.0

func (m *GetDeploymentResponse) ValidateAll() error

ValidateAll checks the field values on GetDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeploymentResponseMultiError, or nil if none found.

type GetDeploymentResponseMultiError added in v0.27.0

type GetDeploymentResponseMultiError []error

GetDeploymentResponseMultiError is an error wrapping multiple validation errors returned by GetDeploymentResponse.ValidateAll() if the designated constraints aren't met.

func (GetDeploymentResponseMultiError) AllErrors added in v0.27.0

func (m GetDeploymentResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDeploymentResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetDeploymentResponseValidationError added in v0.27.0

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

GetDeploymentResponseValidationError is the validation error returned by GetDeploymentResponse.Validate if the designated constraints aren't met.

func (GetDeploymentResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetDeploymentResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetDeploymentResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetDeploymentResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetDeploymentResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetDeploymentResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetDesiredVersionRequest added in v0.27.0

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

func (*GetDesiredVersionRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetDesiredVersionRequest.ProtoReflect.Descriptor instead.

func (*GetDesiredVersionRequest) ProtoMessage added in v0.27.0

func (*GetDesiredVersionRequest) ProtoMessage()

func (*GetDesiredVersionRequest) ProtoReflect added in v0.27.0

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

func (*GetDesiredVersionRequest) Reset added in v0.27.0

func (x *GetDesiredVersionRequest) Reset()

func (*GetDesiredVersionRequest) String added in v0.27.0

func (x *GetDesiredVersionRequest) String() string

func (*GetDesiredVersionRequest) Validate added in v0.27.0

func (m *GetDesiredVersionRequest) Validate() error

Validate checks the field values on GetDesiredVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDesiredVersionRequest) ValidateAll added in v0.27.0

func (m *GetDesiredVersionRequest) ValidateAll() error

ValidateAll checks the field values on GetDesiredVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDesiredVersionRequestMultiError, or nil if none found.

type GetDesiredVersionRequestMultiError added in v0.27.0

type GetDesiredVersionRequestMultiError []error

GetDesiredVersionRequestMultiError is an error wrapping multiple validation errors returned by GetDesiredVersionRequest.ValidateAll() if the designated constraints aren't met.

func (GetDesiredVersionRequestMultiError) AllErrors added in v0.27.0

func (m GetDesiredVersionRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDesiredVersionRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetDesiredVersionRequestValidationError added in v0.27.0

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

GetDesiredVersionRequestValidationError is the validation error returned by GetDesiredVersionRequest.Validate if the designated constraints aren't met.

func (GetDesiredVersionRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetDesiredVersionRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetDesiredVersionRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetDesiredVersionRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetDesiredVersionRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetDesiredVersionRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetDesiredVersionResponse added in v0.27.0

type GetDesiredVersionResponse struct {
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDesiredVersionResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetDesiredVersionResponse.ProtoReflect.Descriptor instead.

func (*GetDesiredVersionResponse) GetVersion added in v0.27.0

func (x *GetDesiredVersionResponse) GetVersion() string

func (*GetDesiredVersionResponse) ProtoMessage added in v0.27.0

func (*GetDesiredVersionResponse) ProtoMessage()

func (*GetDesiredVersionResponse) ProtoReflect added in v0.27.0

func (*GetDesiredVersionResponse) Reset added in v0.27.0

func (x *GetDesiredVersionResponse) Reset()

func (*GetDesiredVersionResponse) String added in v0.27.0

func (x *GetDesiredVersionResponse) String() string

func (*GetDesiredVersionResponse) Validate added in v0.27.0

func (m *GetDesiredVersionResponse) Validate() error

Validate checks the field values on GetDesiredVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDesiredVersionResponse) ValidateAll added in v0.27.0

func (m *GetDesiredVersionResponse) ValidateAll() error

ValidateAll checks the field values on GetDesiredVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDesiredVersionResponseMultiError, or nil if none found.

type GetDesiredVersionResponseMultiError added in v0.27.0

type GetDesiredVersionResponseMultiError []error

GetDesiredVersionResponseMultiError is an error wrapping multiple validation errors returned by GetDesiredVersionResponse.ValidateAll() if the designated constraints aren't met.

func (GetDesiredVersionResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetDesiredVersionResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetDesiredVersionResponseValidationError added in v0.27.0

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

GetDesiredVersionResponseValidationError is the validation error returned by GetDesiredVersionResponse.Validate if the designated constraints aren't met.

func (GetDesiredVersionResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetDesiredVersionResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetDesiredVersionResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetDesiredVersionResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetDesiredVersionResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetDesiredVersionResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetLatestAnalysisResultRequest added in v0.27.0

type GetLatestAnalysisResultRequest struct {
	ApplicationId string `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestAnalysisResultRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetLatestAnalysisResultRequest.ProtoReflect.Descriptor instead.

func (*GetLatestAnalysisResultRequest) GetApplicationId added in v0.27.0

func (x *GetLatestAnalysisResultRequest) GetApplicationId() string

func (*GetLatestAnalysisResultRequest) ProtoMessage added in v0.27.0

func (*GetLatestAnalysisResultRequest) ProtoMessage()

func (*GetLatestAnalysisResultRequest) ProtoReflect added in v0.27.0

func (*GetLatestAnalysisResultRequest) Reset added in v0.27.0

func (x *GetLatestAnalysisResultRequest) Reset()

func (*GetLatestAnalysisResultRequest) String added in v0.27.0

func (*GetLatestAnalysisResultRequest) Validate added in v0.27.0

func (m *GetLatestAnalysisResultRequest) Validate() error

Validate checks the field values on GetLatestAnalysisResultRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestAnalysisResultRequest) ValidateAll added in v0.27.0

func (m *GetLatestAnalysisResultRequest) ValidateAll() error

ValidateAll checks the field values on GetLatestAnalysisResultRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestAnalysisResultRequestMultiError, or nil if none found.

type GetLatestAnalysisResultRequestMultiError added in v0.27.0

type GetLatestAnalysisResultRequestMultiError []error

GetLatestAnalysisResultRequestMultiError is an error wrapping multiple validation errors returned by GetLatestAnalysisResultRequest.ValidateAll() if the designated constraints aren't met.

func (GetLatestAnalysisResultRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetLatestAnalysisResultRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetLatestAnalysisResultRequestValidationError added in v0.27.0

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

GetLatestAnalysisResultRequestValidationError is the validation error returned by GetLatestAnalysisResultRequest.Validate if the designated constraints aren't met.

func (GetLatestAnalysisResultRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetLatestAnalysisResultRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetLatestAnalysisResultRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetLatestAnalysisResultRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetLatestAnalysisResultRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetLatestAnalysisResultRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetLatestAnalysisResultResponse added in v0.27.0

type GetLatestAnalysisResultResponse struct {
	AnalysisResult *model.AnalysisResult `protobuf:"bytes,1,opt,name=analysis_result,json=analysisResult,proto3" json:"analysis_result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestAnalysisResultResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetLatestAnalysisResultResponse.ProtoReflect.Descriptor instead.

func (*GetLatestAnalysisResultResponse) GetAnalysisResult added in v0.27.0

func (x *GetLatestAnalysisResultResponse) GetAnalysisResult() *model.AnalysisResult

func (*GetLatestAnalysisResultResponse) ProtoMessage added in v0.27.0

func (*GetLatestAnalysisResultResponse) ProtoMessage()

func (*GetLatestAnalysisResultResponse) ProtoReflect added in v0.27.0

func (*GetLatestAnalysisResultResponse) Reset added in v0.27.0

func (*GetLatestAnalysisResultResponse) String added in v0.27.0

func (*GetLatestAnalysisResultResponse) Validate added in v0.27.0

func (m *GetLatestAnalysisResultResponse) Validate() error

Validate checks the field values on GetLatestAnalysisResultResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestAnalysisResultResponse) ValidateAll added in v0.27.0

func (m *GetLatestAnalysisResultResponse) ValidateAll() error

ValidateAll checks the field values on GetLatestAnalysisResultResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestAnalysisResultResponseMultiError, or nil if none found.

type GetLatestAnalysisResultResponseMultiError added in v0.27.0

type GetLatestAnalysisResultResponseMultiError []error

GetLatestAnalysisResultResponseMultiError is an error wrapping multiple validation errors returned by GetLatestAnalysisResultResponse.ValidateAll() if the designated constraints aren't met.

func (GetLatestAnalysisResultResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetLatestAnalysisResultResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetLatestAnalysisResultResponseValidationError added in v0.27.0

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

GetLatestAnalysisResultResponseValidationError is the validation error returned by GetLatestAnalysisResultResponse.Validate if the designated constraints aren't met.

func (GetLatestAnalysisResultResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetLatestAnalysisResultResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetLatestAnalysisResultResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetLatestAnalysisResultResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetLatestAnalysisResultResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetLatestAnalysisResultResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetLatestEventRequest added in v0.27.0

type GetLatestEventRequest struct {
	Name   string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetLatestEventRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetLatestEventRequest.ProtoReflect.Descriptor instead.

func (*GetLatestEventRequest) GetLabels added in v0.27.0

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

func (*GetLatestEventRequest) GetName added in v0.27.0

func (x *GetLatestEventRequest) GetName() string

func (*GetLatestEventRequest) ProtoMessage added in v0.27.0

func (*GetLatestEventRequest) ProtoMessage()

func (*GetLatestEventRequest) ProtoReflect added in v0.27.0

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

func (*GetLatestEventRequest) Reset added in v0.27.0

func (x *GetLatestEventRequest) Reset()

func (*GetLatestEventRequest) String added in v0.27.0

func (x *GetLatestEventRequest) String() string

func (*GetLatestEventRequest) Validate added in v0.27.0

func (m *GetLatestEventRequest) Validate() error

Validate checks the field values on GetLatestEventRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestEventRequest) ValidateAll added in v0.27.0

func (m *GetLatestEventRequest) ValidateAll() error

ValidateAll checks the field values on GetLatestEventRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestEventRequestMultiError, or nil if none found.

type GetLatestEventRequestMultiError added in v0.27.0

type GetLatestEventRequestMultiError []error

GetLatestEventRequestMultiError is an error wrapping multiple validation errors returned by GetLatestEventRequest.ValidateAll() if the designated constraints aren't met.

func (GetLatestEventRequestMultiError) AllErrors added in v0.27.0

func (m GetLatestEventRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetLatestEventRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetLatestEventRequestValidationError added in v0.27.0

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

GetLatestEventRequestValidationError is the validation error returned by GetLatestEventRequest.Validate if the designated constraints aren't met.

func (GetLatestEventRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetLatestEventRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetLatestEventRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetLatestEventRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetLatestEventRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetLatestEventRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetLatestEventResponse added in v0.27.0

type GetLatestEventResponse struct {
	Event *model.Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestEventResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use GetLatestEventResponse.ProtoReflect.Descriptor instead.

func (*GetLatestEventResponse) GetEvent added in v0.27.0

func (x *GetLatestEventResponse) GetEvent() *model.Event

func (*GetLatestEventResponse) ProtoMessage added in v0.27.0

func (*GetLatestEventResponse) ProtoMessage()

func (*GetLatestEventResponse) ProtoReflect added in v0.27.0

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

func (*GetLatestEventResponse) Reset added in v0.27.0

func (x *GetLatestEventResponse) Reset()

func (*GetLatestEventResponse) String added in v0.27.0

func (x *GetLatestEventResponse) String() string

func (*GetLatestEventResponse) Validate added in v0.27.0

func (m *GetLatestEventResponse) Validate() error

Validate checks the field values on GetLatestEventResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLatestEventResponse) ValidateAll added in v0.27.0

func (m *GetLatestEventResponse) ValidateAll() error

ValidateAll checks the field values on GetLatestEventResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLatestEventResponseMultiError, or nil if none found.

type GetLatestEventResponseMultiError added in v0.27.0

type GetLatestEventResponseMultiError []error

GetLatestEventResponseMultiError is an error wrapping multiple validation errors returned by GetLatestEventResponse.ValidateAll() if the designated constraints aren't met.

func (GetLatestEventResponseMultiError) AllErrors added in v0.27.0

func (m GetLatestEventResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetLatestEventResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type GetLatestEventResponseValidationError added in v0.27.0

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

GetLatestEventResponseValidationError is the validation error returned by GetLatestEventResponse.Validate if the designated constraints aren't met.

func (GetLatestEventResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetLatestEventResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetLatestEventResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetLatestEventResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetLatestEventResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetLatestEventResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type InChainDeploymentPlannableRequest added in v0.27.0

type InChainDeploymentPlannableRequest struct {
	DeploymentId              string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	DeploymentChainId         string `protobuf:"bytes,2,opt,name=deployment_chain_id,json=deploymentChainId,proto3" json:"deployment_chain_id,omitempty"`
	DeploymentChainBlockIndex uint32 `` /* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*InChainDeploymentPlannableRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use InChainDeploymentPlannableRequest.ProtoReflect.Descriptor instead.

func (*InChainDeploymentPlannableRequest) GetDeploymentChainBlockIndex added in v0.27.0

func (x *InChainDeploymentPlannableRequest) GetDeploymentChainBlockIndex() uint32

func (*InChainDeploymentPlannableRequest) GetDeploymentChainId added in v0.27.0

func (x *InChainDeploymentPlannableRequest) GetDeploymentChainId() string

func (*InChainDeploymentPlannableRequest) GetDeploymentId added in v0.27.0

func (x *InChainDeploymentPlannableRequest) GetDeploymentId() string

func (*InChainDeploymentPlannableRequest) ProtoMessage added in v0.27.0

func (*InChainDeploymentPlannableRequest) ProtoMessage()

func (*InChainDeploymentPlannableRequest) ProtoReflect added in v0.27.0

func (*InChainDeploymentPlannableRequest) Reset added in v0.27.0

func (*InChainDeploymentPlannableRequest) String added in v0.27.0

func (*InChainDeploymentPlannableRequest) Validate added in v0.27.0

Validate checks the field values on InChainDeploymentPlannableRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InChainDeploymentPlannableRequest) ValidateAll added in v0.27.0

func (m *InChainDeploymentPlannableRequest) ValidateAll() error

ValidateAll checks the field values on InChainDeploymentPlannableRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InChainDeploymentPlannableRequestMultiError, or nil if none found.

type InChainDeploymentPlannableRequestMultiError added in v0.27.0

type InChainDeploymentPlannableRequestMultiError []error

InChainDeploymentPlannableRequestMultiError is an error wrapping multiple validation errors returned by InChainDeploymentPlannableRequest.ValidateAll() if the designated constraints aren't met.

func (InChainDeploymentPlannableRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (InChainDeploymentPlannableRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type InChainDeploymentPlannableRequestValidationError added in v0.27.0

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

InChainDeploymentPlannableRequestValidationError is the validation error returned by InChainDeploymentPlannableRequest.Validate if the designated constraints aren't met.

func (InChainDeploymentPlannableRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (InChainDeploymentPlannableRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (InChainDeploymentPlannableRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (InChainDeploymentPlannableRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (InChainDeploymentPlannableRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (InChainDeploymentPlannableRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type InChainDeploymentPlannableResponse added in v0.27.0

type InChainDeploymentPlannableResponse struct {

	// plannable used to determine whether piped should start planning the given development.
	Plannable bool `protobuf:"varint,1,opt,name=plannable,proto3" json:"plannable,omitempty"`
	// cancel used to determine whether piped should cancel the given development.
	Cancel       bool   `protobuf:"varint,2,opt,name=cancel,proto3" json:"cancel,omitempty"`
	CancelReason string `protobuf:"bytes,3,opt,name=cancel_reason,json=cancelReason,proto3" json:"cancel_reason,omitempty"`
	// contains filtered or unexported fields
}

func (*InChainDeploymentPlannableResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use InChainDeploymentPlannableResponse.ProtoReflect.Descriptor instead.

func (*InChainDeploymentPlannableResponse) GetCancel added in v0.27.0

func (*InChainDeploymentPlannableResponse) GetCancelReason added in v0.27.0

func (x *InChainDeploymentPlannableResponse) GetCancelReason() string

func (*InChainDeploymentPlannableResponse) GetPlannable added in v0.27.0

func (x *InChainDeploymentPlannableResponse) GetPlannable() bool

func (*InChainDeploymentPlannableResponse) ProtoMessage added in v0.27.0

func (*InChainDeploymentPlannableResponse) ProtoMessage()

func (*InChainDeploymentPlannableResponse) ProtoReflect added in v0.27.0

func (*InChainDeploymentPlannableResponse) Reset added in v0.27.0

func (*InChainDeploymentPlannableResponse) String added in v0.27.0

func (*InChainDeploymentPlannableResponse) Validate added in v0.27.0

Validate checks the field values on InChainDeploymentPlannableResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InChainDeploymentPlannableResponse) ValidateAll added in v0.27.0

func (m *InChainDeploymentPlannableResponse) ValidateAll() error

ValidateAll checks the field values on InChainDeploymentPlannableResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InChainDeploymentPlannableResponseMultiError, or nil if none found.

type InChainDeploymentPlannableResponseMultiError added in v0.27.0

type InChainDeploymentPlannableResponseMultiError []error

InChainDeploymentPlannableResponseMultiError is an error wrapping multiple validation errors returned by InChainDeploymentPlannableResponse.ValidateAll() if the designated constraints aren't met.

func (InChainDeploymentPlannableResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (InChainDeploymentPlannableResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type InChainDeploymentPlannableResponseValidationError added in v0.27.0

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

InChainDeploymentPlannableResponseValidationError is the validation error returned by InChainDeploymentPlannableResponse.Validate if the designated constraints aren't met.

func (InChainDeploymentPlannableResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (InChainDeploymentPlannableResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (InChainDeploymentPlannableResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (InChainDeploymentPlannableResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (InChainDeploymentPlannableResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (InChainDeploymentPlannableResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListApplicationsRequest added in v0.27.0

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

func (*ListApplicationsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListApplicationsRequest.ProtoReflect.Descriptor instead.

func (*ListApplicationsRequest) ProtoMessage added in v0.27.0

func (*ListApplicationsRequest) ProtoMessage()

func (*ListApplicationsRequest) ProtoReflect added in v0.27.0

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

func (*ListApplicationsRequest) Reset added in v0.27.0

func (x *ListApplicationsRequest) Reset()

func (*ListApplicationsRequest) String added in v0.27.0

func (x *ListApplicationsRequest) String() string

func (*ListApplicationsRequest) Validate added in v0.27.0

func (m *ListApplicationsRequest) Validate() error

Validate checks the field values on ListApplicationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationsRequest) ValidateAll added in v0.27.0

func (m *ListApplicationsRequest) ValidateAll() error

ValidateAll checks the field values on ListApplicationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationsRequestMultiError, or nil if none found.

type ListApplicationsRequestMultiError added in v0.27.0

type ListApplicationsRequestMultiError []error

ListApplicationsRequestMultiError is an error wrapping multiple validation errors returned by ListApplicationsRequest.ValidateAll() if the designated constraints aren't met.

func (ListApplicationsRequestMultiError) AllErrors added in v0.27.0

func (m ListApplicationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListApplicationsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListApplicationsRequestValidationError added in v0.27.0

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

ListApplicationsRequestValidationError is the validation error returned by ListApplicationsRequest.Validate if the designated constraints aren't met.

func (ListApplicationsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListApplicationsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListApplicationsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListApplicationsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ListApplicationsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ListApplicationsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListApplicationsResponse added in v0.27.0

type ListApplicationsResponse struct {
	Applications []*model.Application `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*ListApplicationsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListApplicationsResponse.ProtoReflect.Descriptor instead.

func (*ListApplicationsResponse) GetApplications added in v0.27.0

func (x *ListApplicationsResponse) GetApplications() []*model.Application

func (*ListApplicationsResponse) ProtoMessage added in v0.27.0

func (*ListApplicationsResponse) ProtoMessage()

func (*ListApplicationsResponse) ProtoReflect added in v0.27.0

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

func (*ListApplicationsResponse) Reset added in v0.27.0

func (x *ListApplicationsResponse) Reset()

func (*ListApplicationsResponse) String added in v0.27.0

func (x *ListApplicationsResponse) String() string

func (*ListApplicationsResponse) Validate added in v0.27.0

func (m *ListApplicationsResponse) Validate() error

Validate checks the field values on ListApplicationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationsResponse) ValidateAll added in v0.27.0

func (m *ListApplicationsResponse) ValidateAll() error

ValidateAll checks the field values on ListApplicationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationsResponseMultiError, or nil if none found.

type ListApplicationsResponseMultiError added in v0.27.0

type ListApplicationsResponseMultiError []error

ListApplicationsResponseMultiError is an error wrapping multiple validation errors returned by ListApplicationsResponse.ValidateAll() if the designated constraints aren't met.

func (ListApplicationsResponseMultiError) AllErrors added in v0.27.0

func (m ListApplicationsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListApplicationsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListApplicationsResponseValidationError added in v0.27.0

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

ListApplicationsResponseValidationError is the validation error returned by ListApplicationsResponse.Validate if the designated constraints aren't met.

func (ListApplicationsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListApplicationsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListApplicationsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListApplicationsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ListApplicationsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ListApplicationsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListEventsRequest added in v0.27.0

type ListEventsRequest struct {
	From   int64                    `protobuf:"varint,1,opt,name=from,proto3" json:"from,omitempty"`
	To     int64                    `protobuf:"varint,2,opt,name=to,proto3" json:"to,omitempty"`
	Order  ListOrder                `protobuf:"varint,3,opt,name=order,proto3,enum=grpc.service.pipedservice.ListOrder" json:"order,omitempty"`
	Status ListEventsRequest_Status `protobuf:"varint,4,opt,name=status,proto3,enum=grpc.service.pipedservice.ListEventsRequest_Status" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEventsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListEventsRequest.ProtoReflect.Descriptor instead.

func (*ListEventsRequest) GetFrom added in v0.27.0

func (x *ListEventsRequest) GetFrom() int64

func (*ListEventsRequest) GetOrder added in v0.27.0

func (x *ListEventsRequest) GetOrder() ListOrder

func (*ListEventsRequest) GetStatus added in v0.27.0

func (*ListEventsRequest) GetTo added in v0.27.0

func (x *ListEventsRequest) GetTo() int64

func (*ListEventsRequest) ProtoMessage added in v0.27.0

func (*ListEventsRequest) ProtoMessage()

func (*ListEventsRequest) ProtoReflect added in v0.27.0

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

func (*ListEventsRequest) Reset added in v0.27.0

func (x *ListEventsRequest) Reset()

func (*ListEventsRequest) String added in v0.27.0

func (x *ListEventsRequest) String() string

func (*ListEventsRequest) Validate added in v0.27.0

func (m *ListEventsRequest) Validate() error

Validate checks the field values on ListEventsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListEventsRequest) ValidateAll added in v0.27.0

func (m *ListEventsRequest) ValidateAll() error

ValidateAll checks the field values on ListEventsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListEventsRequestMultiError, or nil if none found.

type ListEventsRequestMultiError added in v0.27.0

type ListEventsRequestMultiError []error

ListEventsRequestMultiError is an error wrapping multiple validation errors returned by ListEventsRequest.ValidateAll() if the designated constraints aren't met.

func (ListEventsRequestMultiError) AllErrors added in v0.27.0

func (m ListEventsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListEventsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListEventsRequestValidationError added in v0.27.0

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

ListEventsRequestValidationError is the validation error returned by ListEventsRequest.Validate if the designated constraints aren't met.

func (ListEventsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListEventsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListEventsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListEventsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ListEventsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ListEventsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListEventsRequest_Status added in v0.27.0

type ListEventsRequest_Status int32
const (
	ListEventsRequest_ALL         ListEventsRequest_Status = 0
	ListEventsRequest_NOT_HANDLED ListEventsRequest_Status = 1
	ListEventsRequest_SUCCESS     ListEventsRequest_Status = 2
	ListEventsRequest_FAILURE     ListEventsRequest_Status = 3
	ListEventsRequest_OUTDATED    ListEventsRequest_Status = 4
)

func (ListEventsRequest_Status) Descriptor added in v0.27.0

func (ListEventsRequest_Status) Enum added in v0.27.0

func (ListEventsRequest_Status) EnumDescriptor deprecated added in v0.27.0

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

Deprecated: Use ListEventsRequest_Status.Descriptor instead.

func (ListEventsRequest_Status) Number added in v0.27.0

func (ListEventsRequest_Status) String added in v0.27.0

func (x ListEventsRequest_Status) String() string

func (ListEventsRequest_Status) Type added in v0.27.0

type ListEventsResponse added in v0.27.0

type ListEventsResponse struct {
	Events []*model.Event `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*ListEventsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListEventsResponse.ProtoReflect.Descriptor instead.

func (*ListEventsResponse) GetEvents added in v0.27.0

func (x *ListEventsResponse) GetEvents() []*model.Event

func (*ListEventsResponse) ProtoMessage added in v0.27.0

func (*ListEventsResponse) ProtoMessage()

func (*ListEventsResponse) ProtoReflect added in v0.27.0

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

func (*ListEventsResponse) Reset added in v0.27.0

func (x *ListEventsResponse) Reset()

func (*ListEventsResponse) String added in v0.27.0

func (x *ListEventsResponse) String() string

func (*ListEventsResponse) Validate added in v0.27.0

func (m *ListEventsResponse) Validate() error

Validate checks the field values on ListEventsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListEventsResponse) ValidateAll added in v0.27.0

func (m *ListEventsResponse) ValidateAll() error

ValidateAll checks the field values on ListEventsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListEventsResponseMultiError, or nil if none found.

type ListEventsResponseMultiError added in v0.27.0

type ListEventsResponseMultiError []error

ListEventsResponseMultiError is an error wrapping multiple validation errors returned by ListEventsResponse.ValidateAll() if the designated constraints aren't met.

func (ListEventsResponseMultiError) AllErrors added in v0.27.0

func (m ListEventsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListEventsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListEventsResponseValidationError added in v0.27.0

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

ListEventsResponseValidationError is the validation error returned by ListEventsResponse.Validate if the designated constraints aren't met.

func (ListEventsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListEventsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListEventsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListEventsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ListEventsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ListEventsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListNotCompletedDeploymentsRequest added in v0.27.0

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

func (*ListNotCompletedDeploymentsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListNotCompletedDeploymentsRequest.ProtoReflect.Descriptor instead.

func (*ListNotCompletedDeploymentsRequest) ProtoMessage added in v0.27.0

func (*ListNotCompletedDeploymentsRequest) ProtoMessage()

func (*ListNotCompletedDeploymentsRequest) ProtoReflect added in v0.27.0

func (*ListNotCompletedDeploymentsRequest) Reset added in v0.27.0

func (*ListNotCompletedDeploymentsRequest) String added in v0.27.0

func (*ListNotCompletedDeploymentsRequest) Validate added in v0.27.0

Validate checks the field values on ListNotCompletedDeploymentsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListNotCompletedDeploymentsRequest) ValidateAll added in v0.27.0

func (m *ListNotCompletedDeploymentsRequest) ValidateAll() error

ValidateAll checks the field values on ListNotCompletedDeploymentsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListNotCompletedDeploymentsRequestMultiError, or nil if none found.

type ListNotCompletedDeploymentsRequestMultiError added in v0.27.0

type ListNotCompletedDeploymentsRequestMultiError []error

ListNotCompletedDeploymentsRequestMultiError is an error wrapping multiple validation errors returned by ListNotCompletedDeploymentsRequest.ValidateAll() if the designated constraints aren't met.

func (ListNotCompletedDeploymentsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ListNotCompletedDeploymentsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListNotCompletedDeploymentsRequestValidationError added in v0.27.0

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

ListNotCompletedDeploymentsRequestValidationError is the validation error returned by ListNotCompletedDeploymentsRequest.Validate if the designated constraints aren't met.

func (ListNotCompletedDeploymentsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListNotCompletedDeploymentsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListNotCompletedDeploymentsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListNotCompletedDeploymentsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ListNotCompletedDeploymentsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ListNotCompletedDeploymentsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListNotCompletedDeploymentsResponse added in v0.27.0

type ListNotCompletedDeploymentsResponse struct {
	Deployments []*model.Deployment `protobuf:"bytes,1,rep,name=deployments,proto3" json:"deployments,omitempty"`
	Cursor      string              `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListNotCompletedDeploymentsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListNotCompletedDeploymentsResponse.ProtoReflect.Descriptor instead.

func (*ListNotCompletedDeploymentsResponse) GetCursor added in v0.27.0

func (*ListNotCompletedDeploymentsResponse) GetDeployments added in v0.27.0

func (x *ListNotCompletedDeploymentsResponse) GetDeployments() []*model.Deployment

func (*ListNotCompletedDeploymentsResponse) ProtoMessage added in v0.27.0

func (*ListNotCompletedDeploymentsResponse) ProtoMessage()

func (*ListNotCompletedDeploymentsResponse) ProtoReflect added in v0.27.0

func (*ListNotCompletedDeploymentsResponse) Reset added in v0.27.0

func (*ListNotCompletedDeploymentsResponse) String added in v0.27.0

func (*ListNotCompletedDeploymentsResponse) Validate added in v0.27.0

Validate checks the field values on ListNotCompletedDeploymentsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListNotCompletedDeploymentsResponse) ValidateAll added in v0.27.0

func (m *ListNotCompletedDeploymentsResponse) ValidateAll() error

ValidateAll checks the field values on ListNotCompletedDeploymentsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListNotCompletedDeploymentsResponseMultiError, or nil if none found.

type ListNotCompletedDeploymentsResponseMultiError added in v0.27.0

type ListNotCompletedDeploymentsResponseMultiError []error

ListNotCompletedDeploymentsResponseMultiError is an error wrapping multiple validation errors returned by ListNotCompletedDeploymentsResponse.ValidateAll() if the designated constraints aren't met.

func (ListNotCompletedDeploymentsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ListNotCompletedDeploymentsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListNotCompletedDeploymentsResponseValidationError added in v0.27.0

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

ListNotCompletedDeploymentsResponseValidationError is the validation error returned by ListNotCompletedDeploymentsResponse.Validate if the designated constraints aren't met.

func (ListNotCompletedDeploymentsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListNotCompletedDeploymentsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListNotCompletedDeploymentsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListNotCompletedDeploymentsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ListNotCompletedDeploymentsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ListNotCompletedDeploymentsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListOrder added in v0.27.0

type ListOrder int32
const (
	ListOrder_NONE ListOrder = 0
	ListOrder_ASC  ListOrder = 1
	ListOrder_DESC ListOrder = 2
)

func (ListOrder) Descriptor added in v0.27.0

func (ListOrder) Descriptor() protoreflect.EnumDescriptor

func (ListOrder) Enum added in v0.27.0

func (x ListOrder) Enum() *ListOrder

func (ListOrder) EnumDescriptor deprecated added in v0.27.0

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

Deprecated: Use ListOrder.Descriptor instead.

func (ListOrder) Number added in v0.27.0

func (x ListOrder) Number() protoreflect.EnumNumber

func (ListOrder) String added in v0.27.0

func (x ListOrder) String() string

func (ListOrder) Type added in v0.27.0

type ListUnhandledCommandsRequest added in v0.27.0

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

func (*ListUnhandledCommandsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListUnhandledCommandsRequest.ProtoReflect.Descriptor instead.

func (*ListUnhandledCommandsRequest) ProtoMessage added in v0.27.0

func (*ListUnhandledCommandsRequest) ProtoMessage()

func (*ListUnhandledCommandsRequest) ProtoReflect added in v0.27.0

func (*ListUnhandledCommandsRequest) Reset added in v0.27.0

func (x *ListUnhandledCommandsRequest) Reset()

func (*ListUnhandledCommandsRequest) String added in v0.27.0

func (*ListUnhandledCommandsRequest) Validate added in v0.27.0

func (m *ListUnhandledCommandsRequest) Validate() error

Validate checks the field values on ListUnhandledCommandsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListUnhandledCommandsRequest) ValidateAll added in v0.27.0

func (m *ListUnhandledCommandsRequest) ValidateAll() error

ValidateAll checks the field values on ListUnhandledCommandsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListUnhandledCommandsRequestMultiError, or nil if none found.

type ListUnhandledCommandsRequestMultiError added in v0.27.0

type ListUnhandledCommandsRequestMultiError []error

ListUnhandledCommandsRequestMultiError is an error wrapping multiple validation errors returned by ListUnhandledCommandsRequest.ValidateAll() if the designated constraints aren't met.

func (ListUnhandledCommandsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ListUnhandledCommandsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListUnhandledCommandsRequestValidationError added in v0.27.0

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

ListUnhandledCommandsRequestValidationError is the validation error returned by ListUnhandledCommandsRequest.Validate if the designated constraints aren't met.

func (ListUnhandledCommandsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListUnhandledCommandsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListUnhandledCommandsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListUnhandledCommandsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ListUnhandledCommandsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ListUnhandledCommandsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListUnhandledCommandsResponse added in v0.27.0

type ListUnhandledCommandsResponse struct {
	Commands []*model.Command `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

func (*ListUnhandledCommandsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ListUnhandledCommandsResponse.ProtoReflect.Descriptor instead.

func (*ListUnhandledCommandsResponse) GetCommands added in v0.27.0

func (x *ListUnhandledCommandsResponse) GetCommands() []*model.Command

func (*ListUnhandledCommandsResponse) ProtoMessage added in v0.27.0

func (*ListUnhandledCommandsResponse) ProtoMessage()

func (*ListUnhandledCommandsResponse) ProtoReflect added in v0.27.0

func (*ListUnhandledCommandsResponse) Reset added in v0.27.0

func (x *ListUnhandledCommandsResponse) Reset()

func (*ListUnhandledCommandsResponse) String added in v0.27.0

func (*ListUnhandledCommandsResponse) Validate added in v0.27.0

func (m *ListUnhandledCommandsResponse) Validate() error

Validate checks the field values on ListUnhandledCommandsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListUnhandledCommandsResponse) ValidateAll added in v0.27.0

func (m *ListUnhandledCommandsResponse) ValidateAll() error

ValidateAll checks the field values on ListUnhandledCommandsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListUnhandledCommandsResponseMultiError, or nil if none found.

type ListUnhandledCommandsResponseMultiError added in v0.27.0

type ListUnhandledCommandsResponseMultiError []error

ListUnhandledCommandsResponseMultiError is an error wrapping multiple validation errors returned by ListUnhandledCommandsResponse.ValidateAll() if the designated constraints aren't met.

func (ListUnhandledCommandsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ListUnhandledCommandsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ListUnhandledCommandsResponseValidationError added in v0.27.0

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

ListUnhandledCommandsResponseValidationError is the validation error returned by ListUnhandledCommandsResponse.Validate if the designated constraints aren't met.

func (ListUnhandledCommandsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ListUnhandledCommandsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ListUnhandledCommandsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ListUnhandledCommandsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ListUnhandledCommandsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ListUnhandledCommandsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type PipedServiceClient added in v0.27.0

type PipedServiceClient interface {
	// ReportStat is periodically sent to report its realtime status/stats to control-plane.
	// The received stats will be pushed to the metrics collector.
	ReportStat(ctx context.Context, in *ReportStatRequest, opts ...grpc.CallOption) (*ReportStatResponse, error)
	// ReportPipedMeta is sent while starting up to report its metadata
	// such as configured cloud providers.
	ReportPipedMeta(ctx context.Context, in *ReportPipedMetaRequest, opts ...grpc.CallOption) (*ReportPipedMetaResponse, error)
	// ListApplications returns a list of registered applications
	// that should be managed by the requested piped.
	// Disabled applications should not be included in the response.
	// Piped uses this RPC to fetch and sync the application configuration into its local database.
	ListApplications(ctx context.Context, in *ListApplicationsRequest, opts ...grpc.CallOption) (*ListApplicationsResponse, error)
	// ReportApplicationSyncState is used to update the sync status of an application.
	ReportApplicationSyncState(ctx context.Context, in *ReportApplicationSyncStateRequest, opts ...grpc.CallOption) (*ReportApplicationSyncStateResponse, error)
	// ReportApplicationDeployingStatus is used to report whether the specified application is deploying or not.
	ReportApplicationDeployingStatus(ctx context.Context, in *ReportApplicationDeployingStatusRequest, opts ...grpc.CallOption) (*ReportApplicationDeployingStatusResponse, error)
	// ReportApplicationMostRecentDeployment is used to update the basic information about
	// the most recent deployment of a specific application.
	ReportApplicationMostRecentDeployment(ctx context.Context, in *ReportApplicationMostRecentDeploymentRequest, opts ...grpc.CallOption) (*ReportApplicationMostRecentDeploymentResponse, error)
	// GetApplicationMostRecentDeployment returns the most recent deployment of the given application.
	GetApplicationMostRecentDeployment(ctx context.Context, in *GetApplicationMostRecentDeploymentRequest, opts ...grpc.CallOption) (*GetApplicationMostRecentDeploymentResponse, error)
	// GetDeployment returns the deployment for given deployment ID.
	GetDeployment(ctx context.Context, in *GetDeploymentRequest, opts ...grpc.CallOption) (*GetDeploymentResponse, error)
	// ListNotCompletedDeployments returns a list of not completed deployments
	// which are managed by this piped.
	// DeploymentController component uses this RPC to spawns/syncs its local deployment executors.
	ListNotCompletedDeployments(ctx context.Context, in *ListNotCompletedDeploymentsRequest, opts ...grpc.CallOption) (*ListNotCompletedDeploymentsResponse, error)
	// CreateDeployment creates/triggers a new deployment for an application
	// that is managed by this piped.
	// This will be used by DeploymentTrigger component.
	CreateDeployment(ctx context.Context, in *CreateDeploymentRequest, opts ...grpc.CallOption) (*CreateDeploymentResponse, error)
	// ReportDeploymentPlanned is used to update the status
	// of a specific deployment to PLANNED.
	ReportDeploymentPlanned(ctx context.Context, in *ReportDeploymentPlannedRequest, opts ...grpc.CallOption) (*ReportDeploymentPlannedResponse, error)
	// ReportDeploymentStatusChanged is used to update the status
	// of a specific deployment to RUNNING or ROLLING_BACK.
	ReportDeploymentStatusChanged(ctx context.Context, in *ReportDeploymentStatusChangedRequest, opts ...grpc.CallOption) (*ReportDeploymentStatusChangedResponse, error)
	// ReportDeploymentCompleted is used to update the status
	// of a specific deployment to SUCCESS | FAILURE | CANCELLED.
	ReportDeploymentCompleted(ctx context.Context, in *ReportDeploymentCompletedRequest, opts ...grpc.CallOption) (*ReportDeploymentCompletedResponse, error)
	// SaveDeploymentMetadata is used to persist the metadata of a specific deployment.
	// Different value for the same key will overwrite the previous value for that key.
	SaveDeploymentMetadata(ctx context.Context, in *SaveDeploymentMetadataRequest, opts ...grpc.CallOption) (*SaveDeploymentMetadataResponse, error)
	// SaveStageMetadata is used to persist the metadata
	// of a specific stage of a deployment.
	// Different value for the same key will overwrite the previous value for that key.
	SaveStageMetadata(ctx context.Context, in *SaveStageMetadataRequest, opts ...grpc.CallOption) (*SaveStageMetadataResponse, error)
	// ReportStageLogs is used to save the log of a pipeline stage.
	ReportStageLogs(ctx context.Context, in *ReportStageLogsRequest, opts ...grpc.CallOption) (*ReportStageLogsResponse, error)
	// ReportStageLogsFromLastCheckpoint is used to save the full logs from the most recently saved point.
	ReportStageLogsFromLastCheckpoint(ctx context.Context, in *ReportStageLogsFromLastCheckpointRequest, opts ...grpc.CallOption) (*ReportStageLogsFromLastCheckpointResponse, error)
	// ReportStageStatusChanged is used to update the status
	// of a specific stage of a deployment.
	ReportStageStatusChanged(ctx context.Context, in *ReportStageStatusChangedRequest, opts ...grpc.CallOption) (*ReportStageStatusChangedResponse, error)
	// ListUnhandledCommands is periodically called to obtain the commands
	// that should be handled.
	// Whenever an user makes an interaction from WebUI (cancel/approve/sync)
	// a new command with a unique identifier will be generated an saved into the datastore.
	// Piped uses this RPC to list all still-not-handled commands to handle them,
	// then report back the result to server.
	// On other side, the web will periodically check the command status and feedback the result to user.
	// In the future, we may need a solution to remove all old-handled commands from datastore for space.
	ListUnhandledCommands(ctx context.Context, in *ListUnhandledCommandsRequest, opts ...grpc.CallOption) (*ListUnhandledCommandsResponse, error)
	// ReportCommandHandled is called to mark a specific command as handled.
	// The request payload will contain the handle status as well as any additional result data.
	// The handle result should be updated to both datastore and cache (for reading from web).
	ReportCommandHandled(ctx context.Context, in *ReportCommandHandledRequest, opts ...grpc.CallOption) (*ReportCommandHandledResponse, error)
	// ReportApplicationLiveState is periodically sent to correct full state of an application.
	// For kubernetes application, this contains a full tree of its kubernetes resources.
	// The tree data should be written into filestore immediately and then the state in cache should be refreshsed too.
	ReportApplicationLiveState(ctx context.Context, in *ReportApplicationLiveStateRequest, opts ...grpc.CallOption) (*ReportApplicationLiveStateResponse, error)
	// ReportApplicationLiveStateEvents is sent to submit one or multiple events
	// about the changes of application live state.
	// Control plane uses the received events to update the state of application-resource-tree.
	// We want to start by a simple solution at this initial stage of development,
	// so the API server just handles as below:
	// - loads the releated application-resource-tree from the cache
	// - checks and builds new state for the application-resource-tree
	// - updates new state into cache (cache data is for reading while handling web requests)
	// In the future, we may want to redesign the behavior of this RPC by using pubsub/queue pattern.
	// After receiving the events, all of them will be published into a queue immediately,
	// and then another Handler service will pick them inorder to apply to build new state.
	// By that way we can control the traffic to the datastore in a better way.
	ReportApplicationLiveStateEvents(ctx context.Context, in *ReportApplicationLiveStateEventsRequest, opts ...grpc.CallOption) (*ReportApplicationLiveStateEventsResponse, error)
	// GetLatestEvent returns the latest event that meets the given conditions.
	GetLatestEvent(ctx context.Context, in *GetLatestEventRequest, opts ...grpc.CallOption) (*GetLatestEventResponse, error)
	// ListEvents returns a list of Events inside the given range.
	ListEvents(ctx context.Context, in *ListEventsRequest, opts ...grpc.CallOption) (*ListEventsResponse, error)
	// ReportEventHandled marks the given all events as handled.
	// Deprecated. This is only for the old Piped agents.
	ReportEventsHandled(ctx context.Context, in *ReportEventsHandledRequest, opts ...grpc.CallOption) (*ReportEventsHandledResponse, error)
	// ReportEventStatuses reports a status list of events.
	ReportEventStatuses(ctx context.Context, in *ReportEventStatusesRequest, opts ...grpc.CallOption) (*ReportEventStatusesResponse, error)
	// GetLatestAnalysisResult returns the most successful analysis result.
	GetLatestAnalysisResult(ctx context.Context, in *GetLatestAnalysisResultRequest, opts ...grpc.CallOption) (*GetLatestAnalysisResultResponse, error)
	// GetLatestAnalysisResult updates the most successful analysis result.
	PutLatestAnalysisResult(ctx context.Context, in *PutLatestAnalysisResultRequest, opts ...grpc.CallOption) (*PutLatestAnalysisResultResponse, error)
	// GetDesiredVersion returns the desired version of the given Piped.
	GetDesiredVersion(ctx context.Context, in *GetDesiredVersionRequest, opts ...grpc.CallOption) (*GetDesiredVersionResponse, error)
	// UpdateApplicationConfigurations updates application configurations.
	UpdateApplicationConfigurations(ctx context.Context, in *UpdateApplicationConfigurationsRequest, opts ...grpc.CallOption) (*UpdateApplicationConfigurationsResponse, error)
	// ReportLatestUnusedApplicationConfigurations puts the latest configurations of applications that isn't registered yet.
	ReportUnregisteredApplicationConfigurations(ctx context.Context, in *ReportUnregisteredApplicationConfigurationsRequest, opts ...grpc.CallOption) (*ReportUnregisteredApplicationConfigurationsResponse, error)
	// CreateDeploymentChain creates a new deployment chain object and all required commands to
	// trigger deployment for applications in the chain.
	CreateDeploymentChain(ctx context.Context, in *CreateDeploymentChainRequest, opts ...grpc.CallOption) (*CreateDeploymentChainResponse, error)
	// DeploymentPlannable checks the completion and status of the previous block in the deployment chain,
	// only when all the nodes of the previous block are completed with a success status,
	// the nodes of the next block will be treated as processable.
	// In case the previous block of this deployment is finished with FAILURE | CANCELLED status,
	// `cancel` flag will be returned to aware piped to stop this deployment.
	InChainDeploymentPlannable(ctx context.Context, in *InChainDeploymentPlannableRequest, opts ...grpc.CallOption) (*InChainDeploymentPlannableResponse, error)
}

PipedServiceClient is the client API for PipedService 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.

func NewPipedServiceClient added in v0.27.0

func NewPipedServiceClient(cc grpc.ClientConnInterface) PipedServiceClient

type PipedServiceServer added in v0.27.0

type PipedServiceServer interface {
	// ReportStat is periodically sent to report its realtime status/stats to control-plane.
	// The received stats will be pushed to the metrics collector.
	ReportStat(context.Context, *ReportStatRequest) (*ReportStatResponse, error)
	// ReportPipedMeta is sent while starting up to report its metadata
	// such as configured cloud providers.
	ReportPipedMeta(context.Context, *ReportPipedMetaRequest) (*ReportPipedMetaResponse, error)
	// ListApplications returns a list of registered applications
	// that should be managed by the requested piped.
	// Disabled applications should not be included in the response.
	// Piped uses this RPC to fetch and sync the application configuration into its local database.
	ListApplications(context.Context, *ListApplicationsRequest) (*ListApplicationsResponse, error)
	// ReportApplicationSyncState is used to update the sync status of an application.
	ReportApplicationSyncState(context.Context, *ReportApplicationSyncStateRequest) (*ReportApplicationSyncStateResponse, error)
	// ReportApplicationDeployingStatus is used to report whether the specified application is deploying or not.
	ReportApplicationDeployingStatus(context.Context, *ReportApplicationDeployingStatusRequest) (*ReportApplicationDeployingStatusResponse, error)
	// ReportApplicationMostRecentDeployment is used to update the basic information about
	// the most recent deployment of a specific application.
	ReportApplicationMostRecentDeployment(context.Context, *ReportApplicationMostRecentDeploymentRequest) (*ReportApplicationMostRecentDeploymentResponse, error)
	// GetApplicationMostRecentDeployment returns the most recent deployment of the given application.
	GetApplicationMostRecentDeployment(context.Context, *GetApplicationMostRecentDeploymentRequest) (*GetApplicationMostRecentDeploymentResponse, error)
	// GetDeployment returns the deployment for given deployment ID.
	GetDeployment(context.Context, *GetDeploymentRequest) (*GetDeploymentResponse, error)
	// ListNotCompletedDeployments returns a list of not completed deployments
	// which are managed by this piped.
	// DeploymentController component uses this RPC to spawns/syncs its local deployment executors.
	ListNotCompletedDeployments(context.Context, *ListNotCompletedDeploymentsRequest) (*ListNotCompletedDeploymentsResponse, error)
	// CreateDeployment creates/triggers a new deployment for an application
	// that is managed by this piped.
	// This will be used by DeploymentTrigger component.
	CreateDeployment(context.Context, *CreateDeploymentRequest) (*CreateDeploymentResponse, error)
	// ReportDeploymentPlanned is used to update the status
	// of a specific deployment to PLANNED.
	ReportDeploymentPlanned(context.Context, *ReportDeploymentPlannedRequest) (*ReportDeploymentPlannedResponse, error)
	// ReportDeploymentStatusChanged is used to update the status
	// of a specific deployment to RUNNING or ROLLING_BACK.
	ReportDeploymentStatusChanged(context.Context, *ReportDeploymentStatusChangedRequest) (*ReportDeploymentStatusChangedResponse, error)
	// ReportDeploymentCompleted is used to update the status
	// of a specific deployment to SUCCESS | FAILURE | CANCELLED.
	ReportDeploymentCompleted(context.Context, *ReportDeploymentCompletedRequest) (*ReportDeploymentCompletedResponse, error)
	// SaveDeploymentMetadata is used to persist the metadata of a specific deployment.
	// Different value for the same key will overwrite the previous value for that key.
	SaveDeploymentMetadata(context.Context, *SaveDeploymentMetadataRequest) (*SaveDeploymentMetadataResponse, error)
	// SaveStageMetadata is used to persist the metadata
	// of a specific stage of a deployment.
	// Different value for the same key will overwrite the previous value for that key.
	SaveStageMetadata(context.Context, *SaveStageMetadataRequest) (*SaveStageMetadataResponse, error)
	// ReportStageLogs is used to save the log of a pipeline stage.
	ReportStageLogs(context.Context, *ReportStageLogsRequest) (*ReportStageLogsResponse, error)
	// ReportStageLogsFromLastCheckpoint is used to save the full logs from the most recently saved point.
	ReportStageLogsFromLastCheckpoint(context.Context, *ReportStageLogsFromLastCheckpointRequest) (*ReportStageLogsFromLastCheckpointResponse, error)
	// ReportStageStatusChanged is used to update the status
	// of a specific stage of a deployment.
	ReportStageStatusChanged(context.Context, *ReportStageStatusChangedRequest) (*ReportStageStatusChangedResponse, error)
	// ListUnhandledCommands is periodically called to obtain the commands
	// that should be handled.
	// Whenever an user makes an interaction from WebUI (cancel/approve/sync)
	// a new command with a unique identifier will be generated an saved into the datastore.
	// Piped uses this RPC to list all still-not-handled commands to handle them,
	// then report back the result to server.
	// On other side, the web will periodically check the command status and feedback the result to user.
	// In the future, we may need a solution to remove all old-handled commands from datastore for space.
	ListUnhandledCommands(context.Context, *ListUnhandledCommandsRequest) (*ListUnhandledCommandsResponse, error)
	// ReportCommandHandled is called to mark a specific command as handled.
	// The request payload will contain the handle status as well as any additional result data.
	// The handle result should be updated to both datastore and cache (for reading from web).
	ReportCommandHandled(context.Context, *ReportCommandHandledRequest) (*ReportCommandHandledResponse, error)
	// ReportApplicationLiveState is periodically sent to correct full state of an application.
	// For kubernetes application, this contains a full tree of its kubernetes resources.
	// The tree data should be written into filestore immediately and then the state in cache should be refreshsed too.
	ReportApplicationLiveState(context.Context, *ReportApplicationLiveStateRequest) (*ReportApplicationLiveStateResponse, error)
	// ReportApplicationLiveStateEvents is sent to submit one or multiple events
	// about the changes of application live state.
	// Control plane uses the received events to update the state of application-resource-tree.
	// We want to start by a simple solution at this initial stage of development,
	// so the API server just handles as below:
	// - loads the releated application-resource-tree from the cache
	// - checks and builds new state for the application-resource-tree
	// - updates new state into cache (cache data is for reading while handling web requests)
	// In the future, we may want to redesign the behavior of this RPC by using pubsub/queue pattern.
	// After receiving the events, all of them will be published into a queue immediately,
	// and then another Handler service will pick them inorder to apply to build new state.
	// By that way we can control the traffic to the datastore in a better way.
	ReportApplicationLiveStateEvents(context.Context, *ReportApplicationLiveStateEventsRequest) (*ReportApplicationLiveStateEventsResponse, error)
	// GetLatestEvent returns the latest event that meets the given conditions.
	GetLatestEvent(context.Context, *GetLatestEventRequest) (*GetLatestEventResponse, error)
	// ListEvents returns a list of Events inside the given range.
	ListEvents(context.Context, *ListEventsRequest) (*ListEventsResponse, error)
	// ReportEventHandled marks the given all events as handled.
	// Deprecated. This is only for the old Piped agents.
	ReportEventsHandled(context.Context, *ReportEventsHandledRequest) (*ReportEventsHandledResponse, error)
	// ReportEventStatuses reports a status list of events.
	ReportEventStatuses(context.Context, *ReportEventStatusesRequest) (*ReportEventStatusesResponse, error)
	// GetLatestAnalysisResult returns the most successful analysis result.
	GetLatestAnalysisResult(context.Context, *GetLatestAnalysisResultRequest) (*GetLatestAnalysisResultResponse, error)
	// GetLatestAnalysisResult updates the most successful analysis result.
	PutLatestAnalysisResult(context.Context, *PutLatestAnalysisResultRequest) (*PutLatestAnalysisResultResponse, error)
	// GetDesiredVersion returns the desired version of the given Piped.
	GetDesiredVersion(context.Context, *GetDesiredVersionRequest) (*GetDesiredVersionResponse, error)
	// UpdateApplicationConfigurations updates application configurations.
	UpdateApplicationConfigurations(context.Context, *UpdateApplicationConfigurationsRequest) (*UpdateApplicationConfigurationsResponse, error)
	// ReportLatestUnusedApplicationConfigurations puts the latest configurations of applications that isn't registered yet.
	ReportUnregisteredApplicationConfigurations(context.Context, *ReportUnregisteredApplicationConfigurationsRequest) (*ReportUnregisteredApplicationConfigurationsResponse, error)
	// CreateDeploymentChain creates a new deployment chain object and all required commands to
	// trigger deployment for applications in the chain.
	CreateDeploymentChain(context.Context, *CreateDeploymentChainRequest) (*CreateDeploymentChainResponse, error)
	// DeploymentPlannable checks the completion and status of the previous block in the deployment chain,
	// only when all the nodes of the previous block are completed with a success status,
	// the nodes of the next block will be treated as processable.
	// In case the previous block of this deployment is finished with FAILURE | CANCELLED status,
	// `cancel` flag will be returned to aware piped to stop this deployment.
	InChainDeploymentPlannable(context.Context, *InChainDeploymentPlannableRequest) (*InChainDeploymentPlannableResponse, error)
	// contains filtered or unexported methods
}

PipedServiceServer is the server API for PipedService service. All implementations must embed UnimplementedPipedServiceServer for forward compatibility

type PutLatestAnalysisResultRequest added in v0.27.0

type PutLatestAnalysisResultRequest struct {
	ApplicationId  string                `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	AnalysisResult *model.AnalysisResult `protobuf:"bytes,2,opt,name=analysis_result,json=analysisResult,proto3" json:"analysis_result,omitempty"`
	// contains filtered or unexported fields
}

func (*PutLatestAnalysisResultRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use PutLatestAnalysisResultRequest.ProtoReflect.Descriptor instead.

func (*PutLatestAnalysisResultRequest) GetAnalysisResult added in v0.27.0

func (x *PutLatestAnalysisResultRequest) GetAnalysisResult() *model.AnalysisResult

func (*PutLatestAnalysisResultRequest) GetApplicationId added in v0.27.0

func (x *PutLatestAnalysisResultRequest) GetApplicationId() string

func (*PutLatestAnalysisResultRequest) ProtoMessage added in v0.27.0

func (*PutLatestAnalysisResultRequest) ProtoMessage()

func (*PutLatestAnalysisResultRequest) ProtoReflect added in v0.27.0

func (*PutLatestAnalysisResultRequest) Reset added in v0.27.0

func (x *PutLatestAnalysisResultRequest) Reset()

func (*PutLatestAnalysisResultRequest) String added in v0.27.0

func (*PutLatestAnalysisResultRequest) Validate added in v0.27.0

func (m *PutLatestAnalysisResultRequest) Validate() error

Validate checks the field values on PutLatestAnalysisResultRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PutLatestAnalysisResultRequest) ValidateAll added in v0.27.0

func (m *PutLatestAnalysisResultRequest) ValidateAll() error

ValidateAll checks the field values on PutLatestAnalysisResultRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PutLatestAnalysisResultRequestMultiError, or nil if none found.

type PutLatestAnalysisResultRequestMultiError added in v0.27.0

type PutLatestAnalysisResultRequestMultiError []error

PutLatestAnalysisResultRequestMultiError is an error wrapping multiple validation errors returned by PutLatestAnalysisResultRequest.ValidateAll() if the designated constraints aren't met.

func (PutLatestAnalysisResultRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (PutLatestAnalysisResultRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type PutLatestAnalysisResultRequestValidationError added in v0.27.0

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

PutLatestAnalysisResultRequestValidationError is the validation error returned by PutLatestAnalysisResultRequest.Validate if the designated constraints aren't met.

func (PutLatestAnalysisResultRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (PutLatestAnalysisResultRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (PutLatestAnalysisResultRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (PutLatestAnalysisResultRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (PutLatestAnalysisResultRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (PutLatestAnalysisResultRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type PutLatestAnalysisResultResponse added in v0.27.0

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

func (*PutLatestAnalysisResultResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use PutLatestAnalysisResultResponse.ProtoReflect.Descriptor instead.

func (*PutLatestAnalysisResultResponse) ProtoMessage added in v0.27.0

func (*PutLatestAnalysisResultResponse) ProtoMessage()

func (*PutLatestAnalysisResultResponse) ProtoReflect added in v0.27.0

func (*PutLatestAnalysisResultResponse) Reset added in v0.27.0

func (*PutLatestAnalysisResultResponse) String added in v0.27.0

func (*PutLatestAnalysisResultResponse) Validate added in v0.27.0

func (m *PutLatestAnalysisResultResponse) Validate() error

Validate checks the field values on PutLatestAnalysisResultResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PutLatestAnalysisResultResponse) ValidateAll added in v0.27.0

func (m *PutLatestAnalysisResultResponse) ValidateAll() error

ValidateAll checks the field values on PutLatestAnalysisResultResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PutLatestAnalysisResultResponseMultiError, or nil if none found.

type PutLatestAnalysisResultResponseMultiError added in v0.27.0

type PutLatestAnalysisResultResponseMultiError []error

PutLatestAnalysisResultResponseMultiError is an error wrapping multiple validation errors returned by PutLatestAnalysisResultResponse.ValidateAll() if the designated constraints aren't met.

func (PutLatestAnalysisResultResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (PutLatestAnalysisResultResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type PutLatestAnalysisResultResponseValidationError added in v0.27.0

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

PutLatestAnalysisResultResponseValidationError is the validation error returned by PutLatestAnalysisResultResponse.Validate if the designated constraints aren't met.

func (PutLatestAnalysisResultResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (PutLatestAnalysisResultResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (PutLatestAnalysisResultResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (PutLatestAnalysisResultResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (PutLatestAnalysisResultResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (PutLatestAnalysisResultResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationDeployingStatusRequest added in v0.27.0

type ReportApplicationDeployingStatusRequest struct {
	ApplicationId string `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	Deploying     bool   `protobuf:"varint,2,opt,name=deploying,proto3" json:"deploying,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationDeployingStatusRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationDeployingStatusRequest.ProtoReflect.Descriptor instead.

func (*ReportApplicationDeployingStatusRequest) GetApplicationId added in v0.27.0

func (x *ReportApplicationDeployingStatusRequest) GetApplicationId() string

func (*ReportApplicationDeployingStatusRequest) GetDeploying added in v0.27.0

func (*ReportApplicationDeployingStatusRequest) ProtoMessage added in v0.27.0

func (*ReportApplicationDeployingStatusRequest) ProtoReflect added in v0.27.0

func (*ReportApplicationDeployingStatusRequest) Reset added in v0.27.0

func (*ReportApplicationDeployingStatusRequest) String added in v0.27.0

func (*ReportApplicationDeployingStatusRequest) Validate added in v0.27.0

Validate checks the field values on ReportApplicationDeployingStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationDeployingStatusRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationDeployingStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationDeployingStatusRequestMultiError, or nil if none found.

type ReportApplicationDeployingStatusRequestMultiError added in v0.27.0

type ReportApplicationDeployingStatusRequestMultiError []error

ReportApplicationDeployingStatusRequestMultiError is an error wrapping multiple validation errors returned by ReportApplicationDeployingStatusRequest.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationDeployingStatusRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationDeployingStatusRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationDeployingStatusRequestValidationError added in v0.27.0

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

ReportApplicationDeployingStatusRequestValidationError is the validation error returned by ReportApplicationDeployingStatusRequest.Validate if the designated constraints aren't met.

func (ReportApplicationDeployingStatusRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationDeployingStatusRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationDeployingStatusRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationDeployingStatusRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationDeployingStatusRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationDeployingStatusRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationDeployingStatusResponse added in v0.27.0

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

func (*ReportApplicationDeployingStatusResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationDeployingStatusResponse.ProtoReflect.Descriptor instead.

func (*ReportApplicationDeployingStatusResponse) ProtoMessage added in v0.27.0

func (*ReportApplicationDeployingStatusResponse) ProtoReflect added in v0.27.0

func (*ReportApplicationDeployingStatusResponse) Reset added in v0.27.0

func (*ReportApplicationDeployingStatusResponse) String added in v0.27.0

func (*ReportApplicationDeployingStatusResponse) Validate added in v0.27.0

Validate checks the field values on ReportApplicationDeployingStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationDeployingStatusResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationDeployingStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationDeployingStatusResponseMultiError, or nil if none found.

type ReportApplicationDeployingStatusResponseMultiError added in v0.27.0

type ReportApplicationDeployingStatusResponseMultiError []error

ReportApplicationDeployingStatusResponseMultiError is an error wrapping multiple validation errors returned by ReportApplicationDeployingStatusResponse.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationDeployingStatusResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationDeployingStatusResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationDeployingStatusResponseValidationError added in v0.27.0

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

ReportApplicationDeployingStatusResponseValidationError is the validation error returned by ReportApplicationDeployingStatusResponse.Validate if the designated constraints aren't met.

func (ReportApplicationDeployingStatusResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationDeployingStatusResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationDeployingStatusResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationDeployingStatusResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationDeployingStatusResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationDeployingStatusResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationLiveStateEventsRequest added in v0.27.0

type ReportApplicationLiveStateEventsRequest struct {
	KubernetesEvents []*model.KubernetesResourceStateEvent `protobuf:"bytes,1,rep,name=kubernetes_events,json=kubernetesEvents,proto3" json:"kubernetes_events,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationLiveStateEventsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationLiveStateEventsRequest.ProtoReflect.Descriptor instead.

func (*ReportApplicationLiveStateEventsRequest) GetKubernetesEvents added in v0.27.0

func (*ReportApplicationLiveStateEventsRequest) ProtoMessage added in v0.27.0

func (*ReportApplicationLiveStateEventsRequest) ProtoReflect added in v0.27.0

func (*ReportApplicationLiveStateEventsRequest) Reset added in v0.27.0

func (*ReportApplicationLiveStateEventsRequest) String added in v0.27.0

func (*ReportApplicationLiveStateEventsRequest) Validate added in v0.27.0

Validate checks the field values on ReportApplicationLiveStateEventsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationLiveStateEventsRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationLiveStateEventsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationLiveStateEventsRequestMultiError, or nil if none found.

type ReportApplicationLiveStateEventsRequestMultiError added in v0.27.0

type ReportApplicationLiveStateEventsRequestMultiError []error

ReportApplicationLiveStateEventsRequestMultiError is an error wrapping multiple validation errors returned by ReportApplicationLiveStateEventsRequest.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationLiveStateEventsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationLiveStateEventsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationLiveStateEventsRequestValidationError added in v0.27.0

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

ReportApplicationLiveStateEventsRequestValidationError is the validation error returned by ReportApplicationLiveStateEventsRequest.Validate if the designated constraints aren't met.

func (ReportApplicationLiveStateEventsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationLiveStateEventsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationLiveStateEventsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationLiveStateEventsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationLiveStateEventsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationLiveStateEventsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationLiveStateEventsResponse added in v0.27.0

type ReportApplicationLiveStateEventsResponse struct {
	FailedIds []string `protobuf:"bytes,1,rep,name=failed_ids,json=failedIds,proto3" json:"failed_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationLiveStateEventsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationLiveStateEventsResponse.ProtoReflect.Descriptor instead.

func (*ReportApplicationLiveStateEventsResponse) GetFailedIds added in v0.27.0

func (*ReportApplicationLiveStateEventsResponse) ProtoMessage added in v0.27.0

func (*ReportApplicationLiveStateEventsResponse) ProtoReflect added in v0.27.0

func (*ReportApplicationLiveStateEventsResponse) Reset added in v0.27.0

func (*ReportApplicationLiveStateEventsResponse) String added in v0.27.0

func (*ReportApplicationLiveStateEventsResponse) Validate added in v0.27.0

Validate checks the field values on ReportApplicationLiveStateEventsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationLiveStateEventsResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationLiveStateEventsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationLiveStateEventsResponseMultiError, or nil if none found.

type ReportApplicationLiveStateEventsResponseMultiError added in v0.27.0

type ReportApplicationLiveStateEventsResponseMultiError []error

ReportApplicationLiveStateEventsResponseMultiError is an error wrapping multiple validation errors returned by ReportApplicationLiveStateEventsResponse.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationLiveStateEventsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationLiveStateEventsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationLiveStateEventsResponseValidationError added in v0.27.0

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

ReportApplicationLiveStateEventsResponseValidationError is the validation error returned by ReportApplicationLiveStateEventsResponse.Validate if the designated constraints aren't met.

func (ReportApplicationLiveStateEventsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationLiveStateEventsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationLiveStateEventsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationLiveStateEventsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationLiveStateEventsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationLiveStateEventsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationLiveStateRequest added in v0.27.0

type ReportApplicationLiveStateRequest struct {
	Snapshot *model.ApplicationLiveStateSnapshot `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationLiveStateRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationLiveStateRequest.ProtoReflect.Descriptor instead.

func (*ReportApplicationLiveStateRequest) GetSnapshot added in v0.27.0

func (*ReportApplicationLiveStateRequest) ProtoMessage added in v0.27.0

func (*ReportApplicationLiveStateRequest) ProtoMessage()

func (*ReportApplicationLiveStateRequest) ProtoReflect added in v0.27.0

func (*ReportApplicationLiveStateRequest) Reset added in v0.27.0

func (*ReportApplicationLiveStateRequest) String added in v0.27.0

func (*ReportApplicationLiveStateRequest) Validate added in v0.27.0

Validate checks the field values on ReportApplicationLiveStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationLiveStateRequest) ValidateAll added in v0.27.0

func (m *ReportApplicationLiveStateRequest) ValidateAll() error

ValidateAll checks the field values on ReportApplicationLiveStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationLiveStateRequestMultiError, or nil if none found.

type ReportApplicationLiveStateRequestMultiError added in v0.27.0

type ReportApplicationLiveStateRequestMultiError []error

ReportApplicationLiveStateRequestMultiError is an error wrapping multiple validation errors returned by ReportApplicationLiveStateRequest.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationLiveStateRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationLiveStateRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationLiveStateRequestValidationError added in v0.27.0

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

ReportApplicationLiveStateRequestValidationError is the validation error returned by ReportApplicationLiveStateRequest.Validate if the designated constraints aren't met.

func (ReportApplicationLiveStateRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationLiveStateRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationLiveStateRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationLiveStateRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationLiveStateRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationLiveStateRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationLiveStateResponse added in v0.27.0

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

func (*ReportApplicationLiveStateResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationLiveStateResponse.ProtoReflect.Descriptor instead.

func (*ReportApplicationLiveStateResponse) ProtoMessage added in v0.27.0

func (*ReportApplicationLiveStateResponse) ProtoMessage()

func (*ReportApplicationLiveStateResponse) ProtoReflect added in v0.27.0

func (*ReportApplicationLiveStateResponse) Reset added in v0.27.0

func (*ReportApplicationLiveStateResponse) String added in v0.27.0

func (*ReportApplicationLiveStateResponse) Validate added in v0.27.0

Validate checks the field values on ReportApplicationLiveStateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationLiveStateResponse) ValidateAll added in v0.27.0

func (m *ReportApplicationLiveStateResponse) ValidateAll() error

ValidateAll checks the field values on ReportApplicationLiveStateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationLiveStateResponseMultiError, or nil if none found.

type ReportApplicationLiveStateResponseMultiError added in v0.27.0

type ReportApplicationLiveStateResponseMultiError []error

ReportApplicationLiveStateResponseMultiError is an error wrapping multiple validation errors returned by ReportApplicationLiveStateResponse.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationLiveStateResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationLiveStateResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationLiveStateResponseValidationError added in v0.27.0

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

ReportApplicationLiveStateResponseValidationError is the validation error returned by ReportApplicationLiveStateResponse.Validate if the designated constraints aren't met.

func (ReportApplicationLiveStateResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationLiveStateResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationLiveStateResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationLiveStateResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationLiveStateResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationLiveStateResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationMostRecentDeploymentRequest added in v0.27.0

type ReportApplicationMostRecentDeploymentRequest struct {
	ApplicationId string                                `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	Status        model.DeploymentStatus                `protobuf:"varint,2,opt,name=status,proto3,enum=model.DeploymentStatus" json:"status,omitempty"`
	Deployment    *model.ApplicationDeploymentReference `protobuf:"bytes,3,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationMostRecentDeploymentRequest) Descriptor deprecated added in v0.27.0

Deprecated: Use ReportApplicationMostRecentDeploymentRequest.ProtoReflect.Descriptor instead.

func (*ReportApplicationMostRecentDeploymentRequest) GetApplicationId added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) GetDeployment added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) GetStatus added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) ProtoMessage added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) ProtoReflect added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) Reset added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) String added in v0.27.0

func (*ReportApplicationMostRecentDeploymentRequest) Validate added in v0.27.0

Validate checks the field values on ReportApplicationMostRecentDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationMostRecentDeploymentRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationMostRecentDeploymentRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationMostRecentDeploymentRequestMultiError, or nil if none found.

type ReportApplicationMostRecentDeploymentRequestMultiError added in v0.27.0

type ReportApplicationMostRecentDeploymentRequestMultiError []error

ReportApplicationMostRecentDeploymentRequestMultiError is an error wrapping multiple validation errors returned by ReportApplicationMostRecentDeploymentRequest.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationMostRecentDeploymentRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationMostRecentDeploymentRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationMostRecentDeploymentRequestValidationError added in v0.27.0

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

ReportApplicationMostRecentDeploymentRequestValidationError is the validation error returned by ReportApplicationMostRecentDeploymentRequest.Validate if the designated constraints aren't met.

func (ReportApplicationMostRecentDeploymentRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationMostRecentDeploymentRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationMostRecentDeploymentRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationMostRecentDeploymentRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationMostRecentDeploymentRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationMostRecentDeploymentRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationMostRecentDeploymentResponse added in v0.27.0

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

func (*ReportApplicationMostRecentDeploymentResponse) Descriptor deprecated added in v0.27.0

Deprecated: Use ReportApplicationMostRecentDeploymentResponse.ProtoReflect.Descriptor instead.

func (*ReportApplicationMostRecentDeploymentResponse) ProtoMessage added in v0.27.0

func (*ReportApplicationMostRecentDeploymentResponse) ProtoReflect added in v0.27.0

func (*ReportApplicationMostRecentDeploymentResponse) Reset added in v0.27.0

func (*ReportApplicationMostRecentDeploymentResponse) String added in v0.27.0

func (*ReportApplicationMostRecentDeploymentResponse) Validate added in v0.27.0

Validate checks the field values on ReportApplicationMostRecentDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationMostRecentDeploymentResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportApplicationMostRecentDeploymentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationMostRecentDeploymentResponseMultiError, or nil if none found.

type ReportApplicationMostRecentDeploymentResponseMultiError added in v0.27.0

type ReportApplicationMostRecentDeploymentResponseMultiError []error

ReportApplicationMostRecentDeploymentResponseMultiError is an error wrapping multiple validation errors returned by ReportApplicationMostRecentDeploymentResponse.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationMostRecentDeploymentResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationMostRecentDeploymentResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationMostRecentDeploymentResponseValidationError added in v0.27.0

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

ReportApplicationMostRecentDeploymentResponseValidationError is the validation error returned by ReportApplicationMostRecentDeploymentResponse.Validate if the designated constraints aren't met.

func (ReportApplicationMostRecentDeploymentResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationMostRecentDeploymentResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationMostRecentDeploymentResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationMostRecentDeploymentResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationMostRecentDeploymentResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationMostRecentDeploymentResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationSyncStateRequest added in v0.27.0

type ReportApplicationSyncStateRequest struct {
	ApplicationId string                      `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	State         *model.ApplicationSyncState `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportApplicationSyncStateRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationSyncStateRequest.ProtoReflect.Descriptor instead.

func (*ReportApplicationSyncStateRequest) GetApplicationId added in v0.27.0

func (x *ReportApplicationSyncStateRequest) GetApplicationId() string

func (*ReportApplicationSyncStateRequest) GetState added in v0.27.0

func (*ReportApplicationSyncStateRequest) ProtoMessage added in v0.27.0

func (*ReportApplicationSyncStateRequest) ProtoMessage()

func (*ReportApplicationSyncStateRequest) ProtoReflect added in v0.27.0

func (*ReportApplicationSyncStateRequest) Reset added in v0.27.0

func (*ReportApplicationSyncStateRequest) String added in v0.27.0

func (*ReportApplicationSyncStateRequest) Validate added in v0.27.0

Validate checks the field values on ReportApplicationSyncStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationSyncStateRequest) ValidateAll added in v0.27.0

func (m *ReportApplicationSyncStateRequest) ValidateAll() error

ValidateAll checks the field values on ReportApplicationSyncStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationSyncStateRequestMultiError, or nil if none found.

type ReportApplicationSyncStateRequestMultiError added in v0.27.0

type ReportApplicationSyncStateRequestMultiError []error

ReportApplicationSyncStateRequestMultiError is an error wrapping multiple validation errors returned by ReportApplicationSyncStateRequest.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationSyncStateRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationSyncStateRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationSyncStateRequestValidationError added in v0.27.0

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

ReportApplicationSyncStateRequestValidationError is the validation error returned by ReportApplicationSyncStateRequest.Validate if the designated constraints aren't met.

func (ReportApplicationSyncStateRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationSyncStateRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationSyncStateRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationSyncStateRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationSyncStateRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationSyncStateRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportApplicationSyncStateResponse added in v0.27.0

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

func (*ReportApplicationSyncStateResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportApplicationSyncStateResponse.ProtoReflect.Descriptor instead.

func (*ReportApplicationSyncStateResponse) ProtoMessage added in v0.27.0

func (*ReportApplicationSyncStateResponse) ProtoMessage()

func (*ReportApplicationSyncStateResponse) ProtoReflect added in v0.27.0

func (*ReportApplicationSyncStateResponse) Reset added in v0.27.0

func (*ReportApplicationSyncStateResponse) String added in v0.27.0

func (*ReportApplicationSyncStateResponse) Validate added in v0.27.0

Validate checks the field values on ReportApplicationSyncStateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportApplicationSyncStateResponse) ValidateAll added in v0.27.0

func (m *ReportApplicationSyncStateResponse) ValidateAll() error

ValidateAll checks the field values on ReportApplicationSyncStateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportApplicationSyncStateResponseMultiError, or nil if none found.

type ReportApplicationSyncStateResponseMultiError added in v0.27.0

type ReportApplicationSyncStateResponseMultiError []error

ReportApplicationSyncStateResponseMultiError is an error wrapping multiple validation errors returned by ReportApplicationSyncStateResponse.ValidateAll() if the designated constraints aren't met.

func (ReportApplicationSyncStateResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportApplicationSyncStateResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportApplicationSyncStateResponseValidationError added in v0.27.0

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

ReportApplicationSyncStateResponseValidationError is the validation error returned by ReportApplicationSyncStateResponse.Validate if the designated constraints aren't met.

func (ReportApplicationSyncStateResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportApplicationSyncStateResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportApplicationSyncStateResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportApplicationSyncStateResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportApplicationSyncStateResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportApplicationSyncStateResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportCommandHandledRequest added in v0.27.0

type ReportCommandHandledRequest struct {
	CommandId string              `protobuf:"bytes,1,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"`
	Status    model.CommandStatus `protobuf:"varint,2,opt,name=status,proto3,enum=model.CommandStatus" json:"status,omitempty"`
	Metadata  map[string]string   `` /* 157-byte string literal not displayed */
	HandledAt int64               `protobuf:"varint,4,opt,name=handled_at,json=handledAt,proto3" json:"handled_at,omitempty"`
	// Additional output data to be stored in filestore.
	Output []byte `protobuf:"bytes,5,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportCommandHandledRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportCommandHandledRequest.ProtoReflect.Descriptor instead.

func (*ReportCommandHandledRequest) GetCommandId added in v0.27.0

func (x *ReportCommandHandledRequest) GetCommandId() string

func (*ReportCommandHandledRequest) GetHandledAt added in v0.27.0

func (x *ReportCommandHandledRequest) GetHandledAt() int64

func (*ReportCommandHandledRequest) GetMetadata added in v0.27.0

func (x *ReportCommandHandledRequest) GetMetadata() map[string]string

func (*ReportCommandHandledRequest) GetOutput added in v0.27.0

func (x *ReportCommandHandledRequest) GetOutput() []byte

func (*ReportCommandHandledRequest) GetStatus added in v0.27.0

func (*ReportCommandHandledRequest) ProtoMessage added in v0.27.0

func (*ReportCommandHandledRequest) ProtoMessage()

func (*ReportCommandHandledRequest) ProtoReflect added in v0.27.0

func (*ReportCommandHandledRequest) Reset added in v0.27.0

func (x *ReportCommandHandledRequest) Reset()

func (*ReportCommandHandledRequest) String added in v0.27.0

func (x *ReportCommandHandledRequest) String() string

func (*ReportCommandHandledRequest) Validate added in v0.27.0

func (m *ReportCommandHandledRequest) Validate() error

Validate checks the field values on ReportCommandHandledRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportCommandHandledRequest) ValidateAll added in v0.27.0

func (m *ReportCommandHandledRequest) ValidateAll() error

ValidateAll checks the field values on ReportCommandHandledRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportCommandHandledRequestMultiError, or nil if none found.

type ReportCommandHandledRequestMultiError added in v0.27.0

type ReportCommandHandledRequestMultiError []error

ReportCommandHandledRequestMultiError is an error wrapping multiple validation errors returned by ReportCommandHandledRequest.ValidateAll() if the designated constraints aren't met.

func (ReportCommandHandledRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportCommandHandledRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportCommandHandledRequestValidationError added in v0.27.0

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

ReportCommandHandledRequestValidationError is the validation error returned by ReportCommandHandledRequest.Validate if the designated constraints aren't met.

func (ReportCommandHandledRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportCommandHandledRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportCommandHandledRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportCommandHandledRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportCommandHandledRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportCommandHandledRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportCommandHandledResponse added in v0.27.0

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

func (*ReportCommandHandledResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportCommandHandledResponse.ProtoReflect.Descriptor instead.

func (*ReportCommandHandledResponse) ProtoMessage added in v0.27.0

func (*ReportCommandHandledResponse) ProtoMessage()

func (*ReportCommandHandledResponse) ProtoReflect added in v0.27.0

func (*ReportCommandHandledResponse) Reset added in v0.27.0

func (x *ReportCommandHandledResponse) Reset()

func (*ReportCommandHandledResponse) String added in v0.27.0

func (*ReportCommandHandledResponse) Validate added in v0.27.0

func (m *ReportCommandHandledResponse) Validate() error

Validate checks the field values on ReportCommandHandledResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportCommandHandledResponse) ValidateAll added in v0.27.0

func (m *ReportCommandHandledResponse) ValidateAll() error

ValidateAll checks the field values on ReportCommandHandledResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportCommandHandledResponseMultiError, or nil if none found.

type ReportCommandHandledResponseMultiError added in v0.27.0

type ReportCommandHandledResponseMultiError []error

ReportCommandHandledResponseMultiError is an error wrapping multiple validation errors returned by ReportCommandHandledResponse.ValidateAll() if the designated constraints aren't met.

func (ReportCommandHandledResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportCommandHandledResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportCommandHandledResponseValidationError added in v0.27.0

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

ReportCommandHandledResponseValidationError is the validation error returned by ReportCommandHandledResponse.Validate if the designated constraints aren't met.

func (ReportCommandHandledResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportCommandHandledResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportCommandHandledResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportCommandHandledResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportCommandHandledResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportCommandHandledResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentCompletedRequest added in v0.27.0

type ReportDeploymentCompletedRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// The status of deployment.
	Status model.DeploymentStatus `protobuf:"varint,2,opt,name=status,proto3,enum=model.DeploymentStatus" json:"status,omitempty"`
	// The human-readable description why the deployment is at current status.
	StatusReason string `protobuf:"bytes,3,opt,name=status_reason,json=statusReason,proto3" json:"status_reason,omitempty"`
	// The completed statuses of all stages.
	StageStatuses map[string]model.StageStatus `` /* 212-byte string literal not displayed */
	// DeploymentChainId represents the deployment chain id which the deployment
	// belongs to. Empty means this deployment does not belong to any chain.
	DeploymentChainId string `protobuf:"bytes,5,opt,name=deployment_chain_id,json=deploymentChainId,proto3" json:"deployment_chain_id,omitempty"`
	// DeploymentChainBlockIndex represents the block in deployment chain which
	// the deployment assigned to.
	DeploymentChainBlockIndex uint32 `` /* 141-byte string literal not displayed */
	// The completion time of deployment.
	CompletedAt int64 `protobuf:"varint,13,opt,name=completed_at,json=completedAt,proto3" json:"completed_at,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportDeploymentCompletedRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentCompletedRequest.ProtoReflect.Descriptor instead.

func (*ReportDeploymentCompletedRequest) GetCompletedAt added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetCompletedAt() int64

func (*ReportDeploymentCompletedRequest) GetDeploymentChainBlockIndex added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetDeploymentChainBlockIndex() uint32

func (*ReportDeploymentCompletedRequest) GetDeploymentChainId added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetDeploymentChainId() string

func (*ReportDeploymentCompletedRequest) GetDeploymentId added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetDeploymentId() string

func (*ReportDeploymentCompletedRequest) GetStageStatuses added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetStageStatuses() map[string]model.StageStatus

func (*ReportDeploymentCompletedRequest) GetStatus added in v0.27.0

func (*ReportDeploymentCompletedRequest) GetStatusReason added in v0.27.0

func (x *ReportDeploymentCompletedRequest) GetStatusReason() string

func (*ReportDeploymentCompletedRequest) ProtoMessage added in v0.27.0

func (*ReportDeploymentCompletedRequest) ProtoMessage()

func (*ReportDeploymentCompletedRequest) ProtoReflect added in v0.27.0

func (*ReportDeploymentCompletedRequest) Reset added in v0.27.0

func (*ReportDeploymentCompletedRequest) String added in v0.27.0

func (*ReportDeploymentCompletedRequest) Validate added in v0.27.0

Validate checks the field values on ReportDeploymentCompletedRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentCompletedRequest) ValidateAll added in v0.27.0

func (m *ReportDeploymentCompletedRequest) ValidateAll() error

ValidateAll checks the field values on ReportDeploymentCompletedRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentCompletedRequestMultiError, or nil if none found.

type ReportDeploymentCompletedRequestMultiError added in v0.27.0

type ReportDeploymentCompletedRequestMultiError []error

ReportDeploymentCompletedRequestMultiError is an error wrapping multiple validation errors returned by ReportDeploymentCompletedRequest.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentCompletedRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentCompletedRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentCompletedRequestValidationError added in v0.27.0

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

ReportDeploymentCompletedRequestValidationError is the validation error returned by ReportDeploymentCompletedRequest.Validate if the designated constraints aren't met.

func (ReportDeploymentCompletedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentCompletedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentCompletedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentCompletedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentCompletedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentCompletedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentCompletedResponse added in v0.27.0

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

func (*ReportDeploymentCompletedResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentCompletedResponse.ProtoReflect.Descriptor instead.

func (*ReportDeploymentCompletedResponse) ProtoMessage added in v0.27.0

func (*ReportDeploymentCompletedResponse) ProtoMessage()

func (*ReportDeploymentCompletedResponse) ProtoReflect added in v0.27.0

func (*ReportDeploymentCompletedResponse) Reset added in v0.27.0

func (*ReportDeploymentCompletedResponse) String added in v0.27.0

func (*ReportDeploymentCompletedResponse) Validate added in v0.27.0

Validate checks the field values on ReportDeploymentCompletedResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentCompletedResponse) ValidateAll added in v0.27.0

func (m *ReportDeploymentCompletedResponse) ValidateAll() error

ValidateAll checks the field values on ReportDeploymentCompletedResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentCompletedResponseMultiError, or nil if none found.

type ReportDeploymentCompletedResponseMultiError added in v0.27.0

type ReportDeploymentCompletedResponseMultiError []error

ReportDeploymentCompletedResponseMultiError is an error wrapping multiple validation errors returned by ReportDeploymentCompletedResponse.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentCompletedResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentCompletedResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentCompletedResponseValidationError added in v0.27.0

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

ReportDeploymentCompletedResponseValidationError is the validation error returned by ReportDeploymentCompletedResponse.Validate if the designated constraints aren't met.

func (ReportDeploymentCompletedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentCompletedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentCompletedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentCompletedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentCompletedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentCompletedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentPlannedRequest added in v0.27.0

type ReportDeploymentPlannedRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// Simple description about what this deployment does.
	// Empty means nothing has changed compared to when the deployment was created.
	Summary string `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"`
	// The human-readable description why the deployment is at current status.
	StatusReason string `protobuf:"bytes,3,opt,name=status_reason,json=statusReason,proto3" json:"status_reason,omitempty"`
	// Hash value of the most recently successfully deployed commit.
	RunningCommitHash string `protobuf:"bytes,4,opt,name=running_commit_hash,json=runningCommitHash,proto3" json:"running_commit_hash,omitempty"`
	// The config file name used by the last successful deployment.
	RunningConfigFilename string `` /* 126-byte string literal not displayed */
	// The application version this deployment is trying to deploy.
	Version  string                   `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	Versions []*model.ArtifactVersion `protobuf:"bytes,10,rep,name=versions,proto3" json:"versions,omitempty"`
	// The planned stages.
	// Empty means nothing has changed compared to when the deployment was created.
	Stages []*model.PipelineStage `protobuf:"bytes,6,rep,name=stages,proto3" json:"stages,omitempty"`
	// DeploymentChainId represents the deployment chain id which the deployment
	// belongs to. Empty means this deployment does not belong to any chain.
	DeploymentChainId string `protobuf:"bytes,7,opt,name=deployment_chain_id,json=deploymentChainId,proto3" json:"deployment_chain_id,omitempty"`
	// DeploymentChainBlockIndex represents the block in deployment chain which
	// the deployment assigned to.
	DeploymentChainBlockIndex uint32 `` /* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ReportDeploymentPlannedRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentPlannedRequest.ProtoReflect.Descriptor instead.

func (*ReportDeploymentPlannedRequest) GetDeploymentChainBlockIndex added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetDeploymentChainBlockIndex() uint32

func (*ReportDeploymentPlannedRequest) GetDeploymentChainId added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetDeploymentChainId() string

func (*ReportDeploymentPlannedRequest) GetDeploymentId added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetDeploymentId() string

func (*ReportDeploymentPlannedRequest) GetRunningCommitHash added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetRunningCommitHash() string

func (*ReportDeploymentPlannedRequest) GetRunningConfigFilename added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetRunningConfigFilename() string

func (*ReportDeploymentPlannedRequest) GetStages added in v0.27.0

func (*ReportDeploymentPlannedRequest) GetStatusReason added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetStatusReason() string

func (*ReportDeploymentPlannedRequest) GetSummary added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetSummary() string

func (*ReportDeploymentPlannedRequest) GetVersion added in v0.27.0

func (x *ReportDeploymentPlannedRequest) GetVersion() string

func (*ReportDeploymentPlannedRequest) GetVersions added in v0.27.0

func (*ReportDeploymentPlannedRequest) ProtoMessage added in v0.27.0

func (*ReportDeploymentPlannedRequest) ProtoMessage()

func (*ReportDeploymentPlannedRequest) ProtoReflect added in v0.27.0

func (*ReportDeploymentPlannedRequest) Reset added in v0.27.0

func (x *ReportDeploymentPlannedRequest) Reset()

func (*ReportDeploymentPlannedRequest) String added in v0.27.0

func (*ReportDeploymentPlannedRequest) Validate added in v0.27.0

func (m *ReportDeploymentPlannedRequest) Validate() error

Validate checks the field values on ReportDeploymentPlannedRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentPlannedRequest) ValidateAll added in v0.27.0

func (m *ReportDeploymentPlannedRequest) ValidateAll() error

ValidateAll checks the field values on ReportDeploymentPlannedRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentPlannedRequestMultiError, or nil if none found.

type ReportDeploymentPlannedRequestMultiError added in v0.27.0

type ReportDeploymentPlannedRequestMultiError []error

ReportDeploymentPlannedRequestMultiError is an error wrapping multiple validation errors returned by ReportDeploymentPlannedRequest.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentPlannedRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentPlannedRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentPlannedRequestValidationError added in v0.27.0

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

ReportDeploymentPlannedRequestValidationError is the validation error returned by ReportDeploymentPlannedRequest.Validate if the designated constraints aren't met.

func (ReportDeploymentPlannedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentPlannedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentPlannedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentPlannedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentPlannedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentPlannedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentPlannedResponse added in v0.27.0

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

func (*ReportDeploymentPlannedResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentPlannedResponse.ProtoReflect.Descriptor instead.

func (*ReportDeploymentPlannedResponse) ProtoMessage added in v0.27.0

func (*ReportDeploymentPlannedResponse) ProtoMessage()

func (*ReportDeploymentPlannedResponse) ProtoReflect added in v0.27.0

func (*ReportDeploymentPlannedResponse) Reset added in v0.27.0

func (*ReportDeploymentPlannedResponse) String added in v0.27.0

func (*ReportDeploymentPlannedResponse) Validate added in v0.27.0

func (m *ReportDeploymentPlannedResponse) Validate() error

Validate checks the field values on ReportDeploymentPlannedResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentPlannedResponse) ValidateAll added in v0.27.0

func (m *ReportDeploymentPlannedResponse) ValidateAll() error

ValidateAll checks the field values on ReportDeploymentPlannedResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentPlannedResponseMultiError, or nil if none found.

type ReportDeploymentPlannedResponseMultiError added in v0.27.0

type ReportDeploymentPlannedResponseMultiError []error

ReportDeploymentPlannedResponseMultiError is an error wrapping multiple validation errors returned by ReportDeploymentPlannedResponse.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentPlannedResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentPlannedResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentPlannedResponseValidationError added in v0.27.0

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

ReportDeploymentPlannedResponseValidationError is the validation error returned by ReportDeploymentPlannedResponse.Validate if the designated constraints aren't met.

func (ReportDeploymentPlannedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentPlannedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentPlannedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentPlannedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentPlannedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentPlannedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentStatusChangedRequest added in v0.27.0

type ReportDeploymentStatusChangedRequest struct {
	DeploymentId string `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	// We only accept RUNNING or ROLLING_BACK.
	Status model.DeploymentStatus `protobuf:"varint,2,opt,name=status,proto3,enum=model.DeploymentStatus" json:"status,omitempty"`
	// The human-readable description why the deployment is at current status.
	StatusReason string `protobuf:"bytes,3,opt,name=status_reason,json=statusReason,proto3" json:"status_reason,omitempty"`
	// DeploymentChainId represents the deployment chain id which the deployment
	// belongs to. Empty means this deployment does not belong to any chain.
	DeploymentChainId string `protobuf:"bytes,4,opt,name=deployment_chain_id,json=deploymentChainId,proto3" json:"deployment_chain_id,omitempty"`
	// DeploymentChainBlockIndex represents the block in deployment chain which
	// the deployment assigned to.
	DeploymentChainBlockIndex uint32 `` /* 141-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ReportDeploymentStatusChangedRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentStatusChangedRequest.ProtoReflect.Descriptor instead.

func (*ReportDeploymentStatusChangedRequest) GetDeploymentChainBlockIndex added in v0.27.0

func (x *ReportDeploymentStatusChangedRequest) GetDeploymentChainBlockIndex() uint32

func (*ReportDeploymentStatusChangedRequest) GetDeploymentChainId added in v0.27.0

func (x *ReportDeploymentStatusChangedRequest) GetDeploymentChainId() string

func (*ReportDeploymentStatusChangedRequest) GetDeploymentId added in v0.27.0

func (x *ReportDeploymentStatusChangedRequest) GetDeploymentId() string

func (*ReportDeploymentStatusChangedRequest) GetStatus added in v0.27.0

func (*ReportDeploymentStatusChangedRequest) GetStatusReason added in v0.27.0

func (x *ReportDeploymentStatusChangedRequest) GetStatusReason() string

func (*ReportDeploymentStatusChangedRequest) ProtoMessage added in v0.27.0

func (*ReportDeploymentStatusChangedRequest) ProtoMessage()

func (*ReportDeploymentStatusChangedRequest) ProtoReflect added in v0.27.0

func (*ReportDeploymentStatusChangedRequest) Reset added in v0.27.0

func (*ReportDeploymentStatusChangedRequest) String added in v0.27.0

func (*ReportDeploymentStatusChangedRequest) Validate added in v0.27.0

Validate checks the field values on ReportDeploymentStatusChangedRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentStatusChangedRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportDeploymentStatusChangedRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentStatusChangedRequestMultiError, or nil if none found.

type ReportDeploymentStatusChangedRequestMultiError added in v0.27.0

type ReportDeploymentStatusChangedRequestMultiError []error

ReportDeploymentStatusChangedRequestMultiError is an error wrapping multiple validation errors returned by ReportDeploymentStatusChangedRequest.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentStatusChangedRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentStatusChangedRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentStatusChangedRequestValidationError added in v0.27.0

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

ReportDeploymentStatusChangedRequestValidationError is the validation error returned by ReportDeploymentStatusChangedRequest.Validate if the designated constraints aren't met.

func (ReportDeploymentStatusChangedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentStatusChangedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentStatusChangedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentStatusChangedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentStatusChangedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentStatusChangedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportDeploymentStatusChangedResponse added in v0.27.0

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

func (*ReportDeploymentStatusChangedResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportDeploymentStatusChangedResponse.ProtoReflect.Descriptor instead.

func (*ReportDeploymentStatusChangedResponse) ProtoMessage added in v0.27.0

func (*ReportDeploymentStatusChangedResponse) ProtoMessage()

func (*ReportDeploymentStatusChangedResponse) ProtoReflect added in v0.27.0

func (*ReportDeploymentStatusChangedResponse) Reset added in v0.27.0

func (*ReportDeploymentStatusChangedResponse) String added in v0.27.0

func (*ReportDeploymentStatusChangedResponse) Validate added in v0.27.0

Validate checks the field values on ReportDeploymentStatusChangedResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportDeploymentStatusChangedResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportDeploymentStatusChangedResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportDeploymentStatusChangedResponseMultiError, or nil if none found.

type ReportDeploymentStatusChangedResponseMultiError added in v0.27.0

type ReportDeploymentStatusChangedResponseMultiError []error

ReportDeploymentStatusChangedResponseMultiError is an error wrapping multiple validation errors returned by ReportDeploymentStatusChangedResponse.ValidateAll() if the designated constraints aren't met.

func (ReportDeploymentStatusChangedResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportDeploymentStatusChangedResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportDeploymentStatusChangedResponseValidationError added in v0.27.0

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

ReportDeploymentStatusChangedResponseValidationError is the validation error returned by ReportDeploymentStatusChangedResponse.Validate if the designated constraints aren't met.

func (ReportDeploymentStatusChangedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportDeploymentStatusChangedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportDeploymentStatusChangedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportDeploymentStatusChangedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportDeploymentStatusChangedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportDeploymentStatusChangedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportEventStatusesRequest added in v0.27.0

type ReportEventStatusesRequest struct {
	Events []*ReportEventStatusesRequest_Event `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportEventStatusesRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportEventStatusesRequest.ProtoReflect.Descriptor instead.

func (*ReportEventStatusesRequest) GetEvents added in v0.27.0

func (*ReportEventStatusesRequest) ProtoMessage added in v0.27.0

func (*ReportEventStatusesRequest) ProtoMessage()

func (*ReportEventStatusesRequest) ProtoReflect added in v0.27.0

func (*ReportEventStatusesRequest) Reset added in v0.27.0

func (x *ReportEventStatusesRequest) Reset()

func (*ReportEventStatusesRequest) String added in v0.27.0

func (x *ReportEventStatusesRequest) String() string

func (*ReportEventStatusesRequest) Validate added in v0.27.0

func (m *ReportEventStatusesRequest) Validate() error

Validate checks the field values on ReportEventStatusesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportEventStatusesRequest) ValidateAll added in v0.27.0

func (m *ReportEventStatusesRequest) ValidateAll() error

ValidateAll checks the field values on ReportEventStatusesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportEventStatusesRequestMultiError, or nil if none found.

type ReportEventStatusesRequestMultiError added in v0.27.0

type ReportEventStatusesRequestMultiError []error

ReportEventStatusesRequestMultiError is an error wrapping multiple validation errors returned by ReportEventStatusesRequest.ValidateAll() if the designated constraints aren't met.

func (ReportEventStatusesRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportEventStatusesRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportEventStatusesRequestValidationError added in v0.27.0

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

ReportEventStatusesRequestValidationError is the validation error returned by ReportEventStatusesRequest.Validate if the designated constraints aren't met.

func (ReportEventStatusesRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportEventStatusesRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportEventStatusesRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportEventStatusesRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportEventStatusesRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportEventStatusesRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportEventStatusesRequest_Event added in v0.27.0

type ReportEventStatusesRequest_Event struct {
	Id                string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Status            model.EventStatus `protobuf:"varint,2,opt,name=status,proto3,enum=model.EventStatus" json:"status,omitempty"`
	StatusDescription string            `protobuf:"bytes,3,opt,name=status_description,json=statusDescription,proto3" json:"status_description,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportEventStatusesRequest_Event) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportEventStatusesRequest_Event.ProtoReflect.Descriptor instead.

func (*ReportEventStatusesRequest_Event) GetId added in v0.27.0

func (*ReportEventStatusesRequest_Event) GetStatus added in v0.27.0

func (*ReportEventStatusesRequest_Event) GetStatusDescription added in v0.27.0

func (x *ReportEventStatusesRequest_Event) GetStatusDescription() string

func (*ReportEventStatusesRequest_Event) ProtoMessage added in v0.27.0

func (*ReportEventStatusesRequest_Event) ProtoMessage()

func (*ReportEventStatusesRequest_Event) ProtoReflect added in v0.27.0

func (*ReportEventStatusesRequest_Event) Reset added in v0.27.0

func (*ReportEventStatusesRequest_Event) String added in v0.27.0

func (*ReportEventStatusesRequest_Event) Validate added in v0.27.0

Validate checks the field values on ReportEventStatusesRequest_Event with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportEventStatusesRequest_Event) ValidateAll added in v0.27.0

func (m *ReportEventStatusesRequest_Event) ValidateAll() error

ValidateAll checks the field values on ReportEventStatusesRequest_Event with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportEventStatusesRequest_EventMultiError, or nil if none found.

type ReportEventStatusesRequest_EventMultiError added in v0.27.0

type ReportEventStatusesRequest_EventMultiError []error

ReportEventStatusesRequest_EventMultiError is an error wrapping multiple validation errors returned by ReportEventStatusesRequest_Event.ValidateAll() if the designated constraints aren't met.

func (ReportEventStatusesRequest_EventMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportEventStatusesRequest_EventMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportEventStatusesRequest_EventValidationError added in v0.27.0

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

ReportEventStatusesRequest_EventValidationError is the validation error returned by ReportEventStatusesRequest_Event.Validate if the designated constraints aren't met.

func (ReportEventStatusesRequest_EventValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportEventStatusesRequest_EventValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportEventStatusesRequest_EventValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportEventStatusesRequest_EventValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportEventStatusesRequest_EventValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportEventStatusesRequest_EventValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportEventStatusesResponse added in v0.27.0

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

func (*ReportEventStatusesResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportEventStatusesResponse.ProtoReflect.Descriptor instead.

func (*ReportEventStatusesResponse) ProtoMessage added in v0.27.0

func (*ReportEventStatusesResponse) ProtoMessage()

func (*ReportEventStatusesResponse) ProtoReflect added in v0.27.0

func (*ReportEventStatusesResponse) Reset added in v0.27.0

func (x *ReportEventStatusesResponse) Reset()

func (*ReportEventStatusesResponse) String added in v0.27.0

func (x *ReportEventStatusesResponse) String() string

func (*ReportEventStatusesResponse) Validate added in v0.27.0

func (m *ReportEventStatusesResponse) Validate() error

Validate checks the field values on ReportEventStatusesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportEventStatusesResponse) ValidateAll added in v0.27.0

func (m *ReportEventStatusesResponse) ValidateAll() error

ValidateAll checks the field values on ReportEventStatusesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportEventStatusesResponseMultiError, or nil if none found.

type ReportEventStatusesResponseMultiError added in v0.27.0

type ReportEventStatusesResponseMultiError []error

ReportEventStatusesResponseMultiError is an error wrapping multiple validation errors returned by ReportEventStatusesResponse.ValidateAll() if the designated constraints aren't met.

func (ReportEventStatusesResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportEventStatusesResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportEventStatusesResponseValidationError added in v0.27.0

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

ReportEventStatusesResponseValidationError is the validation error returned by ReportEventStatusesResponse.Validate if the designated constraints aren't met.

func (ReportEventStatusesResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportEventStatusesResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportEventStatusesResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportEventStatusesResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportEventStatusesResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportEventStatusesResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportEventsHandledRequest added in v0.27.0

type ReportEventsHandledRequest struct {
	EventIds []string `protobuf:"bytes,1,rep,name=event_ids,json=eventIds,proto3" json:"event_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportEventsHandledRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportEventsHandledRequest.ProtoReflect.Descriptor instead.

func (*ReportEventsHandledRequest) GetEventIds added in v0.27.0

func (x *ReportEventsHandledRequest) GetEventIds() []string

func (*ReportEventsHandledRequest) ProtoMessage added in v0.27.0

func (*ReportEventsHandledRequest) ProtoMessage()

func (*ReportEventsHandledRequest) ProtoReflect added in v0.27.0

func (*ReportEventsHandledRequest) Reset added in v0.27.0

func (x *ReportEventsHandledRequest) Reset()

func (*ReportEventsHandledRequest) String added in v0.27.0

func (x *ReportEventsHandledRequest) String() string

func (*ReportEventsHandledRequest) Validate added in v0.27.0

func (m *ReportEventsHandledRequest) Validate() error

Validate checks the field values on ReportEventsHandledRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportEventsHandledRequest) ValidateAll added in v0.27.0

func (m *ReportEventsHandledRequest) ValidateAll() error

ValidateAll checks the field values on ReportEventsHandledRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportEventsHandledRequestMultiError, or nil if none found.

type ReportEventsHandledRequestMultiError added in v0.27.0

type ReportEventsHandledRequestMultiError []error

ReportEventsHandledRequestMultiError is an error wrapping multiple validation errors returned by ReportEventsHandledRequest.ValidateAll() if the designated constraints aren't met.

func (ReportEventsHandledRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportEventsHandledRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportEventsHandledRequestValidationError added in v0.27.0

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

ReportEventsHandledRequestValidationError is the validation error returned by ReportEventsHandledRequest.Validate if the designated constraints aren't met.

func (ReportEventsHandledRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportEventsHandledRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportEventsHandledRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportEventsHandledRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportEventsHandledRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportEventsHandledRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportEventsHandledResponse added in v0.27.0

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

func (*ReportEventsHandledResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportEventsHandledResponse.ProtoReflect.Descriptor instead.

func (*ReportEventsHandledResponse) ProtoMessage added in v0.27.0

func (*ReportEventsHandledResponse) ProtoMessage()

func (*ReportEventsHandledResponse) ProtoReflect added in v0.27.0

func (*ReportEventsHandledResponse) Reset added in v0.27.0

func (x *ReportEventsHandledResponse) Reset()

func (*ReportEventsHandledResponse) String added in v0.27.0

func (x *ReportEventsHandledResponse) String() string

func (*ReportEventsHandledResponse) Validate added in v0.27.0

func (m *ReportEventsHandledResponse) Validate() error

Validate checks the field values on ReportEventsHandledResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportEventsHandledResponse) ValidateAll added in v0.27.0

func (m *ReportEventsHandledResponse) ValidateAll() error

ValidateAll checks the field values on ReportEventsHandledResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportEventsHandledResponseMultiError, or nil if none found.

type ReportEventsHandledResponseMultiError added in v0.27.0

type ReportEventsHandledResponseMultiError []error

ReportEventsHandledResponseMultiError is an error wrapping multiple validation errors returned by ReportEventsHandledResponse.ValidateAll() if the designated constraints aren't met.

func (ReportEventsHandledResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportEventsHandledResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportEventsHandledResponseValidationError added in v0.27.0

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

ReportEventsHandledResponseValidationError is the validation error returned by ReportEventsHandledResponse.Validate if the designated constraints aren't met.

func (ReportEventsHandledResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportEventsHandledResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportEventsHandledResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportEventsHandledResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportEventsHandledResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportEventsHandledResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportPipedMetaRequest added in v0.27.0

type ReportPipedMetaRequest struct {
	Version           string                            `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	CloudProviders    []*model.Piped_CloudProvider      `protobuf:"bytes,2,rep,name=cloud_providers,json=cloudProviders,proto3" json:"cloud_providers,omitempty"`
	PlatformProviders []*model.Piped_PlatformProvider   `protobuf:"bytes,6,rep,name=platform_providers,json=platformProviders,proto3" json:"platform_providers,omitempty"`
	Repositories      []*model.ApplicationGitRepository `protobuf:"bytes,3,rep,name=repositories,proto3" json:"repositories,omitempty"`
	SecretEncryption  *model.Piped_SecretEncryption     `protobuf:"bytes,4,opt,name=secret_encryption,json=secretEncryption,proto3" json:"secret_encryption,omitempty"`
	Config            string                            `protobuf:"bytes,5,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportPipedMetaRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportPipedMetaRequest.ProtoReflect.Descriptor instead.

func (*ReportPipedMetaRequest) GetCloudProviders added in v0.27.0

func (x *ReportPipedMetaRequest) GetCloudProviders() []*model.Piped_CloudProvider

func (*ReportPipedMetaRequest) GetConfig added in v0.33.0

func (x *ReportPipedMetaRequest) GetConfig() string

func (*ReportPipedMetaRequest) GetPlatformProviders added in v0.34.0

func (x *ReportPipedMetaRequest) GetPlatformProviders() []*model.Piped_PlatformProvider

func (*ReportPipedMetaRequest) GetRepositories added in v0.27.0

func (x *ReportPipedMetaRequest) GetRepositories() []*model.ApplicationGitRepository

func (*ReportPipedMetaRequest) GetSecretEncryption added in v0.27.0

func (x *ReportPipedMetaRequest) GetSecretEncryption() *model.Piped_SecretEncryption

func (*ReportPipedMetaRequest) GetVersion added in v0.27.0

func (x *ReportPipedMetaRequest) GetVersion() string

func (*ReportPipedMetaRequest) ProtoMessage added in v0.27.0

func (*ReportPipedMetaRequest) ProtoMessage()

func (*ReportPipedMetaRequest) ProtoReflect added in v0.27.0

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

func (*ReportPipedMetaRequest) Reset added in v0.27.0

func (x *ReportPipedMetaRequest) Reset()

func (*ReportPipedMetaRequest) String added in v0.27.0

func (x *ReportPipedMetaRequest) String() string

func (*ReportPipedMetaRequest) Validate added in v0.27.0

func (m *ReportPipedMetaRequest) Validate() error

Validate checks the field values on ReportPipedMetaRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportPipedMetaRequest) ValidateAll added in v0.27.0

func (m *ReportPipedMetaRequest) ValidateAll() error

ValidateAll checks the field values on ReportPipedMetaRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportPipedMetaRequestMultiError, or nil if none found.

type ReportPipedMetaRequestMultiError added in v0.27.0

type ReportPipedMetaRequestMultiError []error

ReportPipedMetaRequestMultiError is an error wrapping multiple validation errors returned by ReportPipedMetaRequest.ValidateAll() if the designated constraints aren't met.

func (ReportPipedMetaRequestMultiError) AllErrors added in v0.27.0

func (m ReportPipedMetaRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportPipedMetaRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportPipedMetaRequestValidationError added in v0.27.0

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

ReportPipedMetaRequestValidationError is the validation error returned by ReportPipedMetaRequest.Validate if the designated constraints aren't met.

func (ReportPipedMetaRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportPipedMetaRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportPipedMetaRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportPipedMetaRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportPipedMetaRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportPipedMetaRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportPipedMetaResponse added in v0.27.0

type ReportPipedMetaResponse struct {
	Name       string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	WebBaseUrl string `protobuf:"bytes,2,opt,name=web_base_url,json=webBaseUrl,proto3" json:"web_base_url,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportPipedMetaResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportPipedMetaResponse.ProtoReflect.Descriptor instead.

func (*ReportPipedMetaResponse) GetName added in v0.27.0

func (x *ReportPipedMetaResponse) GetName() string

func (*ReportPipedMetaResponse) GetWebBaseUrl added in v0.27.0

func (x *ReportPipedMetaResponse) GetWebBaseUrl() string

func (*ReportPipedMetaResponse) ProtoMessage added in v0.27.0

func (*ReportPipedMetaResponse) ProtoMessage()

func (*ReportPipedMetaResponse) ProtoReflect added in v0.27.0

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

func (*ReportPipedMetaResponse) Reset added in v0.27.0

func (x *ReportPipedMetaResponse) Reset()

func (*ReportPipedMetaResponse) String added in v0.27.0

func (x *ReportPipedMetaResponse) String() string

func (*ReportPipedMetaResponse) Validate added in v0.27.0

func (m *ReportPipedMetaResponse) Validate() error

Validate checks the field values on ReportPipedMetaResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportPipedMetaResponse) ValidateAll added in v0.27.0

func (m *ReportPipedMetaResponse) ValidateAll() error

ValidateAll checks the field values on ReportPipedMetaResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportPipedMetaResponseMultiError, or nil if none found.

type ReportPipedMetaResponseMultiError added in v0.27.0

type ReportPipedMetaResponseMultiError []error

ReportPipedMetaResponseMultiError is an error wrapping multiple validation errors returned by ReportPipedMetaResponse.ValidateAll() if the designated constraints aren't met.

func (ReportPipedMetaResponseMultiError) AllErrors added in v0.27.0

func (m ReportPipedMetaResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportPipedMetaResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportPipedMetaResponseValidationError added in v0.27.0

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

ReportPipedMetaResponseValidationError is the validation error returned by ReportPipedMetaResponse.Validate if the designated constraints aren't met.

func (ReportPipedMetaResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportPipedMetaResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportPipedMetaResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportPipedMetaResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportPipedMetaResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportPipedMetaResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageLogsFromLastCheckpointRequest added in v0.27.0

type ReportStageLogsFromLastCheckpointRequest struct {
	DeploymentId string            `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	StageId      string            `protobuf:"bytes,2,opt,name=stage_id,json=stageId,proto3" json:"stage_id,omitempty"`
	RetriedCount int32             `protobuf:"varint,3,opt,name=retried_count,json=retriedCount,proto3" json:"retried_count,omitempty"`
	Blocks       []*model.LogBlock `protobuf:"bytes,4,rep,name=blocks,proto3" json:"blocks,omitempty"`
	Completed    bool              `protobuf:"varint,5,opt,name=completed,proto3" json:"completed,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportStageLogsFromLastCheckpointRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageLogsFromLastCheckpointRequest.ProtoReflect.Descriptor instead.

func (*ReportStageLogsFromLastCheckpointRequest) GetBlocks added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) GetCompleted added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) GetDeploymentId added in v0.27.0

func (x *ReportStageLogsFromLastCheckpointRequest) GetDeploymentId() string

func (*ReportStageLogsFromLastCheckpointRequest) GetRetriedCount added in v0.27.0

func (x *ReportStageLogsFromLastCheckpointRequest) GetRetriedCount() int32

func (*ReportStageLogsFromLastCheckpointRequest) GetStageId added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) ProtoMessage added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) ProtoReflect added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) Reset added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) String added in v0.27.0

func (*ReportStageLogsFromLastCheckpointRequest) Validate added in v0.27.0

Validate checks the field values on ReportStageLogsFromLastCheckpointRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageLogsFromLastCheckpointRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportStageLogsFromLastCheckpointRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageLogsFromLastCheckpointRequestMultiError, or nil if none found.

type ReportStageLogsFromLastCheckpointRequestMultiError added in v0.27.0

type ReportStageLogsFromLastCheckpointRequestMultiError []error

ReportStageLogsFromLastCheckpointRequestMultiError is an error wrapping multiple validation errors returned by ReportStageLogsFromLastCheckpointRequest.ValidateAll() if the designated constraints aren't met.

func (ReportStageLogsFromLastCheckpointRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportStageLogsFromLastCheckpointRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageLogsFromLastCheckpointRequestValidationError added in v0.27.0

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

ReportStageLogsFromLastCheckpointRequestValidationError is the validation error returned by ReportStageLogsFromLastCheckpointRequest.Validate if the designated constraints aren't met.

func (ReportStageLogsFromLastCheckpointRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageLogsFromLastCheckpointRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageLogsFromLastCheckpointRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageLogsFromLastCheckpointRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageLogsFromLastCheckpointRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageLogsFromLastCheckpointRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageLogsFromLastCheckpointResponse added in v0.27.0

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

func (*ReportStageLogsFromLastCheckpointResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageLogsFromLastCheckpointResponse.ProtoReflect.Descriptor instead.

func (*ReportStageLogsFromLastCheckpointResponse) ProtoMessage added in v0.27.0

func (*ReportStageLogsFromLastCheckpointResponse) ProtoReflect added in v0.27.0

func (*ReportStageLogsFromLastCheckpointResponse) Reset added in v0.27.0

func (*ReportStageLogsFromLastCheckpointResponse) String added in v0.27.0

func (*ReportStageLogsFromLastCheckpointResponse) Validate added in v0.27.0

Validate checks the field values on ReportStageLogsFromLastCheckpointResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageLogsFromLastCheckpointResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportStageLogsFromLastCheckpointResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageLogsFromLastCheckpointResponseMultiError, or nil if none found.

type ReportStageLogsFromLastCheckpointResponseMultiError added in v0.27.0

type ReportStageLogsFromLastCheckpointResponseMultiError []error

ReportStageLogsFromLastCheckpointResponseMultiError is an error wrapping multiple validation errors returned by ReportStageLogsFromLastCheckpointResponse.ValidateAll() if the designated constraints aren't met.

func (ReportStageLogsFromLastCheckpointResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportStageLogsFromLastCheckpointResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageLogsFromLastCheckpointResponseValidationError added in v0.27.0

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

ReportStageLogsFromLastCheckpointResponseValidationError is the validation error returned by ReportStageLogsFromLastCheckpointResponse.Validate if the designated constraints aren't met.

func (ReportStageLogsFromLastCheckpointResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageLogsFromLastCheckpointResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageLogsFromLastCheckpointResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageLogsFromLastCheckpointResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageLogsFromLastCheckpointResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageLogsFromLastCheckpointResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageLogsRequest added in v0.27.0

type ReportStageLogsRequest struct {
	DeploymentId string            `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	StageId      string            `protobuf:"bytes,2,opt,name=stage_id,json=stageId,proto3" json:"stage_id,omitempty"`
	RetriedCount int32             `protobuf:"varint,3,opt,name=retried_count,json=retriedCount,proto3" json:"retried_count,omitempty"`
	Blocks       []*model.LogBlock `protobuf:"bytes,4,rep,name=blocks,proto3" json:"blocks,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportStageLogsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageLogsRequest.ProtoReflect.Descriptor instead.

func (*ReportStageLogsRequest) GetBlocks added in v0.27.0

func (x *ReportStageLogsRequest) GetBlocks() []*model.LogBlock

func (*ReportStageLogsRequest) GetDeploymentId added in v0.27.0

func (x *ReportStageLogsRequest) GetDeploymentId() string

func (*ReportStageLogsRequest) GetRetriedCount added in v0.27.0

func (x *ReportStageLogsRequest) GetRetriedCount() int32

func (*ReportStageLogsRequest) GetStageId added in v0.27.0

func (x *ReportStageLogsRequest) GetStageId() string

func (*ReportStageLogsRequest) ProtoMessage added in v0.27.0

func (*ReportStageLogsRequest) ProtoMessage()

func (*ReportStageLogsRequest) ProtoReflect added in v0.27.0

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

func (*ReportStageLogsRequest) Reset added in v0.27.0

func (x *ReportStageLogsRequest) Reset()

func (*ReportStageLogsRequest) String added in v0.27.0

func (x *ReportStageLogsRequest) String() string

func (*ReportStageLogsRequest) Validate added in v0.27.0

func (m *ReportStageLogsRequest) Validate() error

Validate checks the field values on ReportStageLogsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageLogsRequest) ValidateAll added in v0.27.0

func (m *ReportStageLogsRequest) ValidateAll() error

ValidateAll checks the field values on ReportStageLogsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageLogsRequestMultiError, or nil if none found.

type ReportStageLogsRequestMultiError added in v0.27.0

type ReportStageLogsRequestMultiError []error

ReportStageLogsRequestMultiError is an error wrapping multiple validation errors returned by ReportStageLogsRequest.ValidateAll() if the designated constraints aren't met.

func (ReportStageLogsRequestMultiError) AllErrors added in v0.27.0

func (m ReportStageLogsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportStageLogsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageLogsRequestValidationError added in v0.27.0

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

ReportStageLogsRequestValidationError is the validation error returned by ReportStageLogsRequest.Validate if the designated constraints aren't met.

func (ReportStageLogsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageLogsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageLogsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageLogsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageLogsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageLogsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageLogsResponse added in v0.27.0

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

func (*ReportStageLogsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageLogsResponse.ProtoReflect.Descriptor instead.

func (*ReportStageLogsResponse) ProtoMessage added in v0.27.0

func (*ReportStageLogsResponse) ProtoMessage()

func (*ReportStageLogsResponse) ProtoReflect added in v0.27.0

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

func (*ReportStageLogsResponse) Reset added in v0.27.0

func (x *ReportStageLogsResponse) Reset()

func (*ReportStageLogsResponse) String added in v0.27.0

func (x *ReportStageLogsResponse) String() string

func (*ReportStageLogsResponse) Validate added in v0.27.0

func (m *ReportStageLogsResponse) Validate() error

Validate checks the field values on ReportStageLogsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageLogsResponse) ValidateAll added in v0.27.0

func (m *ReportStageLogsResponse) ValidateAll() error

ValidateAll checks the field values on ReportStageLogsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageLogsResponseMultiError, or nil if none found.

type ReportStageLogsResponseMultiError added in v0.27.0

type ReportStageLogsResponseMultiError []error

ReportStageLogsResponseMultiError is an error wrapping multiple validation errors returned by ReportStageLogsResponse.ValidateAll() if the designated constraints aren't met.

func (ReportStageLogsResponseMultiError) AllErrors added in v0.27.0

func (m ReportStageLogsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportStageLogsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageLogsResponseValidationError added in v0.27.0

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

ReportStageLogsResponseValidationError is the validation error returned by ReportStageLogsResponse.Validate if the designated constraints aren't met.

func (ReportStageLogsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageLogsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageLogsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageLogsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageLogsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageLogsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageStatusChangedRequest added in v0.27.0

type ReportStageStatusChangedRequest struct {
	DeploymentId string            `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	StageId      string            `protobuf:"bytes,2,opt,name=stage_id,json=stageId,proto3" json:"stage_id,omitempty"`
	Status       model.StageStatus `protobuf:"varint,3,opt,name=status,proto3,enum=model.StageStatus" json:"status,omitempty"`
	// The human-readable description why the stage is at current status.
	StatusReason string   `protobuf:"bytes,4,opt,name=status_reason,json=statusReason,proto3" json:"status_reason,omitempty"`
	Requires     []string `protobuf:"bytes,5,rep,name=requires,proto3" json:"requires,omitempty"`
	Visible      bool     `protobuf:"varint,6,opt,name=visible,proto3" json:"visible,omitempty"`
	RetriedCount int32    `protobuf:"varint,7,opt,name=retried_count,json=retriedCount,proto3" json:"retried_count,omitempty"`
	CompletedAt  int64    `protobuf:"varint,13,opt,name=completed_at,json=completedAt,proto3" json:"completed_at,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportStageStatusChangedRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageStatusChangedRequest.ProtoReflect.Descriptor instead.

func (*ReportStageStatusChangedRequest) GetCompletedAt added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetCompletedAt() int64

func (*ReportStageStatusChangedRequest) GetDeploymentId added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetDeploymentId() string

func (*ReportStageStatusChangedRequest) GetRequires added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetRequires() []string

func (*ReportStageStatusChangedRequest) GetRetriedCount added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetRetriedCount() int32

func (*ReportStageStatusChangedRequest) GetStageId added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetStageId() string

func (*ReportStageStatusChangedRequest) GetStatus added in v0.27.0

func (*ReportStageStatusChangedRequest) GetStatusReason added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetStatusReason() string

func (*ReportStageStatusChangedRequest) GetVisible added in v0.27.0

func (x *ReportStageStatusChangedRequest) GetVisible() bool

func (*ReportStageStatusChangedRequest) ProtoMessage added in v0.27.0

func (*ReportStageStatusChangedRequest) ProtoMessage()

func (*ReportStageStatusChangedRequest) ProtoReflect added in v0.27.0

func (*ReportStageStatusChangedRequest) Reset added in v0.27.0

func (*ReportStageStatusChangedRequest) String added in v0.27.0

func (*ReportStageStatusChangedRequest) Validate added in v0.27.0

func (m *ReportStageStatusChangedRequest) Validate() error

Validate checks the field values on ReportStageStatusChangedRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageStatusChangedRequest) ValidateAll added in v0.27.0

func (m *ReportStageStatusChangedRequest) ValidateAll() error

ValidateAll checks the field values on ReportStageStatusChangedRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageStatusChangedRequestMultiError, or nil if none found.

type ReportStageStatusChangedRequestMultiError added in v0.27.0

type ReportStageStatusChangedRequestMultiError []error

ReportStageStatusChangedRequestMultiError is an error wrapping multiple validation errors returned by ReportStageStatusChangedRequest.ValidateAll() if the designated constraints aren't met.

func (ReportStageStatusChangedRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportStageStatusChangedRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageStatusChangedRequestValidationError added in v0.27.0

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

ReportStageStatusChangedRequestValidationError is the validation error returned by ReportStageStatusChangedRequest.Validate if the designated constraints aren't met.

func (ReportStageStatusChangedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageStatusChangedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageStatusChangedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageStatusChangedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageStatusChangedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageStatusChangedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStageStatusChangedResponse added in v0.27.0

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

func (*ReportStageStatusChangedResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStageStatusChangedResponse.ProtoReflect.Descriptor instead.

func (*ReportStageStatusChangedResponse) ProtoMessage added in v0.27.0

func (*ReportStageStatusChangedResponse) ProtoMessage()

func (*ReportStageStatusChangedResponse) ProtoReflect added in v0.27.0

func (*ReportStageStatusChangedResponse) Reset added in v0.27.0

func (*ReportStageStatusChangedResponse) String added in v0.27.0

func (*ReportStageStatusChangedResponse) Validate added in v0.27.0

Validate checks the field values on ReportStageStatusChangedResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStageStatusChangedResponse) ValidateAll added in v0.27.0

func (m *ReportStageStatusChangedResponse) ValidateAll() error

ValidateAll checks the field values on ReportStageStatusChangedResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStageStatusChangedResponseMultiError, or nil if none found.

type ReportStageStatusChangedResponseMultiError added in v0.27.0

type ReportStageStatusChangedResponseMultiError []error

ReportStageStatusChangedResponseMultiError is an error wrapping multiple validation errors returned by ReportStageStatusChangedResponse.ValidateAll() if the designated constraints aren't met.

func (ReportStageStatusChangedResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportStageStatusChangedResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStageStatusChangedResponseValidationError added in v0.27.0

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

ReportStageStatusChangedResponseValidationError is the validation error returned by ReportStageStatusChangedResponse.Validate if the designated constraints aren't met.

func (ReportStageStatusChangedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStageStatusChangedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStageStatusChangedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStageStatusChangedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStageStatusChangedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStageStatusChangedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStatRequest added in v0.27.0

type ReportStatRequest struct {

	// Metrics byte sequence in OpenMetrics format.
	PipedStats []byte `protobuf:"bytes,1,opt,name=piped_stats,json=pipedStats,proto3" json:"piped_stats,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportStatRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStatRequest.ProtoReflect.Descriptor instead.

func (*ReportStatRequest) GetPipedStats added in v0.27.0

func (x *ReportStatRequest) GetPipedStats() []byte

func (*ReportStatRequest) ProtoMessage added in v0.27.0

func (*ReportStatRequest) ProtoMessage()

func (*ReportStatRequest) ProtoReflect added in v0.27.0

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

func (*ReportStatRequest) Reset added in v0.27.0

func (x *ReportStatRequest) Reset()

func (*ReportStatRequest) String added in v0.27.0

func (x *ReportStatRequest) String() string

func (*ReportStatRequest) Validate added in v0.27.0

func (m *ReportStatRequest) Validate() error

Validate checks the field values on ReportStatRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStatRequest) ValidateAll added in v0.27.0

func (m *ReportStatRequest) ValidateAll() error

ValidateAll checks the field values on ReportStatRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStatRequestMultiError, or nil if none found.

type ReportStatRequestMultiError added in v0.27.0

type ReportStatRequestMultiError []error

ReportStatRequestMultiError is an error wrapping multiple validation errors returned by ReportStatRequest.ValidateAll() if the designated constraints aren't met.

func (ReportStatRequestMultiError) AllErrors added in v0.27.0

func (m ReportStatRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportStatRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStatRequestValidationError added in v0.27.0

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

ReportStatRequestValidationError is the validation error returned by ReportStatRequest.Validate if the designated constraints aren't met.

func (ReportStatRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStatRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStatRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStatRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStatRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStatRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportStatResponse added in v0.27.0

type ReportStatResponse struct {
	ReportInterval int64 `protobuf:"varint,1,opt,name=report_interval,json=reportInterval,proto3" json:"report_interval,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportStatResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use ReportStatResponse.ProtoReflect.Descriptor instead.

func (*ReportStatResponse) GetReportInterval added in v0.27.0

func (x *ReportStatResponse) GetReportInterval() int64

func (*ReportStatResponse) ProtoMessage added in v0.27.0

func (*ReportStatResponse) ProtoMessage()

func (*ReportStatResponse) ProtoReflect added in v0.27.0

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

func (*ReportStatResponse) Reset added in v0.27.0

func (x *ReportStatResponse) Reset()

func (*ReportStatResponse) String added in v0.27.0

func (x *ReportStatResponse) String() string

func (*ReportStatResponse) Validate added in v0.27.0

func (m *ReportStatResponse) Validate() error

Validate checks the field values on ReportStatResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportStatResponse) ValidateAll added in v0.27.0

func (m *ReportStatResponse) ValidateAll() error

ValidateAll checks the field values on ReportStatResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportStatResponseMultiError, or nil if none found.

type ReportStatResponseMultiError added in v0.27.0

type ReportStatResponseMultiError []error

ReportStatResponseMultiError is an error wrapping multiple validation errors returned by ReportStatResponse.ValidateAll() if the designated constraints aren't met.

func (ReportStatResponseMultiError) AllErrors added in v0.27.0

func (m ReportStatResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReportStatResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportStatResponseValidationError added in v0.27.0

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

ReportStatResponseValidationError is the validation error returned by ReportStatResponse.Validate if the designated constraints aren't met.

func (ReportStatResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportStatResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportStatResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportStatResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportStatResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportStatResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportUnregisteredApplicationConfigurationsRequest added in v0.27.0

type ReportUnregisteredApplicationConfigurationsRequest struct {

	// All the latest application configurations that isn't registered yet.
	// Note that ALL configs are always be contained every time.
	Applications []*model.ApplicationInfo `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*ReportUnregisteredApplicationConfigurationsRequest) Descriptor deprecated added in v0.27.0

Deprecated: Use ReportUnregisteredApplicationConfigurationsRequest.ProtoReflect.Descriptor instead.

func (*ReportUnregisteredApplicationConfigurationsRequest) GetApplications added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsRequest) ProtoMessage added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsRequest) ProtoReflect added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsRequest) Reset added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsRequest) String added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsRequest) Validate added in v0.27.0

Validate checks the field values on ReportUnregisteredApplicationConfigurationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportUnregisteredApplicationConfigurationsRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportUnregisteredApplicationConfigurationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportUnregisteredApplicationConfigurationsRequestMultiError, or nil if none found.

type ReportUnregisteredApplicationConfigurationsRequestMultiError added in v0.27.0

type ReportUnregisteredApplicationConfigurationsRequestMultiError []error

ReportUnregisteredApplicationConfigurationsRequestMultiError is an error wrapping multiple validation errors returned by ReportUnregisteredApplicationConfigurationsRequest.ValidateAll() if the designated constraints aren't met.

func (ReportUnregisteredApplicationConfigurationsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportUnregisteredApplicationConfigurationsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportUnregisteredApplicationConfigurationsRequestValidationError added in v0.27.0

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

ReportUnregisteredApplicationConfigurationsRequestValidationError is the validation error returned by ReportUnregisteredApplicationConfigurationsRequest.Validate if the designated constraints aren't met.

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportUnregisteredApplicationConfigurationsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ReportUnregisteredApplicationConfigurationsResponse added in v0.27.0

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

func (*ReportUnregisteredApplicationConfigurationsResponse) Descriptor deprecated added in v0.27.0

Deprecated: Use ReportUnregisteredApplicationConfigurationsResponse.ProtoReflect.Descriptor instead.

func (*ReportUnregisteredApplicationConfigurationsResponse) ProtoMessage added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsResponse) ProtoReflect added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsResponse) Reset added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsResponse) String added in v0.27.0

func (*ReportUnregisteredApplicationConfigurationsResponse) Validate added in v0.27.0

Validate checks the field values on ReportUnregisteredApplicationConfigurationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ReportUnregisteredApplicationConfigurationsResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on ReportUnregisteredApplicationConfigurationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReportUnregisteredApplicationConfigurationsResponseMultiError, or nil if none found.

type ReportUnregisteredApplicationConfigurationsResponseMultiError added in v0.27.0

type ReportUnregisteredApplicationConfigurationsResponseMultiError []error

ReportUnregisteredApplicationConfigurationsResponseMultiError is an error wrapping multiple validation errors returned by ReportUnregisteredApplicationConfigurationsResponse.ValidateAll() if the designated constraints aren't met.

func (ReportUnregisteredApplicationConfigurationsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (ReportUnregisteredApplicationConfigurationsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type ReportUnregisteredApplicationConfigurationsResponseValidationError added in v0.27.0

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

ReportUnregisteredApplicationConfigurationsResponseValidationError is the validation error returned by ReportUnregisteredApplicationConfigurationsResponse.Validate if the designated constraints aren't met.

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (ReportUnregisteredApplicationConfigurationsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type SaveDeploymentMetadataRequest added in v0.27.0

type SaveDeploymentMetadataRequest struct {
	DeploymentId string            `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	Metadata     map[string]string `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SaveDeploymentMetadataRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use SaveDeploymentMetadataRequest.ProtoReflect.Descriptor instead.

func (*SaveDeploymentMetadataRequest) GetDeploymentId added in v0.27.0

func (x *SaveDeploymentMetadataRequest) GetDeploymentId() string

func (*SaveDeploymentMetadataRequest) GetMetadata added in v0.27.0

func (x *SaveDeploymentMetadataRequest) GetMetadata() map[string]string

func (*SaveDeploymentMetadataRequest) ProtoMessage added in v0.27.0

func (*SaveDeploymentMetadataRequest) ProtoMessage()

func (*SaveDeploymentMetadataRequest) ProtoReflect added in v0.27.0

func (*SaveDeploymentMetadataRequest) Reset added in v0.27.0

func (x *SaveDeploymentMetadataRequest) Reset()

func (*SaveDeploymentMetadataRequest) String added in v0.27.0

func (*SaveDeploymentMetadataRequest) Validate added in v0.27.0

func (m *SaveDeploymentMetadataRequest) Validate() error

Validate checks the field values on SaveDeploymentMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SaveDeploymentMetadataRequest) ValidateAll added in v0.27.0

func (m *SaveDeploymentMetadataRequest) ValidateAll() error

ValidateAll checks the field values on SaveDeploymentMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SaveDeploymentMetadataRequestMultiError, or nil if none found.

type SaveDeploymentMetadataRequestMultiError added in v0.27.0

type SaveDeploymentMetadataRequestMultiError []error

SaveDeploymentMetadataRequestMultiError is an error wrapping multiple validation errors returned by SaveDeploymentMetadataRequest.ValidateAll() if the designated constraints aren't met.

func (SaveDeploymentMetadataRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (SaveDeploymentMetadataRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type SaveDeploymentMetadataRequestValidationError added in v0.27.0

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

SaveDeploymentMetadataRequestValidationError is the validation error returned by SaveDeploymentMetadataRequest.Validate if the designated constraints aren't met.

func (SaveDeploymentMetadataRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SaveDeploymentMetadataRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SaveDeploymentMetadataRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SaveDeploymentMetadataRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (SaveDeploymentMetadataRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (SaveDeploymentMetadataRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type SaveDeploymentMetadataResponse added in v0.27.0

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

func (*SaveDeploymentMetadataResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use SaveDeploymentMetadataResponse.ProtoReflect.Descriptor instead.

func (*SaveDeploymentMetadataResponse) ProtoMessage added in v0.27.0

func (*SaveDeploymentMetadataResponse) ProtoMessage()

func (*SaveDeploymentMetadataResponse) ProtoReflect added in v0.27.0

func (*SaveDeploymentMetadataResponse) Reset added in v0.27.0

func (x *SaveDeploymentMetadataResponse) Reset()

func (*SaveDeploymentMetadataResponse) String added in v0.27.0

func (*SaveDeploymentMetadataResponse) Validate added in v0.27.0

func (m *SaveDeploymentMetadataResponse) Validate() error

Validate checks the field values on SaveDeploymentMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SaveDeploymentMetadataResponse) ValidateAll added in v0.27.0

func (m *SaveDeploymentMetadataResponse) ValidateAll() error

ValidateAll checks the field values on SaveDeploymentMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SaveDeploymentMetadataResponseMultiError, or nil if none found.

type SaveDeploymentMetadataResponseMultiError added in v0.27.0

type SaveDeploymentMetadataResponseMultiError []error

SaveDeploymentMetadataResponseMultiError is an error wrapping multiple validation errors returned by SaveDeploymentMetadataResponse.ValidateAll() if the designated constraints aren't met.

func (SaveDeploymentMetadataResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (SaveDeploymentMetadataResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type SaveDeploymentMetadataResponseValidationError added in v0.27.0

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

SaveDeploymentMetadataResponseValidationError is the validation error returned by SaveDeploymentMetadataResponse.Validate if the designated constraints aren't met.

func (SaveDeploymentMetadataResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SaveDeploymentMetadataResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SaveDeploymentMetadataResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SaveDeploymentMetadataResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (SaveDeploymentMetadataResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (SaveDeploymentMetadataResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type SaveStageMetadataRequest added in v0.27.0

type SaveStageMetadataRequest struct {
	DeploymentId string            `protobuf:"bytes,1,opt,name=deployment_id,json=deploymentId,proto3" json:"deployment_id,omitempty"`
	StageId      string            `protobuf:"bytes,2,opt,name=stage_id,json=stageId,proto3" json:"stage_id,omitempty"`
	Metadata     map[string]string `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SaveStageMetadataRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use SaveStageMetadataRequest.ProtoReflect.Descriptor instead.

func (*SaveStageMetadataRequest) GetDeploymentId added in v0.27.0

func (x *SaveStageMetadataRequest) GetDeploymentId() string

func (*SaveStageMetadataRequest) GetMetadata added in v0.27.0

func (x *SaveStageMetadataRequest) GetMetadata() map[string]string

func (*SaveStageMetadataRequest) GetStageId added in v0.27.0

func (x *SaveStageMetadataRequest) GetStageId() string

func (*SaveStageMetadataRequest) ProtoMessage added in v0.27.0

func (*SaveStageMetadataRequest) ProtoMessage()

func (*SaveStageMetadataRequest) ProtoReflect added in v0.27.0

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

func (*SaveStageMetadataRequest) Reset added in v0.27.0

func (x *SaveStageMetadataRequest) Reset()

func (*SaveStageMetadataRequest) String added in v0.27.0

func (x *SaveStageMetadataRequest) String() string

func (*SaveStageMetadataRequest) Validate added in v0.27.0

func (m *SaveStageMetadataRequest) Validate() error

Validate checks the field values on SaveStageMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SaveStageMetadataRequest) ValidateAll added in v0.27.0

func (m *SaveStageMetadataRequest) ValidateAll() error

ValidateAll checks the field values on SaveStageMetadataRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SaveStageMetadataRequestMultiError, or nil if none found.

type SaveStageMetadataRequestMultiError added in v0.27.0

type SaveStageMetadataRequestMultiError []error

SaveStageMetadataRequestMultiError is an error wrapping multiple validation errors returned by SaveStageMetadataRequest.ValidateAll() if the designated constraints aren't met.

func (SaveStageMetadataRequestMultiError) AllErrors added in v0.27.0

func (m SaveStageMetadataRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SaveStageMetadataRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type SaveStageMetadataRequestValidationError added in v0.27.0

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

SaveStageMetadataRequestValidationError is the validation error returned by SaveStageMetadataRequest.Validate if the designated constraints aren't met.

func (SaveStageMetadataRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SaveStageMetadataRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SaveStageMetadataRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SaveStageMetadataRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (SaveStageMetadataRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (SaveStageMetadataRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type SaveStageMetadataResponse added in v0.27.0

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

func (*SaveStageMetadataResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use SaveStageMetadataResponse.ProtoReflect.Descriptor instead.

func (*SaveStageMetadataResponse) ProtoMessage added in v0.27.0

func (*SaveStageMetadataResponse) ProtoMessage()

func (*SaveStageMetadataResponse) ProtoReflect added in v0.27.0

func (*SaveStageMetadataResponse) Reset added in v0.27.0

func (x *SaveStageMetadataResponse) Reset()

func (*SaveStageMetadataResponse) String added in v0.27.0

func (x *SaveStageMetadataResponse) String() string

func (*SaveStageMetadataResponse) Validate added in v0.27.0

func (m *SaveStageMetadataResponse) Validate() error

Validate checks the field values on SaveStageMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SaveStageMetadataResponse) ValidateAll added in v0.27.0

func (m *SaveStageMetadataResponse) ValidateAll() error

ValidateAll checks the field values on SaveStageMetadataResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SaveStageMetadataResponseMultiError, or nil if none found.

type SaveStageMetadataResponseMultiError added in v0.27.0

type SaveStageMetadataResponseMultiError []error

SaveStageMetadataResponseMultiError is an error wrapping multiple validation errors returned by SaveStageMetadataResponse.ValidateAll() if the designated constraints aren't met.

func (SaveStageMetadataResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (SaveStageMetadataResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type SaveStageMetadataResponseValidationError added in v0.27.0

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

SaveStageMetadataResponseValidationError is the validation error returned by SaveStageMetadataResponse.Validate if the designated constraints aren't met.

func (SaveStageMetadataResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SaveStageMetadataResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SaveStageMetadataResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SaveStageMetadataResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (SaveStageMetadataResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (SaveStageMetadataResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type UnimplementedPipedServiceServer added in v0.27.0

type UnimplementedPipedServiceServer struct {
}

UnimplementedPipedServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedPipedServiceServer) CreateDeployment added in v0.27.0

func (UnimplementedPipedServiceServer) CreateDeploymentChain added in v0.27.0

func (UnimplementedPipedServiceServer) GetApplicationMostRecentDeployment added in v0.27.0

func (UnimplementedPipedServiceServer) GetDeployment added in v0.27.0

func (UnimplementedPipedServiceServer) GetDesiredVersion added in v0.27.0

func (UnimplementedPipedServiceServer) GetLatestAnalysisResult added in v0.27.0

func (UnimplementedPipedServiceServer) GetLatestEvent added in v0.27.0

func (UnimplementedPipedServiceServer) InChainDeploymentPlannable added in v0.27.0

func (UnimplementedPipedServiceServer) ListApplications added in v0.27.0

func (UnimplementedPipedServiceServer) ListEvents added in v0.27.0

func (UnimplementedPipedServiceServer) ListNotCompletedDeployments added in v0.27.0

func (UnimplementedPipedServiceServer) ListUnhandledCommands added in v0.27.0

func (UnimplementedPipedServiceServer) PutLatestAnalysisResult added in v0.27.0

func (UnimplementedPipedServiceServer) ReportApplicationDeployingStatus added in v0.27.0

func (UnimplementedPipedServiceServer) ReportApplicationLiveState added in v0.27.0

func (UnimplementedPipedServiceServer) ReportApplicationLiveStateEvents added in v0.27.0

func (UnimplementedPipedServiceServer) ReportApplicationSyncState added in v0.27.0

func (UnimplementedPipedServiceServer) ReportCommandHandled added in v0.27.0

func (UnimplementedPipedServiceServer) ReportDeploymentCompleted added in v0.27.0

func (UnimplementedPipedServiceServer) ReportDeploymentPlanned added in v0.27.0

func (UnimplementedPipedServiceServer) ReportDeploymentStatusChanged added in v0.27.0

func (UnimplementedPipedServiceServer) ReportEventStatuses added in v0.27.0

func (UnimplementedPipedServiceServer) ReportEventsHandled added in v0.27.0

func (UnimplementedPipedServiceServer) ReportPipedMeta added in v0.27.0

func (UnimplementedPipedServiceServer) ReportStageLogs added in v0.27.0

func (UnimplementedPipedServiceServer) ReportStageLogsFromLastCheckpoint added in v0.27.0

func (UnimplementedPipedServiceServer) ReportStageStatusChanged added in v0.27.0

func (UnimplementedPipedServiceServer) ReportStat added in v0.27.0

func (UnimplementedPipedServiceServer) SaveDeploymentMetadata added in v0.27.0

func (UnimplementedPipedServiceServer) SaveStageMetadata added in v0.27.0

func (UnimplementedPipedServiceServer) UpdateApplicationConfigurations added in v0.27.0

type UnsafePipedServiceServer added in v0.27.0

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

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

type UpdateApplicationConfigurationsRequest added in v0.27.0

type UpdateApplicationConfigurationsRequest struct {

	// The application configurations that should be updated.
	Applications []*model.ApplicationInfo `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateApplicationConfigurationsRequest) Descriptor deprecated added in v0.27.0

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

Deprecated: Use UpdateApplicationConfigurationsRequest.ProtoReflect.Descriptor instead.

func (*UpdateApplicationConfigurationsRequest) GetApplications added in v0.27.0

func (*UpdateApplicationConfigurationsRequest) ProtoMessage added in v0.27.0

func (*UpdateApplicationConfigurationsRequest) ProtoReflect added in v0.27.0

func (*UpdateApplicationConfigurationsRequest) Reset added in v0.27.0

func (*UpdateApplicationConfigurationsRequest) String added in v0.27.0

func (*UpdateApplicationConfigurationsRequest) Validate added in v0.27.0

Validate checks the field values on UpdateApplicationConfigurationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateApplicationConfigurationsRequest) ValidateAll added in v0.27.0

ValidateAll checks the field values on UpdateApplicationConfigurationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateApplicationConfigurationsRequestMultiError, or nil if none found.

type UpdateApplicationConfigurationsRequestMultiError added in v0.27.0

type UpdateApplicationConfigurationsRequestMultiError []error

UpdateApplicationConfigurationsRequestMultiError is an error wrapping multiple validation errors returned by UpdateApplicationConfigurationsRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateApplicationConfigurationsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (UpdateApplicationConfigurationsRequestMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type UpdateApplicationConfigurationsRequestValidationError added in v0.27.0

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

UpdateApplicationConfigurationsRequestValidationError is the validation error returned by UpdateApplicationConfigurationsRequest.Validate if the designated constraints aren't met.

func (UpdateApplicationConfigurationsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (UpdateApplicationConfigurationsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (UpdateApplicationConfigurationsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (UpdateApplicationConfigurationsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (UpdateApplicationConfigurationsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (UpdateApplicationConfigurationsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type UpdateApplicationConfigurationsResponse added in v0.27.0

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

func (*UpdateApplicationConfigurationsResponse) Descriptor deprecated added in v0.27.0

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

Deprecated: Use UpdateApplicationConfigurationsResponse.ProtoReflect.Descriptor instead.

func (*UpdateApplicationConfigurationsResponse) ProtoMessage added in v0.27.0

func (*UpdateApplicationConfigurationsResponse) ProtoReflect added in v0.27.0

func (*UpdateApplicationConfigurationsResponse) Reset added in v0.27.0

func (*UpdateApplicationConfigurationsResponse) String added in v0.27.0

func (*UpdateApplicationConfigurationsResponse) Validate added in v0.27.0

Validate checks the field values on UpdateApplicationConfigurationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateApplicationConfigurationsResponse) ValidateAll added in v0.27.0

ValidateAll checks the field values on UpdateApplicationConfigurationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateApplicationConfigurationsResponseMultiError, or nil if none found.

type UpdateApplicationConfigurationsResponseMultiError added in v0.27.0

type UpdateApplicationConfigurationsResponseMultiError []error

UpdateApplicationConfigurationsResponseMultiError is an error wrapping multiple validation errors returned by UpdateApplicationConfigurationsResponse.ValidateAll() if the designated constraints aren't met.

func (UpdateApplicationConfigurationsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (UpdateApplicationConfigurationsResponseMultiError) Error added in v0.27.0

Error returns a concatenation of all the error messages it wraps.

type UpdateApplicationConfigurationsResponseValidationError added in v0.27.0

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

UpdateApplicationConfigurationsResponseValidationError is the validation error returned by UpdateApplicationConfigurationsResponse.Validate if the designated constraints aren't met.

func (UpdateApplicationConfigurationsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (UpdateApplicationConfigurationsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (UpdateApplicationConfigurationsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (UpdateApplicationConfigurationsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (UpdateApplicationConfigurationsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (UpdateApplicationConfigurationsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

Jump to

Keyboard shortcuts

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