apiservice

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: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var APIService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "grpc.service.apiservice.APIService",
	HandlerType: (*APIServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "AddApplication",
			Handler:    _APIService_AddApplication_Handler,
		},
		{
			MethodName: "SyncApplication",
			Handler:    _APIService_SyncApplication_Handler,
		},
		{
			MethodName: "GetApplication",
			Handler:    _APIService_GetApplication_Handler,
		},
		{
			MethodName: "ListApplications",
			Handler:    _APIService_ListApplications_Handler,
		},
		{
			MethodName: "UpdateApplication",
			Handler:    _APIService_UpdateApplication_Handler,
		},
		{
			MethodName: "DeleteApplication",
			Handler:    _APIService_DeleteApplication_Handler,
		},
		{
			MethodName: "EnableApplication",
			Handler:    _APIService_EnableApplication_Handler,
		},
		{
			MethodName: "DisableApplication",
			Handler:    _APIService_DisableApplication_Handler,
		},
		{
			MethodName: "RenameApplicationConfigFile",
			Handler:    _APIService_RenameApplicationConfigFile_Handler,
		},
		{
			MethodName: "GetDeployment",
			Handler:    _APIService_GetDeployment_Handler,
		},
		{
			MethodName: "ListDeployments",
			Handler:    _APIService_ListDeployments_Handler,
		},
		{
			MethodName: "GetCommand",
			Handler:    _APIService_GetCommand_Handler,
		},
		{
			MethodName: "GetPiped",
			Handler:    _APIService_GetPiped_Handler,
		},
		{
			MethodName: "RegisterPiped",
			Handler:    _APIService_RegisterPiped_Handler,
		},
		{
			MethodName: "UpdatePiped",
			Handler:    _APIService_UpdatePiped_Handler,
		},
		{
			MethodName: "EnablePiped",
			Handler:    _APIService_EnablePiped_Handler,
		},
		{
			MethodName: "DisablePiped",
			Handler:    _APIService_DisablePiped_Handler,
		},
		{
			MethodName: "RegisterEvent",
			Handler:    _APIService_RegisterEvent_Handler,
		},
		{
			MethodName: "RequestPlanPreview",
			Handler:    _APIService_RequestPlanPreview_Handler,
		},
		{
			MethodName: "GetPlanPreviewResults",
			Handler:    _APIService_GetPlanPreviewResults_Handler,
		},
		{
			MethodName: "Encrypt",
			Handler:    _APIService_Encrypt_Handler,
		},
		{
			MethodName: "ListStageLogs",
			Handler:    _APIService_ListStageLogs_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "pkg/app/server/service/apiservice/service.proto",
}

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

View Source
var File_pkg_app_server_service_apiservice_service_proto protoreflect.FileDescriptor

Functions

func RegisterAPIServiceServer added in v0.27.0

func RegisterAPIServiceServer(s grpc.ServiceRegistrar, srv APIServiceServer)

Types

type APIServiceClient added in v0.27.0

type APIServiceClient interface {
	AddApplication(ctx context.Context, in *AddApplicationRequest, opts ...grpc.CallOption) (*AddApplicationResponse, error)
	SyncApplication(ctx context.Context, in *SyncApplicationRequest, opts ...grpc.CallOption) (*SyncApplicationResponse, error)
	GetApplication(ctx context.Context, in *GetApplicationRequest, opts ...grpc.CallOption) (*GetApplicationResponse, error)
	ListApplications(ctx context.Context, in *ListApplicationsRequest, opts ...grpc.CallOption) (*ListApplicationsResponse, error)
	UpdateApplication(ctx context.Context, in *UpdateApplicationRequest, opts ...grpc.CallOption) (*UpdateApplicationResponse, error)
	DeleteApplication(ctx context.Context, in *DeleteApplicationRequest, opts ...grpc.CallOption) (*DeleteApplicationResponse, error)
	EnableApplication(ctx context.Context, in *EnableApplicationRequest, opts ...grpc.CallOption) (*EnableApplicationResponse, error)
	DisableApplication(ctx context.Context, in *DisableApplicationRequest, opts ...grpc.CallOption) (*DisableApplicationResponse, error)
	RenameApplicationConfigFile(ctx context.Context, in *RenameApplicationConfigFileRequest, opts ...grpc.CallOption) (*RenameApplicationConfigFileResponse, error)
	GetDeployment(ctx context.Context, in *GetDeploymentRequest, opts ...grpc.CallOption) (*GetDeploymentResponse, error)
	ListDeployments(ctx context.Context, in *ListDeploymentsRequest, opts ...grpc.CallOption) (*ListDeploymentsResponse, error)
	GetCommand(ctx context.Context, in *GetCommandRequest, opts ...grpc.CallOption) (*GetCommandResponse, error)
	GetPiped(ctx context.Context, in *GetPipedRequest, opts ...grpc.CallOption) (*GetPipedResponse, error)
	RegisterPiped(ctx context.Context, in *RegisterPipedRequest, opts ...grpc.CallOption) (*RegisterPipedResponse, error)
	UpdatePiped(ctx context.Context, in *UpdatePipedRequest, opts ...grpc.CallOption) (*UpdatePipedResponse, error)
	EnablePiped(ctx context.Context, in *EnablePipedRequest, opts ...grpc.CallOption) (*EnablePipedResponse, error)
	DisablePiped(ctx context.Context, in *DisablePipedRequest, opts ...grpc.CallOption) (*DisablePipedResponse, error)
	RegisterEvent(ctx context.Context, in *RegisterEventRequest, opts ...grpc.CallOption) (*RegisterEventResponse, error)
	RequestPlanPreview(ctx context.Context, in *RequestPlanPreviewRequest, opts ...grpc.CallOption) (*RequestPlanPreviewResponse, error)
	GetPlanPreviewResults(ctx context.Context, in *GetPlanPreviewResultsRequest, opts ...grpc.CallOption) (*GetPlanPreviewResultsResponse, error)
	Encrypt(ctx context.Context, in *EncryptRequest, opts ...grpc.CallOption) (*EncryptResponse, error)
	ListStageLogs(ctx context.Context, in *ListStageLogsRequest, opts ...grpc.CallOption) (*ListStageLogsResponse, error)
}

APIServiceClient is the client API for APIService 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 NewAPIServiceClient added in v0.27.0

func NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient

type APIServiceServer added in v0.27.0

type APIServiceServer interface {
	AddApplication(context.Context, *AddApplicationRequest) (*AddApplicationResponse, error)
	SyncApplication(context.Context, *SyncApplicationRequest) (*SyncApplicationResponse, error)
	GetApplication(context.Context, *GetApplicationRequest) (*GetApplicationResponse, error)
	ListApplications(context.Context, *ListApplicationsRequest) (*ListApplicationsResponse, error)
	UpdateApplication(context.Context, *UpdateApplicationRequest) (*UpdateApplicationResponse, error)
	DeleteApplication(context.Context, *DeleteApplicationRequest) (*DeleteApplicationResponse, error)
	EnableApplication(context.Context, *EnableApplicationRequest) (*EnableApplicationResponse, error)
	DisableApplication(context.Context, *DisableApplicationRequest) (*DisableApplicationResponse, error)
	RenameApplicationConfigFile(context.Context, *RenameApplicationConfigFileRequest) (*RenameApplicationConfigFileResponse, error)
	GetDeployment(context.Context, *GetDeploymentRequest) (*GetDeploymentResponse, error)
	ListDeployments(context.Context, *ListDeploymentsRequest) (*ListDeploymentsResponse, error)
	GetCommand(context.Context, *GetCommandRequest) (*GetCommandResponse, error)
	GetPiped(context.Context, *GetPipedRequest) (*GetPipedResponse, error)
	RegisterPiped(context.Context, *RegisterPipedRequest) (*RegisterPipedResponse, error)
	UpdatePiped(context.Context, *UpdatePipedRequest) (*UpdatePipedResponse, error)
	EnablePiped(context.Context, *EnablePipedRequest) (*EnablePipedResponse, error)
	DisablePiped(context.Context, *DisablePipedRequest) (*DisablePipedResponse, error)
	RegisterEvent(context.Context, *RegisterEventRequest) (*RegisterEventResponse, error)
	RequestPlanPreview(context.Context, *RequestPlanPreviewRequest) (*RequestPlanPreviewResponse, error)
	GetPlanPreviewResults(context.Context, *GetPlanPreviewResultsRequest) (*GetPlanPreviewResultsResponse, error)
	Encrypt(context.Context, *EncryptRequest) (*EncryptResponse, error)
	ListStageLogs(context.Context, *ListStageLogsRequest) (*ListStageLogsResponse, error)
	// contains filtered or unexported methods
}

APIServiceServer is the server API for APIService service. All implementations must embed UnimplementedAPIServiceServer for forward compatibility

type AddApplicationRequest added in v0.27.0

type AddApplicationRequest struct {
	Name             string                    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	PipedId          string                    `protobuf:"bytes,3,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	GitPath          *model.ApplicationGitPath `protobuf:"bytes,4,opt,name=git_path,json=gitPath,proto3" json:"git_path,omitempty"`
	Kind             model.ApplicationKind     `protobuf:"varint,5,opt,name=kind,proto3,enum=model.ApplicationKind" json:"kind,omitempty"`
	PlatformProvider string                    `protobuf:"bytes,8,opt,name=platform_provider,json=platformProvider,proto3" json:"platform_provider,omitempty"`
	Description      string                    `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use AddApplicationRequest.ProtoReflect.Descriptor instead.

func (*AddApplicationRequest) GetDescription added in v0.27.0

func (x *AddApplicationRequest) GetDescription() string

func (*AddApplicationRequest) GetGitPath added in v0.27.0

func (*AddApplicationRequest) GetKind added in v0.27.0

func (*AddApplicationRequest) GetName added in v0.27.0

func (x *AddApplicationRequest) GetName() string

func (*AddApplicationRequest) GetPipedId added in v0.27.0

func (x *AddApplicationRequest) GetPipedId() string

func (*AddApplicationRequest) GetPlatformProvider added in v0.35.0

func (x *AddApplicationRequest) GetPlatformProvider() string

func (*AddApplicationRequest) ProtoMessage added in v0.27.0

func (*AddApplicationRequest) ProtoMessage()

func (*AddApplicationRequest) ProtoReflect added in v0.27.0

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

func (*AddApplicationRequest) Reset added in v0.27.0

func (x *AddApplicationRequest) Reset()

func (*AddApplicationRequest) String added in v0.27.0

func (x *AddApplicationRequest) String() string

func (*AddApplicationRequest) Validate added in v0.27.0

func (m *AddApplicationRequest) Validate() error

Validate checks the field values on AddApplicationRequest 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 (*AddApplicationRequest) ValidateAll added in v0.27.0

func (m *AddApplicationRequest) ValidateAll() error

ValidateAll checks the field values on AddApplicationRequest 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 AddApplicationRequestMultiError, or nil if none found.

type AddApplicationRequestMultiError added in v0.27.0

type AddApplicationRequestMultiError []error

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

func (AddApplicationRequestMultiError) AllErrors added in v0.27.0

func (m AddApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddApplicationRequestMultiError) Error added in v0.27.0

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

type AddApplicationRequestValidationError added in v0.27.0

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

AddApplicationRequestValidationError is the validation error returned by AddApplicationRequest.Validate if the designated constraints aren't met.

func (AddApplicationRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (AddApplicationRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (AddApplicationRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (AddApplicationRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (AddApplicationRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (AddApplicationRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type AddApplicationResponse added in v0.27.0

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

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

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

Deprecated: Use AddApplicationResponse.ProtoReflect.Descriptor instead.

func (*AddApplicationResponse) GetApplicationId added in v0.27.0

func (x *AddApplicationResponse) GetApplicationId() string

func (*AddApplicationResponse) ProtoMessage added in v0.27.0

func (*AddApplicationResponse) ProtoMessage()

func (*AddApplicationResponse) ProtoReflect added in v0.27.0

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

func (*AddApplicationResponse) Reset added in v0.27.0

func (x *AddApplicationResponse) Reset()

func (*AddApplicationResponse) String added in v0.27.0

func (x *AddApplicationResponse) String() string

func (*AddApplicationResponse) Validate added in v0.27.0

func (m *AddApplicationResponse) Validate() error

Validate checks the field values on AddApplicationResponse 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 (*AddApplicationResponse) ValidateAll added in v0.27.0

func (m *AddApplicationResponse) ValidateAll() error

ValidateAll checks the field values on AddApplicationResponse 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 AddApplicationResponseMultiError, or nil if none found.

type AddApplicationResponseMultiError added in v0.27.0

type AddApplicationResponseMultiError []error

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

func (AddApplicationResponseMultiError) AllErrors added in v0.27.0

func (m AddApplicationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AddApplicationResponseMultiError) Error added in v0.27.0

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

type AddApplicationResponseValidationError added in v0.27.0

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

AddApplicationResponseValidationError is the validation error returned by AddApplicationResponse.Validate if the designated constraints aren't met.

func (AddApplicationResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (AddApplicationResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (AddApplicationResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (AddApplicationResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (AddApplicationResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (AddApplicationResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type Client

type Client interface {
	APIServiceClient
	Close() error
}

func NewClient

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

type DeleteApplicationRequest added in v0.39.0

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

func (*DeleteApplicationRequest) Descriptor deprecated added in v0.39.0

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

Deprecated: Use DeleteApplicationRequest.ProtoReflect.Descriptor instead.

func (*DeleteApplicationRequest) GetApplicationId added in v0.39.0

func (x *DeleteApplicationRequest) GetApplicationId() string

func (*DeleteApplicationRequest) ProtoMessage added in v0.39.0

func (*DeleteApplicationRequest) ProtoMessage()

func (*DeleteApplicationRequest) ProtoReflect added in v0.39.0

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

func (*DeleteApplicationRequest) Reset added in v0.39.0

func (x *DeleteApplicationRequest) Reset()

func (*DeleteApplicationRequest) String added in v0.39.0

func (x *DeleteApplicationRequest) String() string

func (*DeleteApplicationRequest) Validate added in v0.39.0

func (m *DeleteApplicationRequest) Validate() error

Validate checks the field values on DeleteApplicationRequest 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 (*DeleteApplicationRequest) ValidateAll added in v0.39.0

func (m *DeleteApplicationRequest) ValidateAll() error

ValidateAll checks the field values on DeleteApplicationRequest 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 DeleteApplicationRequestMultiError, or nil if none found.

type DeleteApplicationRequestMultiError added in v0.39.0

type DeleteApplicationRequestMultiError []error

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

func (DeleteApplicationRequestMultiError) AllErrors added in v0.39.0

func (m DeleteApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteApplicationRequestMultiError) Error added in v0.39.0

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

type DeleteApplicationRequestValidationError added in v0.39.0

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

DeleteApplicationRequestValidationError is the validation error returned by DeleteApplicationRequest.Validate if the designated constraints aren't met.

func (DeleteApplicationRequestValidationError) Cause added in v0.39.0

Cause function returns cause value.

func (DeleteApplicationRequestValidationError) Error added in v0.39.0

Error satisfies the builtin error interface

func (DeleteApplicationRequestValidationError) ErrorName added in v0.39.0

ErrorName returns error name.

func (DeleteApplicationRequestValidationError) Field added in v0.39.0

Field function returns field value.

func (DeleteApplicationRequestValidationError) Key added in v0.39.0

Key function returns key value.

func (DeleteApplicationRequestValidationError) Reason added in v0.39.0

Reason function returns reason value.

type DeleteApplicationResponse added in v0.39.0

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

func (*DeleteApplicationResponse) Descriptor deprecated added in v0.39.0

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

Deprecated: Use DeleteApplicationResponse.ProtoReflect.Descriptor instead.

func (*DeleteApplicationResponse) GetApplicationId added in v0.39.0

func (x *DeleteApplicationResponse) GetApplicationId() string

func (*DeleteApplicationResponse) ProtoMessage added in v0.39.0

func (*DeleteApplicationResponse) ProtoMessage()

func (*DeleteApplicationResponse) ProtoReflect added in v0.39.0

func (*DeleteApplicationResponse) Reset added in v0.39.0

func (x *DeleteApplicationResponse) Reset()

func (*DeleteApplicationResponse) String added in v0.39.0

func (x *DeleteApplicationResponse) String() string

func (*DeleteApplicationResponse) Validate added in v0.39.0

func (m *DeleteApplicationResponse) Validate() error

Validate checks the field values on DeleteApplicationResponse 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 (*DeleteApplicationResponse) ValidateAll added in v0.39.0

func (m *DeleteApplicationResponse) ValidateAll() error

ValidateAll checks the field values on DeleteApplicationResponse 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 DeleteApplicationResponseMultiError, or nil if none found.

type DeleteApplicationResponseMultiError added in v0.39.0

type DeleteApplicationResponseMultiError []error

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

func (DeleteApplicationResponseMultiError) AllErrors added in v0.39.0

AllErrors returns a list of validation violation errors.

func (DeleteApplicationResponseMultiError) Error added in v0.39.0

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

type DeleteApplicationResponseValidationError added in v0.39.0

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

DeleteApplicationResponseValidationError is the validation error returned by DeleteApplicationResponse.Validate if the designated constraints aren't met.

func (DeleteApplicationResponseValidationError) Cause added in v0.39.0

Cause function returns cause value.

func (DeleteApplicationResponseValidationError) Error added in v0.39.0

Error satisfies the builtin error interface

func (DeleteApplicationResponseValidationError) ErrorName added in v0.39.0

ErrorName returns error name.

func (DeleteApplicationResponseValidationError) Field added in v0.39.0

Field function returns field value.

func (DeleteApplicationResponseValidationError) Key added in v0.39.0

Key function returns key value.

func (DeleteApplicationResponseValidationError) Reason added in v0.39.0

Reason function returns reason value.

type DisableApplicationRequest added in v0.41.3

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

func (*DisableApplicationRequest) Descriptor deprecated added in v0.41.3

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

Deprecated: Use DisableApplicationRequest.ProtoReflect.Descriptor instead.

func (*DisableApplicationRequest) GetApplicationId added in v0.41.3

func (x *DisableApplicationRequest) GetApplicationId() string

func (*DisableApplicationRequest) ProtoMessage added in v0.41.3

func (*DisableApplicationRequest) ProtoMessage()

func (*DisableApplicationRequest) ProtoReflect added in v0.41.3

func (*DisableApplicationRequest) Reset added in v0.41.3

func (x *DisableApplicationRequest) Reset()

func (*DisableApplicationRequest) String added in v0.41.3

func (x *DisableApplicationRequest) String() string

func (*DisableApplicationRequest) Validate added in v0.41.3

func (m *DisableApplicationRequest) Validate() error

Validate checks the field values on DisableApplicationRequest 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 (*DisableApplicationRequest) ValidateAll added in v0.41.3

func (m *DisableApplicationRequest) ValidateAll() error

ValidateAll checks the field values on DisableApplicationRequest 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 DisableApplicationRequestMultiError, or nil if none found.

type DisableApplicationRequestMultiError added in v0.41.3

type DisableApplicationRequestMultiError []error

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

func (DisableApplicationRequestMultiError) AllErrors added in v0.41.3

AllErrors returns a list of validation violation errors.

func (DisableApplicationRequestMultiError) Error added in v0.41.3

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

type DisableApplicationRequestValidationError added in v0.41.3

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

DisableApplicationRequestValidationError is the validation error returned by DisableApplicationRequest.Validate if the designated constraints aren't met.

func (DisableApplicationRequestValidationError) Cause added in v0.41.3

Cause function returns cause value.

func (DisableApplicationRequestValidationError) Error added in v0.41.3

Error satisfies the builtin error interface

func (DisableApplicationRequestValidationError) ErrorName added in v0.41.3

ErrorName returns error name.

func (DisableApplicationRequestValidationError) Field added in v0.41.3

Field function returns field value.

func (DisableApplicationRequestValidationError) Key added in v0.41.3

Key function returns key value.

func (DisableApplicationRequestValidationError) Reason added in v0.41.3

Reason function returns reason value.

type DisableApplicationResponse added in v0.41.3

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

func (*DisableApplicationResponse) Descriptor deprecated added in v0.41.3

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

Deprecated: Use DisableApplicationResponse.ProtoReflect.Descriptor instead.

func (*DisableApplicationResponse) GetApplicationId added in v0.41.3

func (x *DisableApplicationResponse) GetApplicationId() string

func (*DisableApplicationResponse) ProtoMessage added in v0.41.3

func (*DisableApplicationResponse) ProtoMessage()

func (*DisableApplicationResponse) ProtoReflect added in v0.41.3

func (*DisableApplicationResponse) Reset added in v0.41.3

func (x *DisableApplicationResponse) Reset()

func (*DisableApplicationResponse) String added in v0.41.3

func (x *DisableApplicationResponse) String() string

func (*DisableApplicationResponse) Validate added in v0.41.3

func (m *DisableApplicationResponse) Validate() error

Validate checks the field values on DisableApplicationResponse 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 (*DisableApplicationResponse) ValidateAll added in v0.41.3

func (m *DisableApplicationResponse) ValidateAll() error

ValidateAll checks the field values on DisableApplicationResponse 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 DisableApplicationResponseMultiError, or nil if none found.

type DisableApplicationResponseMultiError added in v0.41.3

type DisableApplicationResponseMultiError []error

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

func (DisableApplicationResponseMultiError) AllErrors added in v0.41.3

AllErrors returns a list of validation violation errors.

func (DisableApplicationResponseMultiError) Error added in v0.41.3

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

type DisableApplicationResponseValidationError added in v0.41.3

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

DisableApplicationResponseValidationError is the validation error returned by DisableApplicationResponse.Validate if the designated constraints aren't met.

func (DisableApplicationResponseValidationError) Cause added in v0.41.3

Cause function returns cause value.

func (DisableApplicationResponseValidationError) Error added in v0.41.3

Error satisfies the builtin error interface

func (DisableApplicationResponseValidationError) ErrorName added in v0.41.3

ErrorName returns error name.

func (DisableApplicationResponseValidationError) Field added in v0.41.3

Field function returns field value.

func (DisableApplicationResponseValidationError) Key added in v0.41.3

Key function returns key value.

func (DisableApplicationResponseValidationError) Reason added in v0.41.3

Reason function returns reason value.

type DisablePipedRequest added in v0.27.0

type DisablePipedRequest struct {
	PipedId string `protobuf:"bytes,1,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use DisablePipedRequest.ProtoReflect.Descriptor instead.

func (*DisablePipedRequest) GetPipedId added in v0.27.0

func (x *DisablePipedRequest) GetPipedId() string

func (*DisablePipedRequest) ProtoMessage added in v0.27.0

func (*DisablePipedRequest) ProtoMessage()

func (*DisablePipedRequest) ProtoReflect added in v0.27.0

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

func (*DisablePipedRequest) Reset added in v0.27.0

func (x *DisablePipedRequest) Reset()

func (*DisablePipedRequest) String added in v0.27.0

func (x *DisablePipedRequest) String() string

func (*DisablePipedRequest) Validate added in v0.27.0

func (m *DisablePipedRequest) Validate() error

Validate checks the field values on DisablePipedRequest 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 (*DisablePipedRequest) ValidateAll added in v0.27.0

func (m *DisablePipedRequest) ValidateAll() error

ValidateAll checks the field values on DisablePipedRequest 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 DisablePipedRequestMultiError, or nil if none found.

type DisablePipedRequestMultiError added in v0.27.0

type DisablePipedRequestMultiError []error

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

func (DisablePipedRequestMultiError) AllErrors added in v0.27.0

func (m DisablePipedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DisablePipedRequestMultiError) Error added in v0.27.0

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

type DisablePipedRequestValidationError added in v0.27.0

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

DisablePipedRequestValidationError is the validation error returned by DisablePipedRequest.Validate if the designated constraints aren't met.

func (DisablePipedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (DisablePipedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (DisablePipedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (DisablePipedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (DisablePipedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (DisablePipedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type DisablePipedResponse added in v0.27.0

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

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

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

Deprecated: Use DisablePipedResponse.ProtoReflect.Descriptor instead.

func (*DisablePipedResponse) ProtoMessage added in v0.27.0

func (*DisablePipedResponse) ProtoMessage()

func (*DisablePipedResponse) ProtoReflect added in v0.27.0

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

func (*DisablePipedResponse) Reset added in v0.27.0

func (x *DisablePipedResponse) Reset()

func (*DisablePipedResponse) String added in v0.27.0

func (x *DisablePipedResponse) String() string

func (*DisablePipedResponse) Validate added in v0.27.0

func (m *DisablePipedResponse) Validate() error

Validate checks the field values on DisablePipedResponse 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 (*DisablePipedResponse) ValidateAll added in v0.27.0

func (m *DisablePipedResponse) ValidateAll() error

ValidateAll checks the field values on DisablePipedResponse 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 DisablePipedResponseMultiError, or nil if none found.

type DisablePipedResponseMultiError added in v0.27.0

type DisablePipedResponseMultiError []error

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

func (DisablePipedResponseMultiError) AllErrors added in v0.27.0

func (m DisablePipedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DisablePipedResponseMultiError) Error added in v0.27.0

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

type DisablePipedResponseValidationError added in v0.27.0

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

DisablePipedResponseValidationError is the validation error returned by DisablePipedResponse.Validate if the designated constraints aren't met.

func (DisablePipedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (DisablePipedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (DisablePipedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (DisablePipedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (DisablePipedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (DisablePipedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type EnableApplicationRequest added in v0.43.0

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

func (*EnableApplicationRequest) Descriptor deprecated added in v0.43.0

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

Deprecated: Use EnableApplicationRequest.ProtoReflect.Descriptor instead.

func (*EnableApplicationRequest) GetApplicationId added in v0.43.0

func (x *EnableApplicationRequest) GetApplicationId() string

func (*EnableApplicationRequest) ProtoMessage added in v0.43.0

func (*EnableApplicationRequest) ProtoMessage()

func (*EnableApplicationRequest) ProtoReflect added in v0.43.0

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

func (*EnableApplicationRequest) Reset added in v0.43.0

func (x *EnableApplicationRequest) Reset()

func (*EnableApplicationRequest) String added in v0.43.0

func (x *EnableApplicationRequest) String() string

func (*EnableApplicationRequest) Validate added in v0.43.0

func (m *EnableApplicationRequest) Validate() error

Validate checks the field values on EnableApplicationRequest 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 (*EnableApplicationRequest) ValidateAll added in v0.43.0

func (m *EnableApplicationRequest) ValidateAll() error

ValidateAll checks the field values on EnableApplicationRequest 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 EnableApplicationRequestMultiError, or nil if none found.

type EnableApplicationRequestMultiError added in v0.43.0

type EnableApplicationRequestMultiError []error

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

func (EnableApplicationRequestMultiError) AllErrors added in v0.43.0

func (m EnableApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnableApplicationRequestMultiError) Error added in v0.43.0

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

type EnableApplicationRequestValidationError added in v0.43.0

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

EnableApplicationRequestValidationError is the validation error returned by EnableApplicationRequest.Validate if the designated constraints aren't met.

func (EnableApplicationRequestValidationError) Cause added in v0.43.0

Cause function returns cause value.

func (EnableApplicationRequestValidationError) Error added in v0.43.0

Error satisfies the builtin error interface

func (EnableApplicationRequestValidationError) ErrorName added in v0.43.0

ErrorName returns error name.

func (EnableApplicationRequestValidationError) Field added in v0.43.0

Field function returns field value.

func (EnableApplicationRequestValidationError) Key added in v0.43.0

Key function returns key value.

func (EnableApplicationRequestValidationError) Reason added in v0.43.0

Reason function returns reason value.

type EnableApplicationResponse added in v0.43.0

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

func (*EnableApplicationResponse) Descriptor deprecated added in v0.43.0

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

Deprecated: Use EnableApplicationResponse.ProtoReflect.Descriptor instead.

func (*EnableApplicationResponse) GetApplicationId added in v0.43.0

func (x *EnableApplicationResponse) GetApplicationId() string

func (*EnableApplicationResponse) ProtoMessage added in v0.43.0

func (*EnableApplicationResponse) ProtoMessage()

func (*EnableApplicationResponse) ProtoReflect added in v0.43.0

func (*EnableApplicationResponse) Reset added in v0.43.0

func (x *EnableApplicationResponse) Reset()

func (*EnableApplicationResponse) String added in v0.43.0

func (x *EnableApplicationResponse) String() string

func (*EnableApplicationResponse) Validate added in v0.43.0

func (m *EnableApplicationResponse) Validate() error

Validate checks the field values on EnableApplicationResponse 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 (*EnableApplicationResponse) ValidateAll added in v0.43.0

func (m *EnableApplicationResponse) ValidateAll() error

ValidateAll checks the field values on EnableApplicationResponse 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 EnableApplicationResponseMultiError, or nil if none found.

type EnableApplicationResponseMultiError added in v0.43.0

type EnableApplicationResponseMultiError []error

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

func (EnableApplicationResponseMultiError) AllErrors added in v0.43.0

AllErrors returns a list of validation violation errors.

func (EnableApplicationResponseMultiError) Error added in v0.43.0

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

type EnableApplicationResponseValidationError added in v0.43.0

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

EnableApplicationResponseValidationError is the validation error returned by EnableApplicationResponse.Validate if the designated constraints aren't met.

func (EnableApplicationResponseValidationError) Cause added in v0.43.0

Cause function returns cause value.

func (EnableApplicationResponseValidationError) Error added in v0.43.0

Error satisfies the builtin error interface

func (EnableApplicationResponseValidationError) ErrorName added in v0.43.0

ErrorName returns error name.

func (EnableApplicationResponseValidationError) Field added in v0.43.0

Field function returns field value.

func (EnableApplicationResponseValidationError) Key added in v0.43.0

Key function returns key value.

func (EnableApplicationResponseValidationError) Reason added in v0.43.0

Reason function returns reason value.

type EnablePipedRequest added in v0.27.0

type EnablePipedRequest struct {
	PipedId string `protobuf:"bytes,1,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use EnablePipedRequest.ProtoReflect.Descriptor instead.

func (*EnablePipedRequest) GetPipedId added in v0.27.0

func (x *EnablePipedRequest) GetPipedId() string

func (*EnablePipedRequest) ProtoMessage added in v0.27.0

func (*EnablePipedRequest) ProtoMessage()

func (*EnablePipedRequest) ProtoReflect added in v0.27.0

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

func (*EnablePipedRequest) Reset added in v0.27.0

func (x *EnablePipedRequest) Reset()

func (*EnablePipedRequest) String added in v0.27.0

func (x *EnablePipedRequest) String() string

func (*EnablePipedRequest) Validate added in v0.27.0

func (m *EnablePipedRequest) Validate() error

Validate checks the field values on EnablePipedRequest 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 (*EnablePipedRequest) ValidateAll added in v0.27.0

func (m *EnablePipedRequest) ValidateAll() error

ValidateAll checks the field values on EnablePipedRequest 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 EnablePipedRequestMultiError, or nil if none found.

type EnablePipedRequestMultiError added in v0.27.0

type EnablePipedRequestMultiError []error

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

func (EnablePipedRequestMultiError) AllErrors added in v0.27.0

func (m EnablePipedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnablePipedRequestMultiError) Error added in v0.27.0

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

type EnablePipedRequestValidationError added in v0.27.0

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

EnablePipedRequestValidationError is the validation error returned by EnablePipedRequest.Validate if the designated constraints aren't met.

func (EnablePipedRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (EnablePipedRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (EnablePipedRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (EnablePipedRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (EnablePipedRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (EnablePipedRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type EnablePipedResponse added in v0.27.0

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

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

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

Deprecated: Use EnablePipedResponse.ProtoReflect.Descriptor instead.

func (*EnablePipedResponse) ProtoMessage added in v0.27.0

func (*EnablePipedResponse) ProtoMessage()

func (*EnablePipedResponse) ProtoReflect added in v0.27.0

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

func (*EnablePipedResponse) Reset added in v0.27.0

func (x *EnablePipedResponse) Reset()

func (*EnablePipedResponse) String added in v0.27.0

func (x *EnablePipedResponse) String() string

func (*EnablePipedResponse) Validate added in v0.27.0

func (m *EnablePipedResponse) Validate() error

Validate checks the field values on EnablePipedResponse 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 (*EnablePipedResponse) ValidateAll added in v0.27.0

func (m *EnablePipedResponse) ValidateAll() error

ValidateAll checks the field values on EnablePipedResponse 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 EnablePipedResponseMultiError, or nil if none found.

type EnablePipedResponseMultiError added in v0.27.0

type EnablePipedResponseMultiError []error

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

func (EnablePipedResponseMultiError) AllErrors added in v0.27.0

func (m EnablePipedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnablePipedResponseMultiError) Error added in v0.27.0

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

type EnablePipedResponseValidationError added in v0.27.0

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

EnablePipedResponseValidationError is the validation error returned by EnablePipedResponse.Validate if the designated constraints aren't met.

func (EnablePipedResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (EnablePipedResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (EnablePipedResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (EnablePipedResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (EnablePipedResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (EnablePipedResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type EncryptRequest added in v0.27.0

type EncryptRequest struct {
	Plaintext string `protobuf:"bytes,1,opt,name=plaintext,proto3" json:"plaintext,omitempty"`
	PipedId   string `protobuf:"bytes,2,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	// Whether the data should be base64 encoded before encrypting or not.
	Base64Encoding bool `protobuf:"varint,3,opt,name=base64_encoding,json=base64Encoding,proto3" json:"base64_encoding,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use EncryptRequest.ProtoReflect.Descriptor instead.

func (*EncryptRequest) GetBase64Encoding added in v0.27.0

func (x *EncryptRequest) GetBase64Encoding() bool

func (*EncryptRequest) GetPipedId added in v0.27.0

func (x *EncryptRequest) GetPipedId() string

func (*EncryptRequest) GetPlaintext added in v0.27.0

func (x *EncryptRequest) GetPlaintext() string

func (*EncryptRequest) ProtoMessage added in v0.27.0

func (*EncryptRequest) ProtoMessage()

func (*EncryptRequest) ProtoReflect added in v0.27.0

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

func (*EncryptRequest) Reset added in v0.27.0

func (x *EncryptRequest) Reset()

func (*EncryptRequest) String added in v0.27.0

func (x *EncryptRequest) String() string

func (*EncryptRequest) Validate added in v0.27.0

func (m *EncryptRequest) Validate() error

Validate checks the field values on EncryptRequest 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 (*EncryptRequest) ValidateAll added in v0.27.0

func (m *EncryptRequest) ValidateAll() error

ValidateAll checks the field values on EncryptRequest 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 EncryptRequestMultiError, or nil if none found.

type EncryptRequestMultiError added in v0.27.0

type EncryptRequestMultiError []error

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

func (EncryptRequestMultiError) AllErrors added in v0.27.0

func (m EncryptRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EncryptRequestMultiError) Error added in v0.27.0

func (m EncryptRequestMultiError) Error() string

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

type EncryptRequestValidationError added in v0.27.0

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

EncryptRequestValidationError is the validation error returned by EncryptRequest.Validate if the designated constraints aren't met.

func (EncryptRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (EncryptRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (EncryptRequestValidationError) ErrorName added in v0.27.0

func (e EncryptRequestValidationError) ErrorName() string

ErrorName returns error name.

func (EncryptRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (EncryptRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (EncryptRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type EncryptResponse added in v0.27.0

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

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

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

Deprecated: Use EncryptResponse.ProtoReflect.Descriptor instead.

func (*EncryptResponse) GetCiphertext added in v0.27.0

func (x *EncryptResponse) GetCiphertext() string

func (*EncryptResponse) ProtoMessage added in v0.27.0

func (*EncryptResponse) ProtoMessage()

func (*EncryptResponse) ProtoReflect added in v0.27.0

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

func (*EncryptResponse) Reset added in v0.27.0

func (x *EncryptResponse) Reset()

func (*EncryptResponse) String added in v0.27.0

func (x *EncryptResponse) String() string

func (*EncryptResponse) Validate added in v0.27.0

func (m *EncryptResponse) Validate() error

Validate checks the field values on EncryptResponse 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 (*EncryptResponse) ValidateAll added in v0.27.0

func (m *EncryptResponse) ValidateAll() error

ValidateAll checks the field values on EncryptResponse 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 EncryptResponseMultiError, or nil if none found.

type EncryptResponseMultiError added in v0.27.0

type EncryptResponseMultiError []error

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

func (EncryptResponseMultiError) AllErrors added in v0.27.0

func (m EncryptResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EncryptResponseMultiError) Error added in v0.27.0

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

type EncryptResponseValidationError added in v0.27.0

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

EncryptResponseValidationError is the validation error returned by EncryptResponse.Validate if the designated constraints aren't met.

func (EncryptResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (EncryptResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (EncryptResponseValidationError) ErrorName added in v0.27.0

func (e EncryptResponseValidationError) ErrorName() string

ErrorName returns error name.

func (EncryptResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (EncryptResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (EncryptResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetApplicationRequest added in v0.27.0

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

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

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

Deprecated: Use GetApplicationRequest.ProtoReflect.Descriptor instead.

func (*GetApplicationRequest) GetApplicationId added in v0.27.0

func (x *GetApplicationRequest) GetApplicationId() string

func (*GetApplicationRequest) ProtoMessage added in v0.27.0

func (*GetApplicationRequest) ProtoMessage()

func (*GetApplicationRequest) ProtoReflect added in v0.27.0

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

func (*GetApplicationRequest) Reset added in v0.27.0

func (x *GetApplicationRequest) Reset()

func (*GetApplicationRequest) String added in v0.27.0

func (x *GetApplicationRequest) String() string

func (*GetApplicationRequest) Validate added in v0.27.0

func (m *GetApplicationRequest) Validate() error

Validate checks the field values on GetApplicationRequest 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 (*GetApplicationRequest) ValidateAll added in v0.27.0

func (m *GetApplicationRequest) ValidateAll() error

ValidateAll checks the field values on GetApplicationRequest 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 GetApplicationRequestMultiError, or nil if none found.

type GetApplicationRequestMultiError added in v0.27.0

type GetApplicationRequestMultiError []error

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

func (GetApplicationRequestMultiError) AllErrors added in v0.27.0

func (m GetApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationRequestMultiError) Error added in v0.27.0

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

type GetApplicationRequestValidationError added in v0.27.0

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

GetApplicationRequestValidationError is the validation error returned by GetApplicationRequest.Validate if the designated constraints aren't met.

func (GetApplicationRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetApplicationRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetApplicationRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetApplicationRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetApplicationRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetApplicationRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetApplicationResponse added in v0.27.0

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

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

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

Deprecated: Use GetApplicationResponse.ProtoReflect.Descriptor instead.

func (*GetApplicationResponse) GetApplication added in v0.27.0

func (x *GetApplicationResponse) GetApplication() *model.Application

func (*GetApplicationResponse) ProtoMessage added in v0.27.0

func (*GetApplicationResponse) ProtoMessage()

func (*GetApplicationResponse) ProtoReflect added in v0.27.0

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

func (*GetApplicationResponse) Reset added in v0.27.0

func (x *GetApplicationResponse) Reset()

func (*GetApplicationResponse) String added in v0.27.0

func (x *GetApplicationResponse) String() string

func (*GetApplicationResponse) Validate added in v0.27.0

func (m *GetApplicationResponse) Validate() error

Validate checks the field values on GetApplicationResponse 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 (*GetApplicationResponse) ValidateAll added in v0.27.0

func (m *GetApplicationResponse) ValidateAll() error

ValidateAll checks the field values on GetApplicationResponse 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 GetApplicationResponseMultiError, or nil if none found.

type GetApplicationResponseMultiError added in v0.27.0

type GetApplicationResponseMultiError []error

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

func (GetApplicationResponseMultiError) AllErrors added in v0.27.0

func (m GetApplicationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationResponseMultiError) Error added in v0.27.0

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

type GetApplicationResponseValidationError added in v0.27.0

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

GetApplicationResponseValidationError is the validation error returned by GetApplicationResponse.Validate if the designated constraints aren't met.

func (GetApplicationResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetApplicationResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetApplicationResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetApplicationResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetApplicationResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetApplicationResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetCommandRequest added in v0.27.0

type GetCommandRequest struct {
	CommandId string `protobuf:"bytes,1,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetCommandRequest.ProtoReflect.Descriptor instead.

func (*GetCommandRequest) GetCommandId added in v0.27.0

func (x *GetCommandRequest) GetCommandId() string

func (*GetCommandRequest) ProtoMessage added in v0.27.0

func (*GetCommandRequest) ProtoMessage()

func (*GetCommandRequest) ProtoReflect added in v0.27.0

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

func (*GetCommandRequest) Reset added in v0.27.0

func (x *GetCommandRequest) Reset()

func (*GetCommandRequest) String added in v0.27.0

func (x *GetCommandRequest) String() string

func (*GetCommandRequest) Validate added in v0.27.0

func (m *GetCommandRequest) Validate() error

Validate checks the field values on GetCommandRequest 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 (*GetCommandRequest) ValidateAll added in v0.27.0

func (m *GetCommandRequest) ValidateAll() error

ValidateAll checks the field values on GetCommandRequest 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 GetCommandRequestMultiError, or nil if none found.

type GetCommandRequestMultiError added in v0.27.0

type GetCommandRequestMultiError []error

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

func (GetCommandRequestMultiError) AllErrors added in v0.27.0

func (m GetCommandRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCommandRequestMultiError) Error added in v0.27.0

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

type GetCommandRequestValidationError added in v0.27.0

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

GetCommandRequestValidationError is the validation error returned by GetCommandRequest.Validate if the designated constraints aren't met.

func (GetCommandRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetCommandRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetCommandRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetCommandRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetCommandRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetCommandRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetCommandResponse added in v0.27.0

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

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

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

Deprecated: Use GetCommandResponse.ProtoReflect.Descriptor instead.

func (*GetCommandResponse) GetCommand added in v0.27.0

func (x *GetCommandResponse) GetCommand() *model.Command

func (*GetCommandResponse) ProtoMessage added in v0.27.0

func (*GetCommandResponse) ProtoMessage()

func (*GetCommandResponse) ProtoReflect added in v0.27.0

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

func (*GetCommandResponse) Reset added in v0.27.0

func (x *GetCommandResponse) Reset()

func (*GetCommandResponse) String added in v0.27.0

func (x *GetCommandResponse) String() string

func (*GetCommandResponse) Validate added in v0.27.0

func (m *GetCommandResponse) Validate() error

Validate checks the field values on GetCommandResponse 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 (*GetCommandResponse) ValidateAll added in v0.27.0

func (m *GetCommandResponse) ValidateAll() error

ValidateAll checks the field values on GetCommandResponse 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 GetCommandResponseMultiError, or nil if none found.

type GetCommandResponseMultiError added in v0.27.0

type GetCommandResponseMultiError []error

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

func (GetCommandResponseMultiError) AllErrors added in v0.27.0

func (m GetCommandResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetCommandResponseMultiError) Error added in v0.27.0

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

type GetCommandResponseValidationError added in v0.27.0

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

GetCommandResponseValidationError is the validation error returned by GetCommandResponse.Validate if the designated constraints aren't met.

func (GetCommandResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetCommandResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetCommandResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetCommandResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetCommandResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetCommandResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetDeploymentRequest added in v0.27.0

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

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

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) GetDeploymentId added in v0.27.0

func (x *GetDeploymentRequest) GetDeploymentId() 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 GetPipedRequest added in v0.44.0

type GetPipedRequest struct {
	PipedId string `protobuf:"bytes,1,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPipedRequest) Descriptor deprecated added in v0.44.0

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

Deprecated: Use GetPipedRequest.ProtoReflect.Descriptor instead.

func (*GetPipedRequest) GetPipedId added in v0.44.0

func (x *GetPipedRequest) GetPipedId() string

func (*GetPipedRequest) ProtoMessage added in v0.44.0

func (*GetPipedRequest) ProtoMessage()

func (*GetPipedRequest) ProtoReflect added in v0.44.0

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

func (*GetPipedRequest) Reset added in v0.44.0

func (x *GetPipedRequest) Reset()

func (*GetPipedRequest) String added in v0.44.0

func (x *GetPipedRequest) String() string

func (*GetPipedRequest) Validate added in v0.44.0

func (m *GetPipedRequest) Validate() error

Validate checks the field values on GetPipedRequest 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 (*GetPipedRequest) ValidateAll added in v0.44.0

func (m *GetPipedRequest) ValidateAll() error

ValidateAll checks the field values on GetPipedRequest 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 GetPipedRequestMultiError, or nil if none found.

type GetPipedRequestMultiError added in v0.44.0

type GetPipedRequestMultiError []error

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

func (GetPipedRequestMultiError) AllErrors added in v0.44.0

func (m GetPipedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetPipedRequestMultiError) Error added in v0.44.0

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

type GetPipedRequestValidationError added in v0.44.0

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

GetPipedRequestValidationError is the validation error returned by GetPipedRequest.Validate if the designated constraints aren't met.

func (GetPipedRequestValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (GetPipedRequestValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (GetPipedRequestValidationError) ErrorName added in v0.44.0

func (e GetPipedRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetPipedRequestValidationError) Field added in v0.44.0

Field function returns field value.

func (GetPipedRequestValidationError) Key added in v0.44.0

Key function returns key value.

func (GetPipedRequestValidationError) Reason added in v0.44.0

Reason function returns reason value.

type GetPipedResponse added in v0.44.0

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

func (*GetPipedResponse) Descriptor deprecated added in v0.44.0

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

Deprecated: Use GetPipedResponse.ProtoReflect.Descriptor instead.

func (*GetPipedResponse) GetPiped added in v0.44.0

func (x *GetPipedResponse) GetPiped() *model.Piped

func (*GetPipedResponse) ProtoMessage added in v0.44.0

func (*GetPipedResponse) ProtoMessage()

func (*GetPipedResponse) ProtoReflect added in v0.44.0

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

func (*GetPipedResponse) Reset added in v0.44.0

func (x *GetPipedResponse) Reset()

func (*GetPipedResponse) String added in v0.44.0

func (x *GetPipedResponse) String() string

func (*GetPipedResponse) Validate added in v0.44.0

func (m *GetPipedResponse) Validate() error

Validate checks the field values on GetPipedResponse 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 (*GetPipedResponse) ValidateAll added in v0.44.0

func (m *GetPipedResponse) ValidateAll() error

ValidateAll checks the field values on GetPipedResponse 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 GetPipedResponseMultiError, or nil if none found.

type GetPipedResponseMultiError added in v0.44.0

type GetPipedResponseMultiError []error

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

func (GetPipedResponseMultiError) AllErrors added in v0.44.0

func (m GetPipedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetPipedResponseMultiError) Error added in v0.44.0

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

type GetPipedResponseValidationError added in v0.44.0

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

GetPipedResponseValidationError is the validation error returned by GetPipedResponse.Validate if the designated constraints aren't met.

func (GetPipedResponseValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (GetPipedResponseValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (GetPipedResponseValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (GetPipedResponseValidationError) Field added in v0.44.0

Field function returns field value.

func (GetPipedResponseValidationError) Key added in v0.44.0

Key function returns key value.

func (GetPipedResponseValidationError) Reason added in v0.44.0

Reason function returns reason value.

type GetPlanPreviewResultsRequest added in v0.27.0

type GetPlanPreviewResultsRequest struct {
	Commands []string `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"`
	// Maximum number of seconds a Piped can take to handle a command.
	CommandHandleTimeout int64 `protobuf:"varint,2,opt,name=command_handle_timeout,json=commandHandleTimeout,proto3" json:"command_handle_timeout,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetPlanPreviewResultsRequest.ProtoReflect.Descriptor instead.

func (*GetPlanPreviewResultsRequest) GetCommandHandleTimeout added in v0.27.0

func (x *GetPlanPreviewResultsRequest) GetCommandHandleTimeout() int64

func (*GetPlanPreviewResultsRequest) GetCommands added in v0.27.0

func (x *GetPlanPreviewResultsRequest) GetCommands() []string

func (*GetPlanPreviewResultsRequest) ProtoMessage added in v0.27.0

func (*GetPlanPreviewResultsRequest) ProtoMessage()

func (*GetPlanPreviewResultsRequest) ProtoReflect added in v0.27.0

func (*GetPlanPreviewResultsRequest) Reset added in v0.27.0

func (x *GetPlanPreviewResultsRequest) Reset()

func (*GetPlanPreviewResultsRequest) String added in v0.27.0

func (*GetPlanPreviewResultsRequest) Validate added in v0.27.0

func (m *GetPlanPreviewResultsRequest) Validate() error

Validate checks the field values on GetPlanPreviewResultsRequest 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 (*GetPlanPreviewResultsRequest) ValidateAll added in v0.27.0

func (m *GetPlanPreviewResultsRequest) ValidateAll() error

ValidateAll checks the field values on GetPlanPreviewResultsRequest 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 GetPlanPreviewResultsRequestMultiError, or nil if none found.

type GetPlanPreviewResultsRequestMultiError added in v0.27.0

type GetPlanPreviewResultsRequestMultiError []error

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

func (GetPlanPreviewResultsRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetPlanPreviewResultsRequestMultiError) Error added in v0.27.0

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

type GetPlanPreviewResultsRequestValidationError added in v0.27.0

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

GetPlanPreviewResultsRequestValidationError is the validation error returned by GetPlanPreviewResultsRequest.Validate if the designated constraints aren't met.

func (GetPlanPreviewResultsRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetPlanPreviewResultsRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetPlanPreviewResultsRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetPlanPreviewResultsRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (GetPlanPreviewResultsRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (GetPlanPreviewResultsRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type GetPlanPreviewResultsResponse added in v0.27.0

type GetPlanPreviewResultsResponse struct {
	Results []*model.PlanPreviewCommandResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetPlanPreviewResultsResponse.ProtoReflect.Descriptor instead.

func (*GetPlanPreviewResultsResponse) GetResults added in v0.27.0

func (*GetPlanPreviewResultsResponse) ProtoMessage added in v0.27.0

func (*GetPlanPreviewResultsResponse) ProtoMessage()

func (*GetPlanPreviewResultsResponse) ProtoReflect added in v0.27.0

func (*GetPlanPreviewResultsResponse) Reset added in v0.27.0

func (x *GetPlanPreviewResultsResponse) Reset()

func (*GetPlanPreviewResultsResponse) String added in v0.27.0

func (*GetPlanPreviewResultsResponse) Validate added in v0.27.0

func (m *GetPlanPreviewResultsResponse) Validate() error

Validate checks the field values on GetPlanPreviewResultsResponse 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 (*GetPlanPreviewResultsResponse) ValidateAll added in v0.27.0

func (m *GetPlanPreviewResultsResponse) ValidateAll() error

ValidateAll checks the field values on GetPlanPreviewResultsResponse 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 GetPlanPreviewResultsResponseMultiError, or nil if none found.

type GetPlanPreviewResultsResponseMultiError added in v0.27.0

type GetPlanPreviewResultsResponseMultiError []error

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

func (GetPlanPreviewResultsResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (GetPlanPreviewResultsResponseMultiError) Error added in v0.27.0

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

type GetPlanPreviewResultsResponseValidationError added in v0.27.0

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

GetPlanPreviewResultsResponseValidationError is the validation error returned by GetPlanPreviewResultsResponse.Validate if the designated constraints aren't met.

func (GetPlanPreviewResultsResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (GetPlanPreviewResultsResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (GetPlanPreviewResultsResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (GetPlanPreviewResultsResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (GetPlanPreviewResultsResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (GetPlanPreviewResultsResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type ListApplicationsRequest added in v0.27.0

type ListApplicationsRequest struct {
	Name     string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Kind     string            `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Disabled bool              `protobuf:"varint,4,opt,name=disabled,proto3" json:"disabled,omitempty"`
	Labels   map[string]string `` /* 153-byte string literal not displayed */
	Limit    int32             `protobuf:"varint,7,opt,name=limit,proto3" json:"limit,omitempty"`
	PipedId  string            `protobuf:"bytes,8,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	Cursor   string            `protobuf:"bytes,10,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// 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) GetCursor added in v0.27.0

func (x *ListApplicationsRequest) GetCursor() string

func (*ListApplicationsRequest) GetDisabled added in v0.27.0

func (x *ListApplicationsRequest) GetDisabled() bool

func (*ListApplicationsRequest) GetKind added in v0.27.0

func (x *ListApplicationsRequest) GetKind() string

func (*ListApplicationsRequest) GetLabels added in v0.42.0

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

func (*ListApplicationsRequest) GetLimit added in v0.42.0

func (x *ListApplicationsRequest) GetLimit() int32

func (*ListApplicationsRequest) GetName added in v0.27.0

func (x *ListApplicationsRequest) GetName() string

func (*ListApplicationsRequest) GetPipedId added in v0.43.0

func (x *ListApplicationsRequest) GetPipedId() string

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"`
	Cursor       string               `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,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) GetCursor added in v0.27.0

func (x *ListApplicationsResponse) GetCursor() string

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 ListDeploymentsRequest added in v0.42.0

type ListDeploymentsRequest struct {
	Statuses        []string          `protobuf:"bytes,1,rep,name=statuses,proto3" json:"statuses,omitempty"`
	Kinds           []string          `protobuf:"bytes,2,rep,name=kinds,proto3" json:"kinds,omitempty"`
	ApplicationIds  []string          `protobuf:"bytes,3,rep,name=application_ids,json=applicationIds,proto3" json:"application_ids,omitempty"`
	ApplicationName string            `protobuf:"bytes,4,opt,name=application_name,json=applicationName,proto3" json:"application_name,omitempty"`
	Labels          map[string]string `` /* 153-byte string literal not displayed */
	Limit           int32             `protobuf:"varint,6,opt,name=limit,proto3" json:"limit,omitempty"`
	Cursor          string            `protobuf:"bytes,7,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDeploymentsRequest) Descriptor deprecated added in v0.42.0

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

Deprecated: Use ListDeploymentsRequest.ProtoReflect.Descriptor instead.

func (*ListDeploymentsRequest) GetApplicationIds added in v0.42.0

func (x *ListDeploymentsRequest) GetApplicationIds() []string

func (*ListDeploymentsRequest) GetApplicationName added in v0.42.0

func (x *ListDeploymentsRequest) GetApplicationName() string

func (*ListDeploymentsRequest) GetCursor added in v0.42.0

func (x *ListDeploymentsRequest) GetCursor() string

func (*ListDeploymentsRequest) GetKinds added in v0.42.0

func (x *ListDeploymentsRequest) GetKinds() []string

func (*ListDeploymentsRequest) GetLabels added in v0.42.0

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

func (*ListDeploymentsRequest) GetLimit added in v0.42.0

func (x *ListDeploymentsRequest) GetLimit() int32

func (*ListDeploymentsRequest) GetStatuses added in v0.42.0

func (x *ListDeploymentsRequest) GetStatuses() []string

func (*ListDeploymentsRequest) ProtoMessage added in v0.42.0

func (*ListDeploymentsRequest) ProtoMessage()

func (*ListDeploymentsRequest) ProtoReflect added in v0.42.0

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

func (*ListDeploymentsRequest) Reset added in v0.42.0

func (x *ListDeploymentsRequest) Reset()

func (*ListDeploymentsRequest) String added in v0.42.0

func (x *ListDeploymentsRequest) String() string

func (*ListDeploymentsRequest) Validate added in v0.42.0

func (m *ListDeploymentsRequest) Validate() error

Validate checks the field values on ListDeploymentsRequest 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 (*ListDeploymentsRequest) ValidateAll added in v0.42.0

func (m *ListDeploymentsRequest) ValidateAll() error

ValidateAll checks the field values on ListDeploymentsRequest 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 ListDeploymentsRequestMultiError, or nil if none found.

type ListDeploymentsRequestMultiError added in v0.42.0

type ListDeploymentsRequestMultiError []error

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

func (ListDeploymentsRequestMultiError) AllErrors added in v0.42.0

func (m ListDeploymentsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListDeploymentsRequestMultiError) Error added in v0.42.0

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

type ListDeploymentsRequestValidationError added in v0.42.0

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

ListDeploymentsRequestValidationError is the validation error returned by ListDeploymentsRequest.Validate if the designated constraints aren't met.

func (ListDeploymentsRequestValidationError) Cause added in v0.42.0

Cause function returns cause value.

func (ListDeploymentsRequestValidationError) Error added in v0.42.0

Error satisfies the builtin error interface

func (ListDeploymentsRequestValidationError) ErrorName added in v0.42.0

ErrorName returns error name.

func (ListDeploymentsRequestValidationError) Field added in v0.42.0

Field function returns field value.

func (ListDeploymentsRequestValidationError) Key added in v0.42.0

Key function returns key value.

func (ListDeploymentsRequestValidationError) Reason added in v0.42.0

Reason function returns reason value.

type ListDeploymentsResponse added in v0.42.0

type ListDeploymentsResponse 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 (*ListDeploymentsResponse) Descriptor deprecated added in v0.42.0

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

Deprecated: Use ListDeploymentsResponse.ProtoReflect.Descriptor instead.

func (*ListDeploymentsResponse) GetCursor added in v0.42.0

func (x *ListDeploymentsResponse) GetCursor() string

func (*ListDeploymentsResponse) GetDeployments added in v0.42.0

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

func (*ListDeploymentsResponse) ProtoMessage added in v0.42.0

func (*ListDeploymentsResponse) ProtoMessage()

func (*ListDeploymentsResponse) ProtoReflect added in v0.42.0

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

func (*ListDeploymentsResponse) Reset added in v0.42.0

func (x *ListDeploymentsResponse) Reset()

func (*ListDeploymentsResponse) String added in v0.42.0

func (x *ListDeploymentsResponse) String() string

func (*ListDeploymentsResponse) Validate added in v0.42.0

func (m *ListDeploymentsResponse) Validate() error

Validate checks the field values on ListDeploymentsResponse 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 (*ListDeploymentsResponse) ValidateAll added in v0.42.0

func (m *ListDeploymentsResponse) ValidateAll() error

ValidateAll checks the field values on ListDeploymentsResponse 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 ListDeploymentsResponseMultiError, or nil if none found.

type ListDeploymentsResponseMultiError added in v0.42.0

type ListDeploymentsResponseMultiError []error

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

func (ListDeploymentsResponseMultiError) AllErrors added in v0.42.0

func (m ListDeploymentsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListDeploymentsResponseMultiError) Error added in v0.42.0

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

type ListDeploymentsResponseValidationError added in v0.42.0

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

ListDeploymentsResponseValidationError is the validation error returned by ListDeploymentsResponse.Validate if the designated constraints aren't met.

func (ListDeploymentsResponseValidationError) Cause added in v0.42.0

Cause function returns cause value.

func (ListDeploymentsResponseValidationError) Error added in v0.42.0

Error satisfies the builtin error interface

func (ListDeploymentsResponseValidationError) ErrorName added in v0.42.0

ErrorName returns error name.

func (ListDeploymentsResponseValidationError) Field added in v0.42.0

Field function returns field value.

func (ListDeploymentsResponseValidationError) Key added in v0.42.0

Key function returns key value.

func (ListDeploymentsResponseValidationError) Reason added in v0.42.0

Reason function returns reason value.

type ListStageLogsRequest added in v0.42.0

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

func (*ListStageLogsRequest) Descriptor deprecated added in v0.42.0

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

Deprecated: Use ListStageLogsRequest.ProtoReflect.Descriptor instead.

func (*ListStageLogsRequest) GetDeploymentId added in v0.42.0

func (x *ListStageLogsRequest) GetDeploymentId() string

func (*ListStageLogsRequest) ProtoMessage added in v0.42.0

func (*ListStageLogsRequest) ProtoMessage()

func (*ListStageLogsRequest) ProtoReflect added in v0.42.0

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

func (*ListStageLogsRequest) Reset added in v0.42.0

func (x *ListStageLogsRequest) Reset()

func (*ListStageLogsRequest) String added in v0.42.0

func (x *ListStageLogsRequest) String() string

func (*ListStageLogsRequest) Validate added in v0.42.0

func (m *ListStageLogsRequest) Validate() error

Validate checks the field values on ListStageLogsRequest 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 (*ListStageLogsRequest) ValidateAll added in v0.42.0

func (m *ListStageLogsRequest) ValidateAll() error

ValidateAll checks the field values on ListStageLogsRequest 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 ListStageLogsRequestMultiError, or nil if none found.

type ListStageLogsRequestMultiError added in v0.42.0

type ListStageLogsRequestMultiError []error

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

func (ListStageLogsRequestMultiError) AllErrors added in v0.42.0

func (m ListStageLogsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListStageLogsRequestMultiError) Error added in v0.42.0

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

type ListStageLogsRequestValidationError added in v0.42.0

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

ListStageLogsRequestValidationError is the validation error returned by ListStageLogsRequest.Validate if the designated constraints aren't met.

func (ListStageLogsRequestValidationError) Cause added in v0.42.0

Cause function returns cause value.

func (ListStageLogsRequestValidationError) Error added in v0.42.0

Error satisfies the builtin error interface

func (ListStageLogsRequestValidationError) ErrorName added in v0.42.0

ErrorName returns error name.

func (ListStageLogsRequestValidationError) Field added in v0.42.0

Field function returns field value.

func (ListStageLogsRequestValidationError) Key added in v0.42.0

Key function returns key value.

func (ListStageLogsRequestValidationError) Reason added in v0.42.0

Reason function returns reason value.

type ListStageLogsResponse added in v0.42.0

type ListStageLogsResponse struct {
	StageLogs map[string]*StageLog `` /* 176-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ListStageLogsResponse) Descriptor deprecated added in v0.42.0

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

Deprecated: Use ListStageLogsResponse.ProtoReflect.Descriptor instead.

func (*ListStageLogsResponse) GetStageLogs added in v0.42.0

func (x *ListStageLogsResponse) GetStageLogs() map[string]*StageLog

func (*ListStageLogsResponse) ProtoMessage added in v0.42.0

func (*ListStageLogsResponse) ProtoMessage()

func (*ListStageLogsResponse) ProtoReflect added in v0.42.0

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

func (*ListStageLogsResponse) Reset added in v0.42.0

func (x *ListStageLogsResponse) Reset()

func (*ListStageLogsResponse) String added in v0.42.0

func (x *ListStageLogsResponse) String() string

func (*ListStageLogsResponse) Validate added in v0.42.0

func (m *ListStageLogsResponse) Validate() error

Validate checks the field values on ListStageLogsResponse 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 (*ListStageLogsResponse) ValidateAll added in v0.42.0

func (m *ListStageLogsResponse) ValidateAll() error

ValidateAll checks the field values on ListStageLogsResponse 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 ListStageLogsResponseMultiError, or nil if none found.

type ListStageLogsResponseMultiError added in v0.42.0

type ListStageLogsResponseMultiError []error

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

func (ListStageLogsResponseMultiError) AllErrors added in v0.42.0

func (m ListStageLogsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListStageLogsResponseMultiError) Error added in v0.42.0

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

type ListStageLogsResponseValidationError added in v0.42.0

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

ListStageLogsResponseValidationError is the validation error returned by ListStageLogsResponse.Validate if the designated constraints aren't met.

func (ListStageLogsResponseValidationError) Cause added in v0.42.0

Cause function returns cause value.

func (ListStageLogsResponseValidationError) Error added in v0.42.0

Error satisfies the builtin error interface

func (ListStageLogsResponseValidationError) ErrorName added in v0.42.0

ErrorName returns error name.

func (ListStageLogsResponseValidationError) Field added in v0.42.0

Field function returns field value.

func (ListStageLogsResponseValidationError) Key added in v0.42.0

Key function returns key value.

func (ListStageLogsResponseValidationError) Reason added in v0.42.0

Reason function returns reason value.

type RegisterEventRequest added in v0.27.0

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

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

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

Deprecated: Use RegisterEventRequest.ProtoReflect.Descriptor instead.

func (*RegisterEventRequest) GetData added in v0.27.0

func (x *RegisterEventRequest) GetData() string

func (*RegisterEventRequest) GetLabels added in v0.27.0

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

func (*RegisterEventRequest) GetName added in v0.27.0

func (x *RegisterEventRequest) GetName() string

func (*RegisterEventRequest) ProtoMessage added in v0.27.0

func (*RegisterEventRequest) ProtoMessage()

func (*RegisterEventRequest) ProtoReflect added in v0.27.0

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

func (*RegisterEventRequest) Reset added in v0.27.0

func (x *RegisterEventRequest) Reset()

func (*RegisterEventRequest) String added in v0.27.0

func (x *RegisterEventRequest) String() string

func (*RegisterEventRequest) Validate added in v0.27.0

func (m *RegisterEventRequest) Validate() error

Validate checks the field values on RegisterEventRequest 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 (*RegisterEventRequest) ValidateAll added in v0.27.0

func (m *RegisterEventRequest) ValidateAll() error

ValidateAll checks the field values on RegisterEventRequest 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 RegisterEventRequestMultiError, or nil if none found.

type RegisterEventRequestMultiError added in v0.27.0

type RegisterEventRequestMultiError []error

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

func (RegisterEventRequestMultiError) AllErrors added in v0.27.0

func (m RegisterEventRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterEventRequestMultiError) Error added in v0.27.0

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

type RegisterEventRequestValidationError added in v0.27.0

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

RegisterEventRequestValidationError is the validation error returned by RegisterEventRequest.Validate if the designated constraints aren't met.

func (RegisterEventRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RegisterEventRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RegisterEventRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RegisterEventRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (RegisterEventRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (RegisterEventRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type RegisterEventResponse added in v0.27.0

type RegisterEventResponse struct {
	EventId string `protobuf:"bytes,1,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use RegisterEventResponse.ProtoReflect.Descriptor instead.

func (*RegisterEventResponse) GetEventId added in v0.27.0

func (x *RegisterEventResponse) GetEventId() string

func (*RegisterEventResponse) ProtoMessage added in v0.27.0

func (*RegisterEventResponse) ProtoMessage()

func (*RegisterEventResponse) ProtoReflect added in v0.27.0

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

func (*RegisterEventResponse) Reset added in v0.27.0

func (x *RegisterEventResponse) Reset()

func (*RegisterEventResponse) String added in v0.27.0

func (x *RegisterEventResponse) String() string

func (*RegisterEventResponse) Validate added in v0.27.0

func (m *RegisterEventResponse) Validate() error

Validate checks the field values on RegisterEventResponse 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 (*RegisterEventResponse) ValidateAll added in v0.27.0

func (m *RegisterEventResponse) ValidateAll() error

ValidateAll checks the field values on RegisterEventResponse 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 RegisterEventResponseMultiError, or nil if none found.

type RegisterEventResponseMultiError added in v0.27.0

type RegisterEventResponseMultiError []error

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

func (RegisterEventResponseMultiError) AllErrors added in v0.27.0

func (m RegisterEventResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterEventResponseMultiError) Error added in v0.27.0

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

type RegisterEventResponseValidationError added in v0.27.0

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

RegisterEventResponseValidationError is the validation error returned by RegisterEventResponse.Validate if the designated constraints aren't met.

func (RegisterEventResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RegisterEventResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RegisterEventResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RegisterEventResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (RegisterEventResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (RegisterEventResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type RegisterPipedRequest added in v0.44.0

type RegisterPipedRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterPipedRequest) Descriptor deprecated added in v0.44.0

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

Deprecated: Use RegisterPipedRequest.ProtoReflect.Descriptor instead.

func (*RegisterPipedRequest) GetDesc added in v0.44.0

func (x *RegisterPipedRequest) GetDesc() string

func (*RegisterPipedRequest) GetName added in v0.44.0

func (x *RegisterPipedRequest) GetName() string

func (*RegisterPipedRequest) ProtoMessage added in v0.44.0

func (*RegisterPipedRequest) ProtoMessage()

func (*RegisterPipedRequest) ProtoReflect added in v0.44.0

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

func (*RegisterPipedRequest) Reset added in v0.44.0

func (x *RegisterPipedRequest) Reset()

func (*RegisterPipedRequest) String added in v0.44.0

func (x *RegisterPipedRequest) String() string

func (*RegisterPipedRequest) Validate added in v0.44.0

func (m *RegisterPipedRequest) Validate() error

Validate checks the field values on RegisterPipedRequest 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 (*RegisterPipedRequest) ValidateAll added in v0.44.0

func (m *RegisterPipedRequest) ValidateAll() error

ValidateAll checks the field values on RegisterPipedRequest 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 RegisterPipedRequestMultiError, or nil if none found.

type RegisterPipedRequestMultiError added in v0.44.0

type RegisterPipedRequestMultiError []error

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

func (RegisterPipedRequestMultiError) AllErrors added in v0.44.0

func (m RegisterPipedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterPipedRequestMultiError) Error added in v0.44.0

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

type RegisterPipedRequestValidationError added in v0.44.0

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

RegisterPipedRequestValidationError is the validation error returned by RegisterPipedRequest.Validate if the designated constraints aren't met.

func (RegisterPipedRequestValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (RegisterPipedRequestValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (RegisterPipedRequestValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (RegisterPipedRequestValidationError) Field added in v0.44.0

Field function returns field value.

func (RegisterPipedRequestValidationError) Key added in v0.44.0

Key function returns key value.

func (RegisterPipedRequestValidationError) Reason added in v0.44.0

Reason function returns reason value.

type RegisterPipedResponse added in v0.44.0

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

func (*RegisterPipedResponse) Descriptor deprecated added in v0.44.0

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

Deprecated: Use RegisterPipedResponse.ProtoReflect.Descriptor instead.

func (*RegisterPipedResponse) GetId added in v0.44.0

func (x *RegisterPipedResponse) GetId() string

func (*RegisterPipedResponse) GetKey added in v0.44.0

func (x *RegisterPipedResponse) GetKey() string

func (*RegisterPipedResponse) ProtoMessage added in v0.44.0

func (*RegisterPipedResponse) ProtoMessage()

func (*RegisterPipedResponse) ProtoReflect added in v0.44.0

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

func (*RegisterPipedResponse) Reset added in v0.44.0

func (x *RegisterPipedResponse) Reset()

func (*RegisterPipedResponse) String added in v0.44.0

func (x *RegisterPipedResponse) String() string

func (*RegisterPipedResponse) Validate added in v0.44.0

func (m *RegisterPipedResponse) Validate() error

Validate checks the field values on RegisterPipedResponse 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 (*RegisterPipedResponse) ValidateAll added in v0.44.0

func (m *RegisterPipedResponse) ValidateAll() error

ValidateAll checks the field values on RegisterPipedResponse 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 RegisterPipedResponseMultiError, or nil if none found.

type RegisterPipedResponseMultiError added in v0.44.0

type RegisterPipedResponseMultiError []error

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

func (RegisterPipedResponseMultiError) AllErrors added in v0.44.0

func (m RegisterPipedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterPipedResponseMultiError) Error added in v0.44.0

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

type RegisterPipedResponseValidationError added in v0.44.0

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

RegisterPipedResponseValidationError is the validation error returned by RegisterPipedResponse.Validate if the designated constraints aren't met.

func (RegisterPipedResponseValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (RegisterPipedResponseValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (RegisterPipedResponseValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (RegisterPipedResponseValidationError) Field added in v0.44.0

Field function returns field value.

func (RegisterPipedResponseValidationError) Key added in v0.44.0

Key function returns key value.

func (RegisterPipedResponseValidationError) Reason added in v0.44.0

Reason function returns reason value.

type RenameApplicationConfigFileRequest added in v0.27.0

type RenameApplicationConfigFileRequest struct {

	// Maximum number of applications that can be updated in one request is 50.
	// To update more than that, break them and send in multiple requests.
	ApplicationIds []string `protobuf:"bytes,1,rep,name=application_ids,json=applicationIds,proto3" json:"application_ids,omitempty"`
	NewFilename    string   `protobuf:"bytes,2,opt,name=new_filename,json=newFilename,proto3" json:"new_filename,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use RenameApplicationConfigFileRequest.ProtoReflect.Descriptor instead.

func (*RenameApplicationConfigFileRequest) GetApplicationIds added in v0.27.0

func (x *RenameApplicationConfigFileRequest) GetApplicationIds() []string

func (*RenameApplicationConfigFileRequest) GetNewFilename added in v0.27.0

func (x *RenameApplicationConfigFileRequest) GetNewFilename() string

func (*RenameApplicationConfigFileRequest) ProtoMessage added in v0.27.0

func (*RenameApplicationConfigFileRequest) ProtoMessage()

func (*RenameApplicationConfigFileRequest) ProtoReflect added in v0.27.0

func (*RenameApplicationConfigFileRequest) Reset added in v0.27.0

func (*RenameApplicationConfigFileRequest) String added in v0.27.0

func (*RenameApplicationConfigFileRequest) Validate added in v0.27.0

Validate checks the field values on RenameApplicationConfigFileRequest 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 (*RenameApplicationConfigFileRequest) ValidateAll added in v0.27.0

func (m *RenameApplicationConfigFileRequest) ValidateAll() error

ValidateAll checks the field values on RenameApplicationConfigFileRequest 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 RenameApplicationConfigFileRequestMultiError, or nil if none found.

type RenameApplicationConfigFileRequestMultiError added in v0.27.0

type RenameApplicationConfigFileRequestMultiError []error

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

func (RenameApplicationConfigFileRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (RenameApplicationConfigFileRequestMultiError) Error added in v0.27.0

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

type RenameApplicationConfigFileRequestValidationError added in v0.27.0

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

RenameApplicationConfigFileRequestValidationError is the validation error returned by RenameApplicationConfigFileRequest.Validate if the designated constraints aren't met.

func (RenameApplicationConfigFileRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RenameApplicationConfigFileRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RenameApplicationConfigFileRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RenameApplicationConfigFileRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (RenameApplicationConfigFileRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (RenameApplicationConfigFileRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type RenameApplicationConfigFileResponse added in v0.27.0

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

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

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

Deprecated: Use RenameApplicationConfigFileResponse.ProtoReflect.Descriptor instead.

func (*RenameApplicationConfigFileResponse) ProtoMessage added in v0.27.0

func (*RenameApplicationConfigFileResponse) ProtoMessage()

func (*RenameApplicationConfigFileResponse) ProtoReflect added in v0.27.0

func (*RenameApplicationConfigFileResponse) Reset added in v0.27.0

func (*RenameApplicationConfigFileResponse) String added in v0.27.0

func (*RenameApplicationConfigFileResponse) Validate added in v0.27.0

Validate checks the field values on RenameApplicationConfigFileResponse 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 (*RenameApplicationConfigFileResponse) ValidateAll added in v0.27.0

func (m *RenameApplicationConfigFileResponse) ValidateAll() error

ValidateAll checks the field values on RenameApplicationConfigFileResponse 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 RenameApplicationConfigFileResponseMultiError, or nil if none found.

type RenameApplicationConfigFileResponseMultiError added in v0.27.0

type RenameApplicationConfigFileResponseMultiError []error

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

func (RenameApplicationConfigFileResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (RenameApplicationConfigFileResponseMultiError) Error added in v0.27.0

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

type RenameApplicationConfigFileResponseValidationError added in v0.27.0

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

RenameApplicationConfigFileResponseValidationError is the validation error returned by RenameApplicationConfigFileResponse.Validate if the designated constraints aren't met.

func (RenameApplicationConfigFileResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RenameApplicationConfigFileResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RenameApplicationConfigFileResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RenameApplicationConfigFileResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (RenameApplicationConfigFileResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (RenameApplicationConfigFileResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type RequestPlanPreviewRequest added in v0.27.0

type RequestPlanPreviewRequest struct {
	RepoRemoteUrl string `protobuf:"bytes,1,opt,name=repo_remote_url,json=repoRemoteUrl,proto3" json:"repo_remote_url,omitempty"`
	HeadBranch    string `protobuf:"bytes,2,opt,name=head_branch,json=headBranch,proto3" json:"head_branch,omitempty"`
	HeadCommit    string `protobuf:"bytes,3,opt,name=head_commit,json=headCommit,proto3" json:"head_commit,omitempty"`
	BaseBranch    string `protobuf:"bytes,4,opt,name=base_branch,json=baseBranch,proto3" json:"base_branch,omitempty"`
	// Maximum number of seconds a Piped can take to handle a command.
	Timeout int64 `protobuf:"varint,5,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use RequestPlanPreviewRequest.ProtoReflect.Descriptor instead.

func (*RequestPlanPreviewRequest) GetBaseBranch added in v0.27.0

func (x *RequestPlanPreviewRequest) GetBaseBranch() string

func (*RequestPlanPreviewRequest) GetHeadBranch added in v0.27.0

func (x *RequestPlanPreviewRequest) GetHeadBranch() string

func (*RequestPlanPreviewRequest) GetHeadCommit added in v0.27.0

func (x *RequestPlanPreviewRequest) GetHeadCommit() string

func (*RequestPlanPreviewRequest) GetRepoRemoteUrl added in v0.27.0

func (x *RequestPlanPreviewRequest) GetRepoRemoteUrl() string

func (*RequestPlanPreviewRequest) GetTimeout added in v0.27.0

func (x *RequestPlanPreviewRequest) GetTimeout() int64

func (*RequestPlanPreviewRequest) ProtoMessage added in v0.27.0

func (*RequestPlanPreviewRequest) ProtoMessage()

func (*RequestPlanPreviewRequest) ProtoReflect added in v0.27.0

func (*RequestPlanPreviewRequest) Reset added in v0.27.0

func (x *RequestPlanPreviewRequest) Reset()

func (*RequestPlanPreviewRequest) String added in v0.27.0

func (x *RequestPlanPreviewRequest) String() string

func (*RequestPlanPreviewRequest) Validate added in v0.27.0

func (m *RequestPlanPreviewRequest) Validate() error

Validate checks the field values on RequestPlanPreviewRequest 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 (*RequestPlanPreviewRequest) ValidateAll added in v0.27.0

func (m *RequestPlanPreviewRequest) ValidateAll() error

ValidateAll checks the field values on RequestPlanPreviewRequest 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 RequestPlanPreviewRequestMultiError, or nil if none found.

type RequestPlanPreviewRequestMultiError added in v0.27.0

type RequestPlanPreviewRequestMultiError []error

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

func (RequestPlanPreviewRequestMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (RequestPlanPreviewRequestMultiError) Error added in v0.27.0

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

type RequestPlanPreviewRequestValidationError added in v0.27.0

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

RequestPlanPreviewRequestValidationError is the validation error returned by RequestPlanPreviewRequest.Validate if the designated constraints aren't met.

func (RequestPlanPreviewRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RequestPlanPreviewRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RequestPlanPreviewRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RequestPlanPreviewRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (RequestPlanPreviewRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (RequestPlanPreviewRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type RequestPlanPreviewResponse added in v0.27.0

type RequestPlanPreviewResponse struct {
	Commands []string `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use RequestPlanPreviewResponse.ProtoReflect.Descriptor instead.

func (*RequestPlanPreviewResponse) GetCommands added in v0.27.0

func (x *RequestPlanPreviewResponse) GetCommands() []string

func (*RequestPlanPreviewResponse) ProtoMessage added in v0.27.0

func (*RequestPlanPreviewResponse) ProtoMessage()

func (*RequestPlanPreviewResponse) ProtoReflect added in v0.27.0

func (*RequestPlanPreviewResponse) Reset added in v0.27.0

func (x *RequestPlanPreviewResponse) Reset()

func (*RequestPlanPreviewResponse) String added in v0.27.0

func (x *RequestPlanPreviewResponse) String() string

func (*RequestPlanPreviewResponse) Validate added in v0.27.0

func (m *RequestPlanPreviewResponse) Validate() error

Validate checks the field values on RequestPlanPreviewResponse 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 (*RequestPlanPreviewResponse) ValidateAll added in v0.27.0

func (m *RequestPlanPreviewResponse) ValidateAll() error

ValidateAll checks the field values on RequestPlanPreviewResponse 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 RequestPlanPreviewResponseMultiError, or nil if none found.

type RequestPlanPreviewResponseMultiError added in v0.27.0

type RequestPlanPreviewResponseMultiError []error

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

func (RequestPlanPreviewResponseMultiError) AllErrors added in v0.27.0

AllErrors returns a list of validation violation errors.

func (RequestPlanPreviewResponseMultiError) Error added in v0.27.0

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

type RequestPlanPreviewResponseValidationError added in v0.27.0

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

RequestPlanPreviewResponseValidationError is the validation error returned by RequestPlanPreviewResponse.Validate if the designated constraints aren't met.

func (RequestPlanPreviewResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (RequestPlanPreviewResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (RequestPlanPreviewResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (RequestPlanPreviewResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (RequestPlanPreviewResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (RequestPlanPreviewResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type StageLog added in v0.42.0

type StageLog struct {
	Blocks    []*model.LogBlock `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"`
	Completed bool              `protobuf:"varint,2,opt,name=completed,proto3" json:"completed,omitempty"`
	// contains filtered or unexported fields
}

func (*StageLog) Descriptor deprecated added in v0.42.0

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

Deprecated: Use StageLog.ProtoReflect.Descriptor instead.

func (*StageLog) GetBlocks added in v0.42.0

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

func (*StageLog) GetCompleted added in v0.42.0

func (x *StageLog) GetCompleted() bool

func (*StageLog) ProtoMessage added in v0.42.0

func (*StageLog) ProtoMessage()

func (*StageLog) ProtoReflect added in v0.42.0

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

func (*StageLog) Reset added in v0.42.0

func (x *StageLog) Reset()

func (*StageLog) String added in v0.42.0

func (x *StageLog) String() string

func (*StageLog) Validate added in v0.42.0

func (m *StageLog) Validate() error

Validate checks the field values on StageLog 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 (*StageLog) ValidateAll added in v0.42.0

func (m *StageLog) ValidateAll() error

ValidateAll checks the field values on StageLog 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 StageLogMultiError, or nil if none found.

type StageLogMultiError added in v0.42.0

type StageLogMultiError []error

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

func (StageLogMultiError) AllErrors added in v0.42.0

func (m StageLogMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StageLogMultiError) Error added in v0.42.0

func (m StageLogMultiError) Error() string

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

type StageLogValidationError added in v0.42.0

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

StageLogValidationError is the validation error returned by StageLog.Validate if the designated constraints aren't met.

func (StageLogValidationError) Cause added in v0.42.0

func (e StageLogValidationError) Cause() error

Cause function returns cause value.

func (StageLogValidationError) Error added in v0.42.0

func (e StageLogValidationError) Error() string

Error satisfies the builtin error interface

func (StageLogValidationError) ErrorName added in v0.42.0

func (e StageLogValidationError) ErrorName() string

ErrorName returns error name.

func (StageLogValidationError) Field added in v0.42.0

func (e StageLogValidationError) Field() string

Field function returns field value.

func (StageLogValidationError) Key added in v0.42.0

func (e StageLogValidationError) Key() bool

Key function returns key value.

func (StageLogValidationError) Reason added in v0.42.0

func (e StageLogValidationError) Reason() string

Reason function returns reason value.

type SyncApplicationRequest added in v0.27.0

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

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

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

Deprecated: Use SyncApplicationRequest.ProtoReflect.Descriptor instead.

func (*SyncApplicationRequest) GetApplicationId added in v0.27.0

func (x *SyncApplicationRequest) GetApplicationId() string

func (*SyncApplicationRequest) ProtoMessage added in v0.27.0

func (*SyncApplicationRequest) ProtoMessage()

func (*SyncApplicationRequest) ProtoReflect added in v0.27.0

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

func (*SyncApplicationRequest) Reset added in v0.27.0

func (x *SyncApplicationRequest) Reset()

func (*SyncApplicationRequest) String added in v0.27.0

func (x *SyncApplicationRequest) String() string

func (*SyncApplicationRequest) Validate added in v0.27.0

func (m *SyncApplicationRequest) Validate() error

Validate checks the field values on SyncApplicationRequest 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 (*SyncApplicationRequest) ValidateAll added in v0.27.0

func (m *SyncApplicationRequest) ValidateAll() error

ValidateAll checks the field values on SyncApplicationRequest 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 SyncApplicationRequestMultiError, or nil if none found.

type SyncApplicationRequestMultiError added in v0.27.0

type SyncApplicationRequestMultiError []error

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

func (SyncApplicationRequestMultiError) AllErrors added in v0.27.0

func (m SyncApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SyncApplicationRequestMultiError) Error added in v0.27.0

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

type SyncApplicationRequestValidationError added in v0.27.0

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

SyncApplicationRequestValidationError is the validation error returned by SyncApplicationRequest.Validate if the designated constraints aren't met.

func (SyncApplicationRequestValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SyncApplicationRequestValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SyncApplicationRequestValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SyncApplicationRequestValidationError) Field added in v0.27.0

Field function returns field value.

func (SyncApplicationRequestValidationError) Key added in v0.27.0

Key function returns key value.

func (SyncApplicationRequestValidationError) Reason added in v0.27.0

Reason function returns reason value.

type SyncApplicationResponse added in v0.27.0

type SyncApplicationResponse struct {
	CommandId string `protobuf:"bytes,1,opt,name=command_id,json=commandId,proto3" json:"command_id,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use SyncApplicationResponse.ProtoReflect.Descriptor instead.

func (*SyncApplicationResponse) GetCommandId added in v0.27.0

func (x *SyncApplicationResponse) GetCommandId() string

func (*SyncApplicationResponse) ProtoMessage added in v0.27.0

func (*SyncApplicationResponse) ProtoMessage()

func (*SyncApplicationResponse) ProtoReflect added in v0.27.0

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

func (*SyncApplicationResponse) Reset added in v0.27.0

func (x *SyncApplicationResponse) Reset()

func (*SyncApplicationResponse) String added in v0.27.0

func (x *SyncApplicationResponse) String() string

func (*SyncApplicationResponse) Validate added in v0.27.0

func (m *SyncApplicationResponse) Validate() error

Validate checks the field values on SyncApplicationResponse 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 (*SyncApplicationResponse) ValidateAll added in v0.27.0

func (m *SyncApplicationResponse) ValidateAll() error

ValidateAll checks the field values on SyncApplicationResponse 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 SyncApplicationResponseMultiError, or nil if none found.

type SyncApplicationResponseMultiError added in v0.27.0

type SyncApplicationResponseMultiError []error

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

func (SyncApplicationResponseMultiError) AllErrors added in v0.27.0

func (m SyncApplicationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SyncApplicationResponseMultiError) Error added in v0.27.0

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

type SyncApplicationResponseValidationError added in v0.27.0

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

SyncApplicationResponseValidationError is the validation error returned by SyncApplicationResponse.Validate if the designated constraints aren't met.

func (SyncApplicationResponseValidationError) Cause added in v0.27.0

Cause function returns cause value.

func (SyncApplicationResponseValidationError) Error added in v0.27.0

Error satisfies the builtin error interface

func (SyncApplicationResponseValidationError) ErrorName added in v0.27.0

ErrorName returns error name.

func (SyncApplicationResponseValidationError) Field added in v0.27.0

Field function returns field value.

func (SyncApplicationResponseValidationError) Key added in v0.27.0

Key function returns key value.

func (SyncApplicationResponseValidationError) Reason added in v0.27.0

Reason function returns reason value.

type UnimplementedAPIServiceServer added in v0.27.0

type UnimplementedAPIServiceServer struct {
}

UnimplementedAPIServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAPIServiceServer) AddApplication added in v0.27.0

func (UnimplementedAPIServiceServer) DeleteApplication added in v0.39.0

func (UnimplementedAPIServiceServer) DisableApplication added in v0.41.3

func (UnimplementedAPIServiceServer) DisablePiped added in v0.27.0

func (UnimplementedAPIServiceServer) EnableApplication added in v0.43.0

func (UnimplementedAPIServiceServer) EnablePiped added in v0.27.0

func (UnimplementedAPIServiceServer) Encrypt added in v0.27.0

func (UnimplementedAPIServiceServer) GetApplication added in v0.27.0

func (UnimplementedAPIServiceServer) GetCommand added in v0.27.0

func (UnimplementedAPIServiceServer) GetDeployment added in v0.27.0

func (UnimplementedAPIServiceServer) GetPiped added in v0.44.0

func (UnimplementedAPIServiceServer) GetPlanPreviewResults added in v0.27.0

func (UnimplementedAPIServiceServer) ListApplications added in v0.27.0

func (UnimplementedAPIServiceServer) ListDeployments added in v0.42.0

func (UnimplementedAPIServiceServer) ListStageLogs added in v0.42.0

func (UnimplementedAPIServiceServer) RegisterEvent added in v0.27.0

func (UnimplementedAPIServiceServer) RegisterPiped added in v0.44.0

func (UnimplementedAPIServiceServer) RenameApplicationConfigFile added in v0.27.0

func (UnimplementedAPIServiceServer) RequestPlanPreview added in v0.27.0

func (UnimplementedAPIServiceServer) SyncApplication added in v0.27.0

func (UnimplementedAPIServiceServer) UpdateApplication added in v0.44.0

func (UnimplementedAPIServiceServer) UpdatePiped added in v0.44.0

type UnsafeAPIServiceServer added in v0.27.0

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

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

type UpdateApplicationRequest added in v0.44.0

type UpdateApplicationRequest struct {
	ApplicationId    string                    `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
	PipedId          string                    `protobuf:"bytes,2,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	PlatformProvider string                    `protobuf:"bytes,3,opt,name=platform_provider,json=platformProvider,proto3" json:"platform_provider,omitempty"`
	GitPath          *model.ApplicationGitPath `protobuf:"bytes,4,opt,name=git_path,json=gitPath,proto3" json:"git_path,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateApplicationRequest) Descriptor deprecated added in v0.44.0

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

Deprecated: Use UpdateApplicationRequest.ProtoReflect.Descriptor instead.

func (*UpdateApplicationRequest) GetApplicationId added in v0.44.0

func (x *UpdateApplicationRequest) GetApplicationId() string

func (*UpdateApplicationRequest) GetGitPath added in v0.44.0

func (*UpdateApplicationRequest) GetPipedId added in v0.44.0

func (x *UpdateApplicationRequest) GetPipedId() string

func (*UpdateApplicationRequest) GetPlatformProvider added in v0.44.0

func (x *UpdateApplicationRequest) GetPlatformProvider() string

func (*UpdateApplicationRequest) ProtoMessage added in v0.44.0

func (*UpdateApplicationRequest) ProtoMessage()

func (*UpdateApplicationRequest) ProtoReflect added in v0.44.0

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

func (*UpdateApplicationRequest) Reset added in v0.44.0

func (x *UpdateApplicationRequest) Reset()

func (*UpdateApplicationRequest) String added in v0.44.0

func (x *UpdateApplicationRequest) String() string

func (*UpdateApplicationRequest) Validate added in v0.44.0

func (m *UpdateApplicationRequest) Validate() error

Validate checks the field values on UpdateApplicationRequest 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 (*UpdateApplicationRequest) ValidateAll added in v0.44.0

func (m *UpdateApplicationRequest) ValidateAll() error

ValidateAll checks the field values on UpdateApplicationRequest 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 UpdateApplicationRequestMultiError, or nil if none found.

type UpdateApplicationRequestMultiError added in v0.44.0

type UpdateApplicationRequestMultiError []error

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

func (UpdateApplicationRequestMultiError) AllErrors added in v0.44.0

func (m UpdateApplicationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateApplicationRequestMultiError) Error added in v0.44.0

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

type UpdateApplicationRequestValidationError added in v0.44.0

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

UpdateApplicationRequestValidationError is the validation error returned by UpdateApplicationRequest.Validate if the designated constraints aren't met.

func (UpdateApplicationRequestValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (UpdateApplicationRequestValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (UpdateApplicationRequestValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (UpdateApplicationRequestValidationError) Field added in v0.44.0

Field function returns field value.

func (UpdateApplicationRequestValidationError) Key added in v0.44.0

Key function returns key value.

func (UpdateApplicationRequestValidationError) Reason added in v0.44.0

Reason function returns reason value.

type UpdateApplicationResponse added in v0.44.0

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

func (*UpdateApplicationResponse) Descriptor deprecated added in v0.44.0

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

Deprecated: Use UpdateApplicationResponse.ProtoReflect.Descriptor instead.

func (*UpdateApplicationResponse) GetApplicationId added in v0.44.0

func (x *UpdateApplicationResponse) GetApplicationId() string

func (*UpdateApplicationResponse) ProtoMessage added in v0.44.0

func (*UpdateApplicationResponse) ProtoMessage()

func (*UpdateApplicationResponse) ProtoReflect added in v0.44.0

func (*UpdateApplicationResponse) Reset added in v0.44.0

func (x *UpdateApplicationResponse) Reset()

func (*UpdateApplicationResponse) String added in v0.44.0

func (x *UpdateApplicationResponse) String() string

func (*UpdateApplicationResponse) Validate added in v0.44.0

func (m *UpdateApplicationResponse) Validate() error

Validate checks the field values on UpdateApplicationResponse 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 (*UpdateApplicationResponse) ValidateAll added in v0.44.0

func (m *UpdateApplicationResponse) ValidateAll() error

ValidateAll checks the field values on UpdateApplicationResponse 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 UpdateApplicationResponseMultiError, or nil if none found.

type UpdateApplicationResponseMultiError added in v0.44.0

type UpdateApplicationResponseMultiError []error

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

func (UpdateApplicationResponseMultiError) AllErrors added in v0.44.0

AllErrors returns a list of validation violation errors.

func (UpdateApplicationResponseMultiError) Error added in v0.44.0

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

type UpdateApplicationResponseValidationError added in v0.44.0

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

UpdateApplicationResponseValidationError is the validation error returned by UpdateApplicationResponse.Validate if the designated constraints aren't met.

func (UpdateApplicationResponseValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (UpdateApplicationResponseValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (UpdateApplicationResponseValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (UpdateApplicationResponseValidationError) Field added in v0.44.0

Field function returns field value.

func (UpdateApplicationResponseValidationError) Key added in v0.44.0

Key function returns key value.

func (UpdateApplicationResponseValidationError) Reason added in v0.44.0

Reason function returns reason value.

type UpdatePipedRequest added in v0.44.0

type UpdatePipedRequest struct {
	PipedId string `protobuf:"bytes,1,opt,name=piped_id,json=pipedId,proto3" json:"piped_id,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Desc    string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatePipedRequest) Descriptor deprecated added in v0.44.0

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

Deprecated: Use UpdatePipedRequest.ProtoReflect.Descriptor instead.

func (*UpdatePipedRequest) GetDesc added in v0.44.0

func (x *UpdatePipedRequest) GetDesc() string

func (*UpdatePipedRequest) GetName added in v0.44.0

func (x *UpdatePipedRequest) GetName() string

func (*UpdatePipedRequest) GetPipedId added in v0.44.0

func (x *UpdatePipedRequest) GetPipedId() string

func (*UpdatePipedRequest) ProtoMessage added in v0.44.0

func (*UpdatePipedRequest) ProtoMessage()

func (*UpdatePipedRequest) ProtoReflect added in v0.44.0

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

func (*UpdatePipedRequest) Reset added in v0.44.0

func (x *UpdatePipedRequest) Reset()

func (*UpdatePipedRequest) String added in v0.44.0

func (x *UpdatePipedRequest) String() string

func (*UpdatePipedRequest) Validate added in v0.44.0

func (m *UpdatePipedRequest) Validate() error

Validate checks the field values on UpdatePipedRequest 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 (*UpdatePipedRequest) ValidateAll added in v0.44.0

func (m *UpdatePipedRequest) ValidateAll() error

ValidateAll checks the field values on UpdatePipedRequest 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 UpdatePipedRequestMultiError, or nil if none found.

type UpdatePipedRequestMultiError added in v0.44.0

type UpdatePipedRequestMultiError []error

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

func (UpdatePipedRequestMultiError) AllErrors added in v0.44.0

func (m UpdatePipedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdatePipedRequestMultiError) Error added in v0.44.0

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

type UpdatePipedRequestValidationError added in v0.44.0

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

UpdatePipedRequestValidationError is the validation error returned by UpdatePipedRequest.Validate if the designated constraints aren't met.

func (UpdatePipedRequestValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (UpdatePipedRequestValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (UpdatePipedRequestValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (UpdatePipedRequestValidationError) Field added in v0.44.0

Field function returns field value.

func (UpdatePipedRequestValidationError) Key added in v0.44.0

Key function returns key value.

func (UpdatePipedRequestValidationError) Reason added in v0.44.0

Reason function returns reason value.

type UpdatePipedResponse added in v0.44.0

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

func (*UpdatePipedResponse) Descriptor deprecated added in v0.44.0

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

Deprecated: Use UpdatePipedResponse.ProtoReflect.Descriptor instead.

func (*UpdatePipedResponse) ProtoMessage added in v0.44.0

func (*UpdatePipedResponse) ProtoMessage()

func (*UpdatePipedResponse) ProtoReflect added in v0.44.0

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

func (*UpdatePipedResponse) Reset added in v0.44.0

func (x *UpdatePipedResponse) Reset()

func (*UpdatePipedResponse) String added in v0.44.0

func (x *UpdatePipedResponse) String() string

func (*UpdatePipedResponse) Validate added in v0.44.0

func (m *UpdatePipedResponse) Validate() error

Validate checks the field values on UpdatePipedResponse 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 (*UpdatePipedResponse) ValidateAll added in v0.44.0

func (m *UpdatePipedResponse) ValidateAll() error

ValidateAll checks the field values on UpdatePipedResponse 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 UpdatePipedResponseMultiError, or nil if none found.

type UpdatePipedResponseMultiError added in v0.44.0

type UpdatePipedResponseMultiError []error

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

func (UpdatePipedResponseMultiError) AllErrors added in v0.44.0

func (m UpdatePipedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdatePipedResponseMultiError) Error added in v0.44.0

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

type UpdatePipedResponseValidationError added in v0.44.0

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

UpdatePipedResponseValidationError is the validation error returned by UpdatePipedResponse.Validate if the designated constraints aren't met.

func (UpdatePipedResponseValidationError) Cause added in v0.44.0

Cause function returns cause value.

func (UpdatePipedResponseValidationError) Error added in v0.44.0

Error satisfies the builtin error interface

func (UpdatePipedResponseValidationError) ErrorName added in v0.44.0

ErrorName returns error name.

func (UpdatePipedResponseValidationError) Field added in v0.44.0

Field function returns field value.

func (UpdatePipedResponseValidationError) Key added in v0.44.0

Key function returns key value.

func (UpdatePipedResponseValidationError) Reason added in v0.44.0

Reason function returns reason value.

Jump to

Keyboard shortcuts

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