common_config

package
v0.3.42 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: MIT Imports: 20 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ExternalLink_LinkType_name = map[int32]string{
		0: "UNKNOWN",
		1: "DETAIL",
		2: "LOG",
		3: "APP",
	}
	ExternalLink_LinkType_value = map[string]int32{
		"UNKNOWN": 0,
		"DETAIL":  1,
		"LOG":     2,
		"APP":     3,
	}
)

Enum value maps for ExternalLink_LinkType.

View Source
var (
	KubernetesConfig_Type_name = map[int32]string{
		0: "UNKNOWN",
		1: "KUBERNETES",
		2: "KUSTOMIZE",
	}
	KubernetesConfig_Type_value = map[string]int32{
		"UNKNOWN":    0,
		"KUBERNETES": 1,
		"KUSTOMIZE":  2,
	}
)

Enum value maps for KubernetesConfig_Type.

View Source
var (
	KubernetesConfig_EnvInjectionMode_name = map[int32]string{
		0: "ENV_INJECT_UNKNOWN",
		1: "ENV_INJECT_DISABLED",
		2: "ENV_INJECT_NON_SECRET_ENV",
	}
	KubernetesConfig_EnvInjectionMode_value = map[string]int32{
		"ENV_INJECT_UNKNOWN":        0,
		"ENV_INJECT_DISABLED":       1,
		"ENV_INJECT_NON_SECRET_ENV": 2,
	}
)

Enum value maps for KubernetesConfig_EnvInjectionMode.

View Source
var (
	Maturity_name = map[int32]string{
		0: "FAST_ITERATION",
		1: "PRELAUNCH",
		2: "LIVE",
	}
	Maturity_value = map[string]int32{
		"FAST_ITERATION": 0,
		"PRELAUNCH":      1,
		"LIVE":           2,
	}
)

Enum value maps for Maturity.

View Source
var (
	PortConfig_Protocol_name = map[int32]string{
		0: "UNKNOWN",
		1: "HTTP",
		2: "HTTP2",
		3: "GRPC",
		4: "TCP",
	}
	PortConfig_Protocol_value = map[string]int32{
		"UNKNOWN": 0,
		"HTTP":    1,
		"HTTP2":   2,
		"GRPC":    3,
		"TCP":     4,
	}
)

Enum value maps for PortConfig_Protocol.

View Source
var (
	TaskLifecycle_name = map[int32]string{
		0: "UNKNOWN_TASK_LIFECYCLE",
		1: "CONVERGENCE_START",
		2: "PRE_APPROVAL",
		3: "APPROVAL",
		4: "POST_APPROVAL",
		5: "DEPLOYMENT",
		6: "POST_DEPLOYMENT",
	}
	TaskLifecycle_value = map[string]int32{
		"UNKNOWN_TASK_LIFECYCLE": 0,
		"CONVERGENCE_START":      1,
		"PRE_APPROVAL":           2,
		"APPROVAL":               3,
		"POST_APPROVAL":          4,
		"DEPLOYMENT":             5,
		"POST_DEPLOYMENT":        6,
	}
)

Enum value maps for TaskLifecycle.

View Source
var File_prodvana_common_config_constants_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_dangerous_action_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_env_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_external_link_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_helm_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_kubernetes_config_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_links_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_maturity_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_meta_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_notification_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_parameters_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_program_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_release_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_retry_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_rollback_proto protoreflect.FileDescriptor
View Source
var File_prodvana_common_config_task_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AutoRollbackConfig added in v0.3.10

type AutoRollbackConfig struct {
	Disabled               bool   `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
	InternalDisabledReason string `` // Set by Prodvana
	/* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AutoRollbackConfig) Descriptor deprecated added in v0.3.10

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

Deprecated: Use AutoRollbackConfig.ProtoReflect.Descriptor instead.

func (*AutoRollbackConfig) GetDisabled added in v0.3.10

func (x *AutoRollbackConfig) GetDisabled() bool

func (*AutoRollbackConfig) GetInternalDisabledReason added in v0.3.41

func (x *AutoRollbackConfig) GetInternalDisabledReason() string

func (*AutoRollbackConfig) ProtoMessage added in v0.3.10

func (*AutoRollbackConfig) ProtoMessage()

func (*AutoRollbackConfig) ProtoReflect added in v0.3.10

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

func (*AutoRollbackConfig) Reset added in v0.3.10

func (x *AutoRollbackConfig) Reset()

func (*AutoRollbackConfig) String added in v0.3.10

func (x *AutoRollbackConfig) String() string

func (*AutoRollbackConfig) Validate added in v0.3.10

func (m *AutoRollbackConfig) Validate() error

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

func (m *AutoRollbackConfig) ValidateAll() error

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

type AutoRollbackConfigMultiError added in v0.3.10

type AutoRollbackConfigMultiError []error

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

func (AutoRollbackConfigMultiError) AllErrors added in v0.3.10

func (m AutoRollbackConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AutoRollbackConfigMultiError) Error added in v0.3.10

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

type AutoRollbackConfigValidationError added in v0.3.10

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

AutoRollbackConfigValidationError is the validation error returned by AutoRollbackConfig.Validate if the designated constraints aren't met.

func (AutoRollbackConfigValidationError) Cause added in v0.3.10

Cause function returns cause value.

func (AutoRollbackConfigValidationError) Error added in v0.3.10

Error satisfies the builtin error interface

func (AutoRollbackConfigValidationError) ErrorName added in v0.3.10

ErrorName returns error name.

func (AutoRollbackConfigValidationError) Field added in v0.3.10

Field function returns field value.

func (AutoRollbackConfigValidationError) Key added in v0.3.10

Key function returns key value.

func (AutoRollbackConfigValidationError) Reason added in v0.3.10

Reason function returns reason value.

type BlobParameterDefinition added in v0.3.10

type BlobParameterDefinition struct {
	DefaultValue string `protobuf:"bytes,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// contains filtered or unexported fields
}

A parameter pointing to a remote blob, stored inside Prodvana's BlobsManager interface. The value of the template variable will be the blob ID. When combined with `pvn-wrapper exec --in`, this parameter type can be used to make files manifest on disk.

func (*BlobParameterDefinition) Descriptor deprecated added in v0.3.10

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

Deprecated: Use BlobParameterDefinition.ProtoReflect.Descriptor instead.

func (*BlobParameterDefinition) GetDefaultValue added in v0.3.13

func (x *BlobParameterDefinition) GetDefaultValue() string

func (*BlobParameterDefinition) ProtoMessage added in v0.3.10

func (*BlobParameterDefinition) ProtoMessage()

func (*BlobParameterDefinition) ProtoReflect added in v0.3.10

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

func (*BlobParameterDefinition) Reset added in v0.3.10

func (x *BlobParameterDefinition) Reset()

func (*BlobParameterDefinition) String added in v0.3.10

func (x *BlobParameterDefinition) String() string

func (*BlobParameterDefinition) Validate added in v0.3.10

func (m *BlobParameterDefinition) Validate() error

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

func (m *BlobParameterDefinition) ValidateAll() error

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

type BlobParameterDefinitionMultiError added in v0.3.10

type BlobParameterDefinitionMultiError []error

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

func (BlobParameterDefinitionMultiError) AllErrors added in v0.3.10

func (m BlobParameterDefinitionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BlobParameterDefinitionMultiError) Error added in v0.3.10

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

type BlobParameterDefinitionValidationError added in v0.3.10

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

BlobParameterDefinitionValidationError is the validation error returned by BlobParameterDefinition.Validate if the designated constraints aren't met.

func (BlobParameterDefinitionValidationError) Cause added in v0.3.10

Cause function returns cause value.

func (BlobParameterDefinitionValidationError) Error added in v0.3.10

Error satisfies the builtin error interface

func (BlobParameterDefinitionValidationError) ErrorName added in v0.3.10

ErrorName returns error name.

func (BlobParameterDefinitionValidationError) Field added in v0.3.10

Field function returns field value.

func (BlobParameterDefinitionValidationError) Key added in v0.3.10

Key function returns key value.

func (BlobParameterDefinitionValidationError) Reason added in v0.3.10

Reason function returns reason value.

type BlobParameterValue added in v0.3.10

type BlobParameterValue struct {

	// Types that are assignable to BlobOneof:
	//
	//	*BlobParameterValue_Inlined
	//	*BlobParameterValue_InlinedBytes
	BlobOneof isBlobParameterValue_BlobOneof `protobuf_oneof:"blob_oneof"`
	// contains filtered or unexported fields
}

func (*BlobParameterValue) Descriptor deprecated added in v0.3.10

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

Deprecated: Use BlobParameterValue.ProtoReflect.Descriptor instead.

func (*BlobParameterValue) GetBlobOneof added in v0.3.10

func (m *BlobParameterValue) GetBlobOneof() isBlobParameterValue_BlobOneof

func (*BlobParameterValue) GetInlined added in v0.3.10

func (x *BlobParameterValue) GetInlined() string

func (*BlobParameterValue) GetInlinedBytes added in v0.3.38

func (x *BlobParameterValue) GetInlinedBytes() []byte

func (*BlobParameterValue) ProtoMessage added in v0.3.10

func (*BlobParameterValue) ProtoMessage()

func (*BlobParameterValue) ProtoReflect added in v0.3.10

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

func (*BlobParameterValue) Reset added in v0.3.10

func (x *BlobParameterValue) Reset()

func (*BlobParameterValue) String added in v0.3.10

func (x *BlobParameterValue) String() string

func (*BlobParameterValue) Validate added in v0.3.10

func (m *BlobParameterValue) Validate() error

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

func (m *BlobParameterValue) ValidateAll() error

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

type BlobParameterValueMultiError added in v0.3.10

type BlobParameterValueMultiError []error

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

func (BlobParameterValueMultiError) AllErrors added in v0.3.10

func (m BlobParameterValueMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BlobParameterValueMultiError) Error added in v0.3.10

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

type BlobParameterValueValidationError added in v0.3.10

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

BlobParameterValueValidationError is the validation error returned by BlobParameterValue.Validate if the designated constraints aren't met.

func (BlobParameterValueValidationError) Cause added in v0.3.10

Cause function returns cause value.

func (BlobParameterValueValidationError) Error added in v0.3.10

Error satisfies the builtin error interface

func (BlobParameterValueValidationError) ErrorName added in v0.3.10

ErrorName returns error name.

func (BlobParameterValueValidationError) Field added in v0.3.10

Field function returns field value.

func (BlobParameterValueValidationError) Key added in v0.3.10

Key function returns key value.

func (BlobParameterValueValidationError) Reason added in v0.3.10

Reason function returns reason value.

type BlobParameterValue_Inlined added in v0.3.10

type BlobParameterValue_Inlined struct {
	Inlined string `protobuf:"bytes,1,opt,name=inlined,proto3,oneof"`
}

type BlobParameterValue_InlinedBytes added in v0.3.38

type BlobParameterValue_InlinedBytes struct {
	InlinedBytes []byte `protobuf:"bytes,2,opt,name=inlined_bytes,json=inlinedBytes,proto3,oneof"`
}

type CmdProbe

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

func (*CmdProbe) Descriptor deprecated

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

Deprecated: Use CmdProbe.ProtoReflect.Descriptor instead.

func (*CmdProbe) GetCommand

func (x *CmdProbe) GetCommand() []string

func (*CmdProbe) ProtoMessage

func (*CmdProbe) ProtoMessage()

func (*CmdProbe) ProtoReflect

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

func (*CmdProbe) Reset

func (x *CmdProbe) Reset()

func (*CmdProbe) String

func (x *CmdProbe) String() string

func (*CmdProbe) Validate

func (m *CmdProbe) Validate() error

Validate checks the field values on CmdProbe 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 (*CmdProbe) ValidateAll

func (m *CmdProbe) ValidateAll() error

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

type CmdProbeMultiError

type CmdProbeMultiError []error

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

func (CmdProbeMultiError) AllErrors

func (m CmdProbeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CmdProbeMultiError) Error

func (m CmdProbeMultiError) Error() string

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

type CmdProbeValidationError

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

CmdProbeValidationError is the validation error returned by CmdProbe.Validate if the designated constraints aren't met.

func (CmdProbeValidationError) Cause

func (e CmdProbeValidationError) Cause() error

Cause function returns cause value.

func (CmdProbeValidationError) Error

func (e CmdProbeValidationError) Error() string

Error satisfies the builtin error interface

func (CmdProbeValidationError) ErrorName

func (e CmdProbeValidationError) ErrorName() string

ErrorName returns error name.

func (CmdProbeValidationError) Field

func (e CmdProbeValidationError) Field() string

Field function returns field value.

func (CmdProbeValidationError) Key

func (e CmdProbeValidationError) Key() bool

Key function returns key value.

func (CmdProbeValidationError) Reason

func (e CmdProbeValidationError) Reason() string

Reason function returns reason value.

type CommitParameterDefinition added in v0.2.15

type CommitParameterDefinition struct {
	Repository string `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
	// branch to pull commits from, defaults to `main`
	Branch string `protobuf:"bytes,2,opt,name=branch,proto3" json:"branch,omitempty"`
	// contains filtered or unexported fields
}

func (*CommitParameterDefinition) Descriptor deprecated added in v0.2.15

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

Deprecated: Use CommitParameterDefinition.ProtoReflect.Descriptor instead.

func (*CommitParameterDefinition) GetBranch added in v0.2.15

func (x *CommitParameterDefinition) GetBranch() string

func (*CommitParameterDefinition) GetRepository added in v0.2.15

func (x *CommitParameterDefinition) GetRepository() string

func (*CommitParameterDefinition) ProtoMessage added in v0.2.15

func (*CommitParameterDefinition) ProtoMessage()

func (*CommitParameterDefinition) ProtoReflect added in v0.2.15

func (*CommitParameterDefinition) Reset added in v0.2.15

func (x *CommitParameterDefinition) Reset()

func (*CommitParameterDefinition) String added in v0.2.15

func (x *CommitParameterDefinition) String() string

func (*CommitParameterDefinition) Validate added in v0.2.15

func (m *CommitParameterDefinition) Validate() error

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

func (m *CommitParameterDefinition) ValidateAll() error

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

type CommitParameterDefinitionMultiError added in v0.2.15

type CommitParameterDefinitionMultiError []error

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

func (CommitParameterDefinitionMultiError) AllErrors added in v0.2.15

AllErrors returns a list of validation violation errors.

func (CommitParameterDefinitionMultiError) Error added in v0.2.15

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

type CommitParameterDefinitionValidationError added in v0.2.15

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

CommitParameterDefinitionValidationError is the validation error returned by CommitParameterDefinition.Validate if the designated constraints aren't met.

func (CommitParameterDefinitionValidationError) Cause added in v0.2.15

Cause function returns cause value.

func (CommitParameterDefinitionValidationError) Error added in v0.2.15

Error satisfies the builtin error interface

func (CommitParameterDefinitionValidationError) ErrorName added in v0.2.15

ErrorName returns error name.

func (CommitParameterDefinitionValidationError) Field added in v0.2.15

Field function returns field value.

func (CommitParameterDefinitionValidationError) Key added in v0.2.15

Key function returns key value.

func (CommitParameterDefinitionValidationError) Reason added in v0.2.15

Reason function returns reason value.

type Constant added in v0.1.19

type Constant struct {

	// constant name, used in substitutions
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are assignable to ConfigOneof:
	//
	//	*Constant_String_
	ConfigOneof isConstant_ConfigOneof `protobuf_oneof:"config_oneof"`
	// contains filtered or unexported fields
}

func (*Constant) Descriptor deprecated added in v0.1.19

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

Deprecated: Use Constant.ProtoReflect.Descriptor instead.

func (*Constant) GetConfigOneof added in v0.1.19

func (m *Constant) GetConfigOneof() isConstant_ConfigOneof

func (*Constant) GetName added in v0.1.19

func (x *Constant) GetName() string

func (*Constant) GetString_ added in v0.1.19

func (x *Constant) GetString_() *StringConstant

func (*Constant) ProtoMessage added in v0.1.19

func (*Constant) ProtoMessage()

func (*Constant) ProtoReflect added in v0.1.19

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

func (*Constant) Reset added in v0.1.19

func (x *Constant) Reset()

func (*Constant) String added in v0.1.19

func (x *Constant) String() string

func (*Constant) Validate added in v0.1.19

func (m *Constant) Validate() error

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

func (m *Constant) ValidateAll() error

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

type ConstantMultiError added in v0.1.19

type ConstantMultiError []error

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

func (ConstantMultiError) AllErrors added in v0.1.19

func (m ConstantMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConstantMultiError) Error added in v0.1.19

func (m ConstantMultiError) Error() string

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

type ConstantValidationError added in v0.1.19

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

ConstantValidationError is the validation error returned by Constant.Validate if the designated constraints aren't met.

func (ConstantValidationError) Cause added in v0.1.19

func (e ConstantValidationError) Cause() error

Cause function returns cause value.

func (ConstantValidationError) Error added in v0.1.19

func (e ConstantValidationError) Error() string

Error satisfies the builtin error interface

func (ConstantValidationError) ErrorName added in v0.1.19

func (e ConstantValidationError) ErrorName() string

ErrorName returns error name.

func (ConstantValidationError) Field added in v0.1.19

func (e ConstantValidationError) Field() string

Field function returns field value.

func (ConstantValidationError) Key added in v0.1.19

func (e ConstantValidationError) Key() bool

Key function returns key value.

func (ConstantValidationError) Reason added in v0.1.19

func (e ConstantValidationError) Reason() string

Reason function returns reason value.

type Constant_String_ added in v0.1.19

type Constant_String_ struct {
	String_ *StringConstant `protobuf:"bytes,3,opt,name=string,proto3,oneof"`
}

type DangerousAction

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

func (*DangerousAction) Descriptor deprecated

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

Deprecated: Use DangerousAction.ProtoReflect.Descriptor instead.

func (*DangerousAction) GetExplanation

func (x *DangerousAction) GetExplanation() string

func (*DangerousAction) GetId

func (x *DangerousAction) GetId() string

func (*DangerousAction) ProtoMessage

func (*DangerousAction) ProtoMessage()

func (*DangerousAction) ProtoReflect

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

func (*DangerousAction) Reset

func (x *DangerousAction) Reset()

func (*DangerousAction) String

func (x *DangerousAction) String() string

func (*DangerousAction) Validate

func (m *DangerousAction) Validate() error

Validate checks the field values on DangerousAction 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 (*DangerousAction) ValidateAll

func (m *DangerousAction) ValidateAll() error

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

type DangerousActionMultiError

type DangerousActionMultiError []error

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

func (DangerousActionMultiError) AllErrors

func (m DangerousActionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DangerousActionMultiError) Error

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

type DangerousActionValidationError

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

DangerousActionValidationError is the validation error returned by DangerousAction.Validate if the designated constraints aren't met.

func (DangerousActionValidationError) Cause

Cause function returns cause value.

func (DangerousActionValidationError) Error

Error satisfies the builtin error interface

func (DangerousActionValidationError) ErrorName

func (e DangerousActionValidationError) ErrorName() string

ErrorName returns error name.

func (DangerousActionValidationError) Field

Field function returns field value.

func (DangerousActionValidationError) Key

Key function returns key value.

func (DangerousActionValidationError) Reason

Reason function returns reason value.

type DockerImageParameterDefinition

type DockerImageParameterDefinition struct {
	DefaultTag        string                                    `protobuf:"bytes,1,opt,name=default_tag,json=defaultTag,proto3" json:"default_tag,omitempty"` // can be omitted if parameter is required
	ImageRegistryInfo *ImageRegistryInfo                        `protobuf:"bytes,2,opt,name=image_registry_info,json=imageRegistryInfo,proto3" json:"image_registry_info,omitempty"`
	Changes           []*DockerImageParameterDefinition_Changes `protobuf:"bytes,3,rep,name=changes,proto3" json:"changes,omitempty"`
	// contains filtered or unexported fields
}

func (*DockerImageParameterDefinition) Descriptor deprecated

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

Deprecated: Use DockerImageParameterDefinition.ProtoReflect.Descriptor instead.

func (*DockerImageParameterDefinition) GetChanges

func (*DockerImageParameterDefinition) GetDefaultTag

func (x *DockerImageParameterDefinition) GetDefaultTag() string

func (*DockerImageParameterDefinition) GetImageRegistryInfo

func (x *DockerImageParameterDefinition) GetImageRegistryInfo() *ImageRegistryInfo

func (*DockerImageParameterDefinition) ProtoMessage

func (*DockerImageParameterDefinition) ProtoMessage()

func (*DockerImageParameterDefinition) ProtoReflect

func (*DockerImageParameterDefinition) Reset

func (x *DockerImageParameterDefinition) Reset()

func (*DockerImageParameterDefinition) String

func (*DockerImageParameterDefinition) Validate

func (m *DockerImageParameterDefinition) Validate() error

Validate checks the field values on DockerImageParameterDefinition 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 (*DockerImageParameterDefinition) ValidateAll

func (m *DockerImageParameterDefinition) ValidateAll() error

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

type DockerImageParameterDefinitionMultiError

type DockerImageParameterDefinitionMultiError []error

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

func (DockerImageParameterDefinitionMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DockerImageParameterDefinitionMultiError) Error

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

type DockerImageParameterDefinitionValidationError

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

DockerImageParameterDefinitionValidationError is the validation error returned by DockerImageParameterDefinition.Validate if the designated constraints aren't met.

func (DockerImageParameterDefinitionValidationError) Cause

Cause function returns cause value.

func (DockerImageParameterDefinitionValidationError) Error

Error satisfies the builtin error interface

func (DockerImageParameterDefinitionValidationError) ErrorName

ErrorName returns error name.

func (DockerImageParameterDefinitionValidationError) Field

Field function returns field value.

func (DockerImageParameterDefinitionValidationError) Key

Key function returns key value.

func (DockerImageParameterDefinitionValidationError) Reason

Reason function returns reason value.

type DockerImageParameterDefinition_Changes

type DockerImageParameterDefinition_Changes struct {

	// Types that are assignable to Oneof:
	//
	//	*DockerImageParameterDefinition_Changes_Program
	Oneof isDockerImageParameterDefinition_Changes_Oneof `protobuf_oneof:"oneof"`
	// contains filtered or unexported fields
}

func (*DockerImageParameterDefinition_Changes) Descriptor deprecated

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

Deprecated: Use DockerImageParameterDefinition_Changes.ProtoReflect.Descriptor instead.

func (*DockerImageParameterDefinition_Changes) GetOneof

func (m *DockerImageParameterDefinition_Changes) GetOneof() isDockerImageParameterDefinition_Changes_Oneof

func (*DockerImageParameterDefinition_Changes) GetProgram

func (*DockerImageParameterDefinition_Changes) ProtoMessage

func (*DockerImageParameterDefinition_Changes) ProtoReflect

func (*DockerImageParameterDefinition_Changes) Reset

func (*DockerImageParameterDefinition_Changes) String

func (*DockerImageParameterDefinition_Changes) Validate

Validate checks the field values on DockerImageParameterDefinition_Changes 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 (*DockerImageParameterDefinition_Changes) ValidateAll

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

type DockerImageParameterDefinition_ChangesMultiError

type DockerImageParameterDefinition_ChangesMultiError []error

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

func (DockerImageParameterDefinition_ChangesMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DockerImageParameterDefinition_ChangesMultiError) Error

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

type DockerImageParameterDefinition_ChangesValidationError

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

DockerImageParameterDefinition_ChangesValidationError is the validation error returned by DockerImageParameterDefinition_Changes.Validate if the designated constraints aren't met.

func (DockerImageParameterDefinition_ChangesValidationError) Cause

Cause function returns cause value.

func (DockerImageParameterDefinition_ChangesValidationError) Error

Error satisfies the builtin error interface

func (DockerImageParameterDefinition_ChangesValidationError) ErrorName

ErrorName returns error name.

func (DockerImageParameterDefinition_ChangesValidationError) Field

Field function returns field value.

func (DockerImageParameterDefinition_ChangesValidationError) Key

Key function returns key value.

func (DockerImageParameterDefinition_ChangesValidationError) Reason

Reason function returns reason value.

type DockerImageParameterDefinition_Changes_Program

type DockerImageParameterDefinition_Changes_Program struct {
	Program *ProgramChange `protobuf:"bytes,1,opt,name=program,proto3,oneof"`
}

type EnvValue

type EnvValue struct {

	// Types that are assignable to ValueOneof:
	//
	//	*EnvValue_Value
	//	*EnvValue_RawSecret
	//	*EnvValue_Secret
	//	*EnvValue_KubernetesSecret
	ValueOneof isEnvValue_ValueOneof `protobuf_oneof:"value_oneof"`
	// contains filtered or unexported fields
}

func (*EnvValue) Descriptor deprecated

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

Deprecated: Use EnvValue.ProtoReflect.Descriptor instead.

func (*EnvValue) GetKubernetesSecret added in v0.1.18

func (x *EnvValue) GetKubernetesSecret() *KubernetesSecret

func (*EnvValue) GetRawSecret

func (x *EnvValue) GetRawSecret() string

func (*EnvValue) GetSecret

func (x *EnvValue) GetSecret() *Secret

func (*EnvValue) GetValue

func (x *EnvValue) GetValue() string

func (*EnvValue) GetValueOneof

func (m *EnvValue) GetValueOneof() isEnvValue_ValueOneof

func (*EnvValue) ProtoMessage

func (*EnvValue) ProtoMessage()

func (*EnvValue) ProtoReflect

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

func (*EnvValue) Reset

func (x *EnvValue) Reset()

func (*EnvValue) String

func (x *EnvValue) String() string

func (*EnvValue) Validate

func (m *EnvValue) Validate() error

Validate checks the field values on EnvValue 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 (*EnvValue) ValidateAll

func (m *EnvValue) ValidateAll() error

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

type EnvValueMultiError

type EnvValueMultiError []error

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

func (EnvValueMultiError) AllErrors

func (m EnvValueMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnvValueMultiError) Error

func (m EnvValueMultiError) Error() string

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

type EnvValueValidationError

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

EnvValueValidationError is the validation error returned by EnvValue.Validate if the designated constraints aren't met.

func (EnvValueValidationError) Cause

func (e EnvValueValidationError) Cause() error

Cause function returns cause value.

func (EnvValueValidationError) Error

func (e EnvValueValidationError) Error() string

Error satisfies the builtin error interface

func (EnvValueValidationError) ErrorName

func (e EnvValueValidationError) ErrorName() string

ErrorName returns error name.

func (EnvValueValidationError) Field

func (e EnvValueValidationError) Field() string

Field function returns field value.

func (EnvValueValidationError) Key

func (e EnvValueValidationError) Key() bool

Key function returns key value.

func (EnvValueValidationError) Reason

func (e EnvValueValidationError) Reason() string

Reason function returns reason value.

type EnvValue_KubernetesSecret added in v0.1.18

type EnvValue_KubernetesSecret struct {
	// Kubernetes secret, only works for Kubernetes runtimes.
	KubernetesSecret *KubernetesSecret `protobuf:"bytes,4,opt,name=kubernetes_secret,json=kubernetesSecret,proto3,oneof"`
}

type EnvValue_RawSecret

type EnvValue_RawSecret struct {
	// Raw secret value to be used for user-editable YAML and RPC calls.
	RawSecret string `protobuf:"bytes,2,opt,name=raw_secret,json=rawSecret,proto3,oneof"`
}

type EnvValue_Secret

type EnvValue_Secret struct {
	// Externally stored secret.
	Secret *Secret `protobuf:"bytes,3,opt,name=secret,proto3,oneof"`
}

type EnvValue_Value

type EnvValue_Value struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3,oneof"`
}
type ExternalLink struct {
	Type ExternalLink_LinkType `protobuf:"varint,1,opt,name=type,proto3,enum=prodvana.common_config.ExternalLink_LinkType" json:"type,omitempty"`
	Url  string                `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Name string                `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ExternalLink) Descriptor deprecated added in v0.3.7

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

Deprecated: Use ExternalLink.ProtoReflect.Descriptor instead.

func (*ExternalLink) GetName added in v0.3.7

func (x *ExternalLink) GetName() string

func (*ExternalLink) GetType added in v0.3.7

func (x *ExternalLink) GetType() ExternalLink_LinkType

func (*ExternalLink) GetUrl added in v0.3.7

func (x *ExternalLink) GetUrl() string

func (*ExternalLink) ProtoMessage added in v0.3.7

func (*ExternalLink) ProtoMessage()

func (*ExternalLink) ProtoReflect added in v0.3.7

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

func (*ExternalLink) Reset added in v0.3.7

func (x *ExternalLink) Reset()

func (*ExternalLink) String added in v0.3.7

func (x *ExternalLink) String() string

func (*ExternalLink) Validate added in v0.3.7

func (m *ExternalLink) Validate() error

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

func (m *ExternalLink) ValidateAll() error

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

type ExternalLinkMultiError added in v0.3.7

type ExternalLinkMultiError []error

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

func (ExternalLinkMultiError) AllErrors added in v0.3.7

func (m ExternalLinkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ExternalLinkMultiError) Error added in v0.3.7

func (m ExternalLinkMultiError) Error() string

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

type ExternalLinkValidationError added in v0.3.7

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

ExternalLinkValidationError is the validation error returned by ExternalLink.Validate if the designated constraints aren't met.

func (ExternalLinkValidationError) Cause added in v0.3.7

Cause function returns cause value.

func (ExternalLinkValidationError) Error added in v0.3.7

Error satisfies the builtin error interface

func (ExternalLinkValidationError) ErrorName added in v0.3.7

func (e ExternalLinkValidationError) ErrorName() string

ErrorName returns error name.

func (ExternalLinkValidationError) Field added in v0.3.7

Field function returns field value.

func (ExternalLinkValidationError) Key added in v0.3.7

Key function returns key value.

func (ExternalLinkValidationError) Reason added in v0.3.7

Reason function returns reason value.

type ExternalLink_LinkType int32
const (
	ExternalLink_UNKNOWN ExternalLink_LinkType = 0
	ExternalLink_DETAIL  ExternalLink_LinkType = 1
	ExternalLink_LOG     ExternalLink_LinkType = 2
	// link to the running application
	ExternalLink_APP ExternalLink_LinkType = 3
)
func (ExternalLink_LinkType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ExternalLink_LinkType.Descriptor instead.

func (x ExternalLink_LinkType) String() string

type FixedReplicaChange

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

func (*FixedReplicaChange) Descriptor deprecated

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

Deprecated: Use FixedReplicaChange.ProtoReflect.Descriptor instead.

func (*FixedReplicaChange) ProtoMessage

func (*FixedReplicaChange) ProtoMessage()

func (*FixedReplicaChange) ProtoReflect

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

func (*FixedReplicaChange) Reset

func (x *FixedReplicaChange) Reset()

func (*FixedReplicaChange) String

func (x *FixedReplicaChange) String() string

func (*FixedReplicaChange) Validate

func (m *FixedReplicaChange) Validate() error

Validate checks the field values on FixedReplicaChange 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 (*FixedReplicaChange) ValidateAll

func (m *FixedReplicaChange) ValidateAll() error

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

type FixedReplicaChangeMultiError

type FixedReplicaChangeMultiError []error

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

func (FixedReplicaChangeMultiError) AllErrors

func (m FixedReplicaChangeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FixedReplicaChangeMultiError) Error

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

type FixedReplicaChangeValidationError

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

FixedReplicaChangeValidationError is the validation error returned by FixedReplicaChange.Validate if the designated constraints aren't met.

func (FixedReplicaChangeValidationError) Cause

Cause function returns cause value.

func (FixedReplicaChangeValidationError) Error

Error satisfies the builtin error interface

func (FixedReplicaChangeValidationError) ErrorName

ErrorName returns error name.

func (FixedReplicaChangeValidationError) Field

Field function returns field value.

func (FixedReplicaChangeValidationError) Key

Key function returns key value.

func (FixedReplicaChangeValidationError) Reason

Reason function returns reason value.

type HealthCheck

type HealthCheck struct {

	// Types that are assignable to ProbeConfig:
	//
	//	*HealthCheck_Http
	//	*HealthCheck_Cmd
	//	*HealthCheck_Tcp
	ProbeConfig isHealthCheck_ProbeConfig `protobuf_oneof:"probe_config"`
	Delay       *durationpb.Duration      `protobuf:"bytes,4,opt,name=delay,proto3" json:"delay,omitempty"`
	Period      *durationpb.Duration      `protobuf:"bytes,5,opt,name=period,proto3" json:"period,omitempty"`
	// contains filtered or unexported fields
}

func (*HealthCheck) Descriptor deprecated

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

Deprecated: Use HealthCheck.ProtoReflect.Descriptor instead.

func (*HealthCheck) GetCmd

func (x *HealthCheck) GetCmd() *CmdProbe

func (*HealthCheck) GetDelay

func (x *HealthCheck) GetDelay() *durationpb.Duration

func (*HealthCheck) GetHttp

func (x *HealthCheck) GetHttp() *HttpProbe

func (*HealthCheck) GetPeriod

func (x *HealthCheck) GetPeriod() *durationpb.Duration

func (*HealthCheck) GetProbeConfig

func (m *HealthCheck) GetProbeConfig() isHealthCheck_ProbeConfig

func (*HealthCheck) GetTcp

func (x *HealthCheck) GetTcp() *TcpProbe

func (*HealthCheck) ProtoMessage

func (*HealthCheck) ProtoMessage()

func (*HealthCheck) ProtoReflect

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

func (*HealthCheck) Reset

func (x *HealthCheck) Reset()

func (*HealthCheck) String

func (x *HealthCheck) String() string

func (*HealthCheck) Validate

func (m *HealthCheck) Validate() error

Validate checks the field values on HealthCheck 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 (*HealthCheck) ValidateAll

func (m *HealthCheck) ValidateAll() error

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

type HealthCheckMultiError

type HealthCheckMultiError []error

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

func (HealthCheckMultiError) AllErrors

func (m HealthCheckMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HealthCheckMultiError) Error

func (m HealthCheckMultiError) Error() string

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

type HealthCheckValidationError

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

HealthCheckValidationError is the validation error returned by HealthCheck.Validate if the designated constraints aren't met.

func (HealthCheckValidationError) Cause

Cause function returns cause value.

func (HealthCheckValidationError) Error

Error satisfies the builtin error interface

func (HealthCheckValidationError) ErrorName

func (e HealthCheckValidationError) ErrorName() string

ErrorName returns error name.

func (HealthCheckValidationError) Field

Field function returns field value.

func (HealthCheckValidationError) Key

Key function returns key value.

func (HealthCheckValidationError) Reason

Reason function returns reason value.

type HealthCheck_Cmd

type HealthCheck_Cmd struct {
	Cmd *CmdProbe `protobuf:"bytes,2,opt,name=cmd,proto3,oneof"`
}

type HealthCheck_Http

type HealthCheck_Http struct {
	Http *HttpProbe `protobuf:"bytes,1,opt,name=http,proto3,oneof"`
}

type HealthCheck_Tcp

type HealthCheck_Tcp struct {
	Tcp *TcpProbe `protobuf:"bytes,3,opt,name=tcp,proto3,oneof"`
}

type HelmConfig

type HelmConfig struct {

	// Types that are assignable to ChartOneof:
	//
	//	*HelmConfig_Remote
	//	*HelmConfig_Local
	//	*HelmConfig_HelmTarballBlobId
	ChartOneof      isHelmConfig_ChartOneof `protobuf_oneof:"chart_oneof"`
	ValuesOverrides []*HelmValuesOverrides  `protobuf:"bytes,2,rep,name=values_overrides,json=valuesOverrides,proto3" json:"values_overrides,omitempty"`
	// optional release name, leave blank to have Prodvana generate one.
	// Mainly useful for migrating an existing helm release into Prodvana.
	ReleaseName string `protobuf:"bytes,3,opt,name=release_name,json=releaseName,proto3" json:"release_name,omitempty"`
	// used internally by Prodvana, do not set.
	Namespace string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// Before running helm commands, first fixup labels and annotations of the Kubernetes objects
	// to match the expected state. This is useful for migrating an existing Kubernetes object to be managed
	// by Helm.
	FixupOwnership bool `protobuf:"varint,8,opt,name=fixup_ownership,json=fixupOwnership,proto3" json:"fixup_ownership,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmConfig) Descriptor deprecated

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

Deprecated: Use HelmConfig.ProtoReflect.Descriptor instead.

func (*HelmConfig) GetChartOneof

func (m *HelmConfig) GetChartOneof() isHelmConfig_ChartOneof

func (*HelmConfig) GetFixupOwnership added in v0.3.32

func (x *HelmConfig) GetFixupOwnership() bool

func (*HelmConfig) GetHelmTarballBlobId added in v0.3.2

func (x *HelmConfig) GetHelmTarballBlobId() string

func (*HelmConfig) GetLocal added in v0.3.2

func (x *HelmConfig) GetLocal() *LocalConfig

func (*HelmConfig) GetNamespace

func (x *HelmConfig) GetNamespace() string

func (*HelmConfig) GetReleaseName

func (x *HelmConfig) GetReleaseName() string

func (*HelmConfig) GetRemote

func (x *HelmConfig) GetRemote() *RemoteHelmChart

func (*HelmConfig) GetValuesOverrides

func (x *HelmConfig) GetValuesOverrides() []*HelmValuesOverrides

func (*HelmConfig) ProtoMessage

func (*HelmConfig) ProtoMessage()

func (*HelmConfig) ProtoReflect

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

func (*HelmConfig) Reset

func (x *HelmConfig) Reset()

func (*HelmConfig) String

func (x *HelmConfig) String() string

func (*HelmConfig) Validate

func (m *HelmConfig) Validate() error

Validate checks the field values on HelmConfig 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 (*HelmConfig) ValidateAll

func (m *HelmConfig) ValidateAll() error

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

type HelmConfigMultiError

type HelmConfigMultiError []error

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

func (HelmConfigMultiError) AllErrors

func (m HelmConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HelmConfigMultiError) Error

func (m HelmConfigMultiError) Error() string

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

type HelmConfigValidationError

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

HelmConfigValidationError is the validation error returned by HelmConfig.Validate if the designated constraints aren't met.

func (HelmConfigValidationError) Cause

func (e HelmConfigValidationError) Cause() error

Cause function returns cause value.

func (HelmConfigValidationError) Error

Error satisfies the builtin error interface

func (HelmConfigValidationError) ErrorName

func (e HelmConfigValidationError) ErrorName() string

ErrorName returns error name.

func (HelmConfigValidationError) Field

Field function returns field value.

func (HelmConfigValidationError) Key

Key function returns key value.

func (HelmConfigValidationError) Reason

func (e HelmConfigValidationError) Reason() string

Reason function returns reason value.

type HelmConfig_HelmTarballBlobId added in v0.3.2

type HelmConfig_HelmTarballBlobId struct {
	HelmTarballBlobId string `protobuf:"bytes,6,opt,name=helm_tarball_blob_id,json=helmTarballBlobId,proto3,oneof"`
}

type HelmConfig_Local added in v0.3.2

type HelmConfig_Local struct {
	Local *LocalConfig `protobuf:"bytes,5,opt,name=local,proto3,oneof"`
}

type HelmConfig_Remote

type HelmConfig_Remote struct {
	Remote *RemoteHelmChart `protobuf:"bytes,1,opt,name=remote,proto3,oneof"`
}

type HelmValuesOverrides

type HelmValuesOverrides struct {

	// Types that are assignable to OverrideOneof:
	//
	//	*HelmValuesOverrides_Inlined
	//	*HelmValuesOverrides_Local
	//	*HelmValuesOverrides_Remote
	OverrideOneof isHelmValuesOverrides_OverrideOneof `protobuf_oneof:"override_oneof"`
	// contains filtered or unexported fields
}

func (*HelmValuesOverrides) Descriptor deprecated

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

Deprecated: Use HelmValuesOverrides.ProtoReflect.Descriptor instead.

func (*HelmValuesOverrides) GetInlined

func (x *HelmValuesOverrides) GetInlined() string

func (*HelmValuesOverrides) GetLocal

func (x *HelmValuesOverrides) GetLocal() *LocalConfig

func (*HelmValuesOverrides) GetOverrideOneof

func (m *HelmValuesOverrides) GetOverrideOneof() isHelmValuesOverrides_OverrideOneof

func (*HelmValuesOverrides) GetRemote added in v0.3.19

func (x *HelmValuesOverrides) GetRemote() *RemoteConfig

func (*HelmValuesOverrides) ProtoMessage

func (*HelmValuesOverrides) ProtoMessage()

func (*HelmValuesOverrides) ProtoReflect

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

func (*HelmValuesOverrides) Reset

func (x *HelmValuesOverrides) Reset()

func (*HelmValuesOverrides) String

func (x *HelmValuesOverrides) String() string

func (*HelmValuesOverrides) Validate

func (m *HelmValuesOverrides) Validate() error

Validate checks the field values on HelmValuesOverrides 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 (*HelmValuesOverrides) ValidateAll

func (m *HelmValuesOverrides) ValidateAll() error

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

type HelmValuesOverridesMultiError

type HelmValuesOverridesMultiError []error

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

func (HelmValuesOverridesMultiError) AllErrors

func (m HelmValuesOverridesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HelmValuesOverridesMultiError) Error

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

type HelmValuesOverridesValidationError

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

HelmValuesOverridesValidationError is the validation error returned by HelmValuesOverrides.Validate if the designated constraints aren't met.

func (HelmValuesOverridesValidationError) Cause

Cause function returns cause value.

func (HelmValuesOverridesValidationError) Error

Error satisfies the builtin error interface

func (HelmValuesOverridesValidationError) ErrorName

ErrorName returns error name.

func (HelmValuesOverridesValidationError) Field

Field function returns field value.

func (HelmValuesOverridesValidationError) Key

Key function returns key value.

func (HelmValuesOverridesValidationError) Reason

Reason function returns reason value.

type HelmValuesOverrides_Inlined

type HelmValuesOverrides_Inlined struct {
	Inlined string `protobuf:"bytes,1,opt,name=inlined,proto3,oneof"`
}

type HelmValuesOverrides_Local

type HelmValuesOverrides_Local struct {
	Local *LocalConfig `protobuf:"bytes,2,opt,name=local,proto3,oneof"`
}

type HelmValuesOverrides_Remote added in v0.3.19

type HelmValuesOverrides_Remote struct {
	Remote *RemoteConfig `protobuf:"bytes,4,opt,name=remote,proto3,oneof"`
}

type HttpProbe

type HttpProbe struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Port int32  `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	Tls  bool   `protobuf:"varint,3,opt,name=tls,proto3" json:"tls,omitempty"`
	// contains filtered or unexported fields
}

func (*HttpProbe) Descriptor deprecated

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

Deprecated: Use HttpProbe.ProtoReflect.Descriptor instead.

func (*HttpProbe) GetPath

func (x *HttpProbe) GetPath() string

func (*HttpProbe) GetPort

func (x *HttpProbe) GetPort() int32

func (*HttpProbe) GetTls

func (x *HttpProbe) GetTls() bool

func (*HttpProbe) ProtoMessage

func (*HttpProbe) ProtoMessage()

func (*HttpProbe) ProtoReflect

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

func (*HttpProbe) Reset

func (x *HttpProbe) Reset()

func (*HttpProbe) String

func (x *HttpProbe) String() string

func (*HttpProbe) Validate

func (m *HttpProbe) Validate() error

Validate checks the field values on HttpProbe 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 (*HttpProbe) ValidateAll

func (m *HttpProbe) ValidateAll() error

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

type HttpProbeMultiError

type HttpProbeMultiError []error

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

func (HttpProbeMultiError) AllErrors

func (m HttpProbeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HttpProbeMultiError) Error

func (m HttpProbeMultiError) Error() string

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

type HttpProbeValidationError

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

HttpProbeValidationError is the validation error returned by HttpProbe.Validate if the designated constraints aren't met.

func (HttpProbeValidationError) Cause

func (e HttpProbeValidationError) Cause() error

Cause function returns cause value.

func (HttpProbeValidationError) Error

func (e HttpProbeValidationError) Error() string

Error satisfies the builtin error interface

func (HttpProbeValidationError) ErrorName

func (e HttpProbeValidationError) ErrorName() string

ErrorName returns error name.

func (HttpProbeValidationError) Field

func (e HttpProbeValidationError) Field() string

Field function returns field value.

func (HttpProbeValidationError) Key

Key function returns key value.

func (HttpProbeValidationError) Reason

func (e HttpProbeValidationError) Reason() string

Reason function returns reason value.

type ImageDetails

type ImageDetails struct {
	RegistryInfo *ImageRegistryInfo `protobuf:"bytes,1,opt,name=registry_info,json=registryInfo,proto3" json:"registry_info,omitempty"`
	// image tag or digest
	Identifier string `protobuf:"bytes,2,opt,name=identifier,proto3" json:"identifier,omitempty"`
	// contains filtered or unexported fields
}

func (*ImageDetails) Descriptor deprecated

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

Deprecated: Use ImageDetails.ProtoReflect.Descriptor instead.

func (*ImageDetails) GetIdentifier

func (x *ImageDetails) GetIdentifier() string

func (*ImageDetails) GetRegistryInfo

func (x *ImageDetails) GetRegistryInfo() *ImageRegistryInfo

func (*ImageDetails) ProtoMessage

func (*ImageDetails) ProtoMessage()

func (*ImageDetails) ProtoReflect

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

func (*ImageDetails) Reset

func (x *ImageDetails) Reset()

func (*ImageDetails) String

func (x *ImageDetails) String() string

func (*ImageDetails) Validate

func (m *ImageDetails) Validate() error

Validate checks the field values on ImageDetails 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 (*ImageDetails) ValidateAll

func (m *ImageDetails) ValidateAll() error

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

type ImageDetailsMultiError

type ImageDetailsMultiError []error

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

func (ImageDetailsMultiError) AllErrors

func (m ImageDetailsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ImageDetailsMultiError) Error

func (m ImageDetailsMultiError) Error() string

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

type ImageDetailsValidationError

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

ImageDetailsValidationError is the validation error returned by ImageDetails.Validate if the designated constraints aren't met.

func (ImageDetailsValidationError) Cause

Cause function returns cause value.

func (ImageDetailsValidationError) Error

Error satisfies the builtin error interface

func (ImageDetailsValidationError) ErrorName

func (e ImageDetailsValidationError) ErrorName() string

ErrorName returns error name.

func (ImageDetailsValidationError) Field

Field function returns field value.

func (ImageDetailsValidationError) Key

Key function returns key value.

func (ImageDetailsValidationError) Reason

Reason function returns reason value.

type ImageRegistryInfo

type ImageRegistryInfo struct {

	// both container_registry_id and container_registry are supported, but only set one not both
	ContainerRegistryId string `protobuf:"bytes,1,opt,name=container_registry_id,json=containerRegistryId,proto3" json:"container_registry_id,omitempty"`
	ContainerRegistry   string `protobuf:"bytes,2,opt,name=container_registry,json=containerRegistry,proto3" json:"container_registry,omitempty"`
	// Not the URL, everything after: username/reponame
	// leaving it as once field because the spec considers it 1 field
	// in theory you can have no username, or nest the repo names
	ImageRepository string `protobuf:"bytes,7,opt,name=image_repository,json=imageRepository,proto3" json:"image_repository,omitempty"`
	// contains filtered or unexported fields
}

func (*ImageRegistryInfo) Descriptor deprecated

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

Deprecated: Use ImageRegistryInfo.ProtoReflect.Descriptor instead.

func (*ImageRegistryInfo) GetContainerRegistry

func (x *ImageRegistryInfo) GetContainerRegistry() string

func (*ImageRegistryInfo) GetContainerRegistryId

func (x *ImageRegistryInfo) GetContainerRegistryId() string

func (*ImageRegistryInfo) GetImageRepository

func (x *ImageRegistryInfo) GetImageRepository() string

func (*ImageRegistryInfo) ProtoMessage

func (*ImageRegistryInfo) ProtoMessage()

func (*ImageRegistryInfo) ProtoReflect

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

func (*ImageRegistryInfo) Reset

func (x *ImageRegistryInfo) Reset()

func (*ImageRegistryInfo) String

func (x *ImageRegistryInfo) String() string

func (*ImageRegistryInfo) Validate

func (m *ImageRegistryInfo) Validate() error

Validate checks the field values on ImageRegistryInfo 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 (*ImageRegistryInfo) ValidateAll

func (m *ImageRegistryInfo) ValidateAll() error

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

type ImageRegistryInfoMultiError

type ImageRegistryInfoMultiError []error

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

func (ImageRegistryInfoMultiError) AllErrors

func (m ImageRegistryInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ImageRegistryInfoMultiError) Error

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

type ImageRegistryInfoValidationError

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

ImageRegistryInfoValidationError is the validation error returned by ImageRegistryInfo.Validate if the designated constraints aren't met.

func (ImageRegistryInfoValidationError) Cause

Cause function returns cause value.

func (ImageRegistryInfoValidationError) Error

Error satisfies the builtin error interface

func (ImageRegistryInfoValidationError) ErrorName

ErrorName returns error name.

func (ImageRegistryInfoValidationError) Field

Field function returns field value.

func (ImageRegistryInfoValidationError) Key

Key function returns key value.

func (ImageRegistryInfoValidationError) Reason

Reason function returns reason value.

type IntParameterDefinition

type IntParameterDefinition struct {
	DefaultValue int64                             `protobuf:"varint,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	Changes      []*IntParameterDefinition_Changes `protobuf:"bytes,2,rep,name=changes,proto3" json:"changes,omitempty"`
	// contains filtered or unexported fields
}

func (*IntParameterDefinition) Descriptor deprecated

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

Deprecated: Use IntParameterDefinition.ProtoReflect.Descriptor instead.

func (*IntParameterDefinition) GetChanges

func (*IntParameterDefinition) GetDefaultValue

func (x *IntParameterDefinition) GetDefaultValue() int64

func (*IntParameterDefinition) ProtoMessage

func (*IntParameterDefinition) ProtoMessage()

func (*IntParameterDefinition) ProtoReflect

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

func (*IntParameterDefinition) Reset

func (x *IntParameterDefinition) Reset()

func (*IntParameterDefinition) String

func (x *IntParameterDefinition) String() string

func (*IntParameterDefinition) Validate

func (m *IntParameterDefinition) Validate() error

Validate checks the field values on IntParameterDefinition 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 (*IntParameterDefinition) ValidateAll

func (m *IntParameterDefinition) ValidateAll() error

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

type IntParameterDefinitionMultiError

type IntParameterDefinitionMultiError []error

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

func (IntParameterDefinitionMultiError) AllErrors

func (m IntParameterDefinitionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IntParameterDefinitionMultiError) Error

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

type IntParameterDefinitionValidationError

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

IntParameterDefinitionValidationError is the validation error returned by IntParameterDefinition.Validate if the designated constraints aren't met.

func (IntParameterDefinitionValidationError) Cause

Cause function returns cause value.

func (IntParameterDefinitionValidationError) Error

Error satisfies the builtin error interface

func (IntParameterDefinitionValidationError) ErrorName

ErrorName returns error name.

func (IntParameterDefinitionValidationError) Field

Field function returns field value.

func (IntParameterDefinitionValidationError) Key

Key function returns key value.

func (IntParameterDefinitionValidationError) Reason

Reason function returns reason value.

type IntParameterDefinition_Changes

type IntParameterDefinition_Changes struct {

	// Types that are assignable to Oneof:
	//
	//	*IntParameterDefinition_Changes_FixedReplica
	Oneof isIntParameterDefinition_Changes_Oneof `protobuf_oneof:"oneof"`
	// contains filtered or unexported fields
}

func (*IntParameterDefinition_Changes) Descriptor deprecated

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

Deprecated: Use IntParameterDefinition_Changes.ProtoReflect.Descriptor instead.

func (*IntParameterDefinition_Changes) GetFixedReplica

func (x *IntParameterDefinition_Changes) GetFixedReplica() *FixedReplicaChange

func (*IntParameterDefinition_Changes) GetOneof

func (m *IntParameterDefinition_Changes) GetOneof() isIntParameterDefinition_Changes_Oneof

func (*IntParameterDefinition_Changes) ProtoMessage

func (*IntParameterDefinition_Changes) ProtoMessage()

func (*IntParameterDefinition_Changes) ProtoReflect

func (*IntParameterDefinition_Changes) Reset

func (x *IntParameterDefinition_Changes) Reset()

func (*IntParameterDefinition_Changes) String

func (*IntParameterDefinition_Changes) Validate

func (m *IntParameterDefinition_Changes) Validate() error

Validate checks the field values on IntParameterDefinition_Changes 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 (*IntParameterDefinition_Changes) ValidateAll

func (m *IntParameterDefinition_Changes) ValidateAll() error

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

type IntParameterDefinition_ChangesMultiError

type IntParameterDefinition_ChangesMultiError []error

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

func (IntParameterDefinition_ChangesMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (IntParameterDefinition_ChangesMultiError) Error

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

type IntParameterDefinition_ChangesValidationError

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

IntParameterDefinition_ChangesValidationError is the validation error returned by IntParameterDefinition_Changes.Validate if the designated constraints aren't met.

func (IntParameterDefinition_ChangesValidationError) Cause

Cause function returns cause value.

func (IntParameterDefinition_ChangesValidationError) Error

Error satisfies the builtin error interface

func (IntParameterDefinition_ChangesValidationError) ErrorName

ErrorName returns error name.

func (IntParameterDefinition_ChangesValidationError) Field

Field function returns field value.

func (IntParameterDefinition_ChangesValidationError) Key

Key function returns key value.

func (IntParameterDefinition_ChangesValidationError) Reason

Reason function returns reason value.

type IntParameterDefinition_Changes_FixedReplica

type IntParameterDefinition_Changes_FixedReplica struct {
	FixedReplica *FixedReplicaChange `protobuf:"bytes,1,opt,name=fixed_replica,json=fixedReplica,proto3,oneof"`
}

type KubernetesConfig

type KubernetesConfig struct {
	Type KubernetesConfig_Type `protobuf:"varint,1,opt,name=type,proto3,enum=prodvana.common_config.KubernetesConfig_Type" json:"type,omitempty"`
	// Types that are assignable to SourceOneof:
	//
	//	*KubernetesConfig_Inlined
	//	*KubernetesConfig_Local
	//	*KubernetesConfig_Remote
	SourceOneof isKubernetesConfig_SourceOneof `protobuf_oneof:"source_oneof"`
	// Defaults to ENV_INJECT_NON_SECRET_ENV
	EnvInjectionMode KubernetesConfig_EnvInjectionMode `` /* 174-byte string literal not displayed */
	Patches          []*KubernetesPatch                `protobuf:"bytes,6,rep,name=patches,proto3" json:"patches,omitempty"`
	// contains filtered or unexported fields
}

func (*KubernetesConfig) Descriptor deprecated

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

Deprecated: Use KubernetesConfig.ProtoReflect.Descriptor instead.

func (*KubernetesConfig) GetEnvInjectionMode

func (x *KubernetesConfig) GetEnvInjectionMode() KubernetesConfig_EnvInjectionMode

func (*KubernetesConfig) GetInlined

func (x *KubernetesConfig) GetInlined() string

func (*KubernetesConfig) GetLocal

func (x *KubernetesConfig) GetLocal() *LocalConfig

func (*KubernetesConfig) GetPatches added in v0.3.21

func (x *KubernetesConfig) GetPatches() []*KubernetesPatch

func (*KubernetesConfig) GetRemote added in v0.2.12

func (x *KubernetesConfig) GetRemote() *RemoteConfig

func (*KubernetesConfig) GetSourceOneof

func (m *KubernetesConfig) GetSourceOneof() isKubernetesConfig_SourceOneof

func (*KubernetesConfig) GetType

func (*KubernetesConfig) ProtoMessage

func (*KubernetesConfig) ProtoMessage()

func (*KubernetesConfig) ProtoReflect

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

func (*KubernetesConfig) Reset

func (x *KubernetesConfig) Reset()

func (*KubernetesConfig) String

func (x *KubernetesConfig) String() string

func (*KubernetesConfig) Validate

func (m *KubernetesConfig) Validate() error

Validate checks the field values on KubernetesConfig 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 (*KubernetesConfig) ValidateAll

func (m *KubernetesConfig) ValidateAll() error

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

type KubernetesConfigMultiError

type KubernetesConfigMultiError []error

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

func (KubernetesConfigMultiError) AllErrors

func (m KubernetesConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesConfigMultiError) Error

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

type KubernetesConfigValidationError

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

KubernetesConfigValidationError is the validation error returned by KubernetesConfig.Validate if the designated constraints aren't met.

func (KubernetesConfigValidationError) Cause

Cause function returns cause value.

func (KubernetesConfigValidationError) Error

Error satisfies the builtin error interface

func (KubernetesConfigValidationError) ErrorName

ErrorName returns error name.

func (KubernetesConfigValidationError) Field

Field function returns field value.

func (KubernetesConfigValidationError) Key

Key function returns key value.

func (KubernetesConfigValidationError) Reason

Reason function returns reason value.

type KubernetesConfig_EnvInjectionMode

type KubernetesConfig_EnvInjectionMode int32
const (
	KubernetesConfig_ENV_INJECT_UNKNOWN KubernetesConfig_EnvInjectionMode = 0
	// disables env injection entirely
	KubernetesConfig_ENV_INJECT_DISABLED KubernetesConfig_EnvInjectionMode = 1
	// inject non-secret env values from the Release Channel
	KubernetesConfig_ENV_INJECT_NON_SECRET_ENV KubernetesConfig_EnvInjectionMode = 2
)

func (KubernetesConfig_EnvInjectionMode) Descriptor

func (KubernetesConfig_EnvInjectionMode) Enum

func (KubernetesConfig_EnvInjectionMode) EnumDescriptor deprecated

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

Deprecated: Use KubernetesConfig_EnvInjectionMode.Descriptor instead.

func (KubernetesConfig_EnvInjectionMode) Number

func (KubernetesConfig_EnvInjectionMode) String

func (KubernetesConfig_EnvInjectionMode) Type

type KubernetesConfig_Inlined

type KubernetesConfig_Inlined struct {
	Inlined string `protobuf:"bytes,2,opt,name=inlined,proto3,oneof"`
}

type KubernetesConfig_Local

type KubernetesConfig_Local struct {
	Local *LocalConfig `protobuf:"bytes,3,opt,name=local,proto3,oneof"`
}

type KubernetesConfig_Remote added in v0.2.12

type KubernetesConfig_Remote struct {
	Remote *RemoteConfig `protobuf:"bytes,5,opt,name=remote,proto3,oneof"`
}

type KubernetesConfig_Type

type KubernetesConfig_Type int32
const (
	KubernetesConfig_UNKNOWN    KubernetesConfig_Type = 0
	KubernetesConfig_KUBERNETES KubernetesConfig_Type = 1
	KubernetesConfig_KUSTOMIZE  KubernetesConfig_Type = 2
)

func (KubernetesConfig_Type) Descriptor

func (KubernetesConfig_Type) Enum

func (KubernetesConfig_Type) EnumDescriptor deprecated

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

Deprecated: Use KubernetesConfig_Type.Descriptor instead.

func (KubernetesConfig_Type) Number

func (KubernetesConfig_Type) String

func (x KubernetesConfig_Type) String() string

func (KubernetesConfig_Type) Type

type KubernetesPatch added in v0.3.21

type KubernetesPatch struct {
	Target *KubernetesPatch_Target `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // filter to a specific Kubernetes object. Omit to apply to all objects.
	// Types that are assignable to PatchOneof:
	//
	//	*KubernetesPatch_Replace_
	PatchOneof isKubernetesPatch_PatchOneof `protobuf_oneof:"patch_oneof"`
	// contains filtered or unexported fields
}

func (*KubernetesPatch) Descriptor deprecated added in v0.3.21

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

Deprecated: Use KubernetesPatch.ProtoReflect.Descriptor instead.

func (*KubernetesPatch) GetPatchOneof added in v0.3.21

func (m *KubernetesPatch) GetPatchOneof() isKubernetesPatch_PatchOneof

func (*KubernetesPatch) GetReplace added in v0.3.21

func (x *KubernetesPatch) GetReplace() *KubernetesPatch_Replace

func (*KubernetesPatch) GetTarget added in v0.3.21

func (x *KubernetesPatch) GetTarget() *KubernetesPatch_Target

func (*KubernetesPatch) ProtoMessage added in v0.3.21

func (*KubernetesPatch) ProtoMessage()

func (*KubernetesPatch) ProtoReflect added in v0.3.21

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

func (*KubernetesPatch) Reset added in v0.3.21

func (x *KubernetesPatch) Reset()

func (*KubernetesPatch) String added in v0.3.21

func (x *KubernetesPatch) String() string

func (*KubernetesPatch) Validate added in v0.3.21

func (m *KubernetesPatch) Validate() error

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

func (m *KubernetesPatch) ValidateAll() error

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

type KubernetesPatchMultiError added in v0.3.21

type KubernetesPatchMultiError []error

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

func (KubernetesPatchMultiError) AllErrors added in v0.3.21

func (m KubernetesPatchMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesPatchMultiError) Error added in v0.3.21

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

type KubernetesPatchValidationError added in v0.3.21

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

KubernetesPatchValidationError is the validation error returned by KubernetesPatch.Validate if the designated constraints aren't met.

func (KubernetesPatchValidationError) Cause added in v0.3.21

Cause function returns cause value.

func (KubernetesPatchValidationError) Error added in v0.3.21

Error satisfies the builtin error interface

func (KubernetesPatchValidationError) ErrorName added in v0.3.21

func (e KubernetesPatchValidationError) ErrorName() string

ErrorName returns error name.

func (KubernetesPatchValidationError) Field added in v0.3.21

Field function returns field value.

func (KubernetesPatchValidationError) Key added in v0.3.21

Key function returns key value.

func (KubernetesPatchValidationError) Reason added in v0.3.21

Reason function returns reason value.

type KubernetesPatch_Replace added in v0.3.21

type KubernetesPatch_Replace struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` // json6902 path
	// Types that are assignable to ValueOneof:
	//
	//	*KubernetesPatch_Replace_String_
	//	*KubernetesPatch_Replace_IntAsString
	ValueOneof isKubernetesPatch_Replace_ValueOneof `protobuf_oneof:"value_oneof"`
	// contains filtered or unexported fields
}

func (*KubernetesPatch_Replace) Descriptor deprecated added in v0.3.21

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

Deprecated: Use KubernetesPatch_Replace.ProtoReflect.Descriptor instead.

func (*KubernetesPatch_Replace) GetIntAsString added in v0.3.21

func (x *KubernetesPatch_Replace) GetIntAsString() string

func (*KubernetesPatch_Replace) GetPath added in v0.3.21

func (x *KubernetesPatch_Replace) GetPath() string

func (*KubernetesPatch_Replace) GetString_ added in v0.3.21

func (x *KubernetesPatch_Replace) GetString_() string

func (*KubernetesPatch_Replace) GetValueOneof added in v0.3.21

func (m *KubernetesPatch_Replace) GetValueOneof() isKubernetesPatch_Replace_ValueOneof

func (*KubernetesPatch_Replace) ProtoMessage added in v0.3.21

func (*KubernetesPatch_Replace) ProtoMessage()

func (*KubernetesPatch_Replace) ProtoReflect added in v0.3.21

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

func (*KubernetesPatch_Replace) Reset added in v0.3.21

func (x *KubernetesPatch_Replace) Reset()

func (*KubernetesPatch_Replace) String added in v0.3.21

func (x *KubernetesPatch_Replace) String() string

func (*KubernetesPatch_Replace) Validate added in v0.3.21

func (m *KubernetesPatch_Replace) Validate() error

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

func (m *KubernetesPatch_Replace) ValidateAll() error

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

type KubernetesPatch_ReplaceMultiError added in v0.3.21

type KubernetesPatch_ReplaceMultiError []error

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

func (KubernetesPatch_ReplaceMultiError) AllErrors added in v0.3.21

func (m KubernetesPatch_ReplaceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesPatch_ReplaceMultiError) Error added in v0.3.21

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

type KubernetesPatch_ReplaceValidationError added in v0.3.21

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

KubernetesPatch_ReplaceValidationError is the validation error returned by KubernetesPatch_Replace.Validate if the designated constraints aren't met.

func (KubernetesPatch_ReplaceValidationError) Cause added in v0.3.21

Cause function returns cause value.

func (KubernetesPatch_ReplaceValidationError) Error added in v0.3.21

Error satisfies the builtin error interface

func (KubernetesPatch_ReplaceValidationError) ErrorName added in v0.3.21

ErrorName returns error name.

func (KubernetesPatch_ReplaceValidationError) Field added in v0.3.21

Field function returns field value.

func (KubernetesPatch_ReplaceValidationError) Key added in v0.3.21

Key function returns key value.

func (KubernetesPatch_ReplaceValidationError) Reason added in v0.3.21

Reason function returns reason value.

type KubernetesPatch_Replace_ added in v0.3.21

type KubernetesPatch_Replace_ struct {
	Replace *KubernetesPatch_Replace `protobuf:"bytes,2,opt,name=replace,proto3,oneof"`
}

type KubernetesPatch_Replace_IntAsString added in v0.3.21

type KubernetesPatch_Replace_IntAsString struct {
	IntAsString string `protobuf:"bytes,3,opt,name=int_as_string,json=intAsString,proto3,oneof"`
}

type KubernetesPatch_Replace_String_ added in v0.3.21

type KubernetesPatch_Replace_String_ struct {
	String_ string `protobuf:"bytes,2,opt,name=string,proto3,oneof"`
}

type KubernetesPatch_Target added in v0.3.21

type KubernetesPatch_Target struct {

	// omit any of these fields to match all values
	Group     string `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Version   string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	Kind      string `protobuf:"bytes,3,opt,name=kind,proto3" json:"kind,omitempty"`
	Name      string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Namespace string `protobuf:"bytes,5,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*KubernetesPatch_Target) Descriptor deprecated added in v0.3.21

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

Deprecated: Use KubernetesPatch_Target.ProtoReflect.Descriptor instead.

func (*KubernetesPatch_Target) GetGroup added in v0.3.21

func (x *KubernetesPatch_Target) GetGroup() string

func (*KubernetesPatch_Target) GetKind added in v0.3.21

func (x *KubernetesPatch_Target) GetKind() string

func (*KubernetesPatch_Target) GetName added in v0.3.21

func (x *KubernetesPatch_Target) GetName() string

func (*KubernetesPatch_Target) GetNamespace added in v0.3.21

func (x *KubernetesPatch_Target) GetNamespace() string

func (*KubernetesPatch_Target) GetVersion added in v0.3.21

func (x *KubernetesPatch_Target) GetVersion() string

func (*KubernetesPatch_Target) ProtoMessage added in v0.3.21

func (*KubernetesPatch_Target) ProtoMessage()

func (*KubernetesPatch_Target) ProtoReflect added in v0.3.21

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

func (*KubernetesPatch_Target) Reset added in v0.3.21

func (x *KubernetesPatch_Target) Reset()

func (*KubernetesPatch_Target) String added in v0.3.21

func (x *KubernetesPatch_Target) String() string

func (*KubernetesPatch_Target) Validate added in v0.3.21

func (m *KubernetesPatch_Target) Validate() error

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

func (m *KubernetesPatch_Target) ValidateAll() error

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

type KubernetesPatch_TargetMultiError added in v0.3.21

type KubernetesPatch_TargetMultiError []error

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

func (KubernetesPatch_TargetMultiError) AllErrors added in v0.3.21

func (m KubernetesPatch_TargetMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesPatch_TargetMultiError) Error added in v0.3.21

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

type KubernetesPatch_TargetValidationError added in v0.3.21

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

KubernetesPatch_TargetValidationError is the validation error returned by KubernetesPatch_Target.Validate if the designated constraints aren't met.

func (KubernetesPatch_TargetValidationError) Cause added in v0.3.21

Cause function returns cause value.

func (KubernetesPatch_TargetValidationError) Error added in v0.3.21

Error satisfies the builtin error interface

func (KubernetesPatch_TargetValidationError) ErrorName added in v0.3.21

ErrorName returns error name.

func (KubernetesPatch_TargetValidationError) Field added in v0.3.21

Field function returns field value.

func (KubernetesPatch_TargetValidationError) Key added in v0.3.21

Key function returns key value.

func (KubernetesPatch_TargetValidationError) Reason added in v0.3.21

Reason function returns reason value.

type KubernetesSecret added in v0.1.18

type KubernetesSecret struct {
	SecretName string `protobuf:"bytes,1,opt,name=secret_name,json=secretName,proto3" json:"secret_name,omitempty"`
	Key        string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*KubernetesSecret) Descriptor deprecated added in v0.1.18

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

Deprecated: Use KubernetesSecret.ProtoReflect.Descriptor instead.

func (*KubernetesSecret) GetKey added in v0.1.18

func (x *KubernetesSecret) GetKey() string

func (*KubernetesSecret) GetSecretName added in v0.1.18

func (x *KubernetesSecret) GetSecretName() string

func (*KubernetesSecret) ProtoMessage added in v0.1.18

func (*KubernetesSecret) ProtoMessage()

func (*KubernetesSecret) ProtoReflect added in v0.1.18

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

func (*KubernetesSecret) Reset added in v0.1.18

func (x *KubernetesSecret) Reset()

func (*KubernetesSecret) String added in v0.1.18

func (x *KubernetesSecret) String() string

func (*KubernetesSecret) Validate added in v0.1.18

func (m *KubernetesSecret) Validate() error

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

func (m *KubernetesSecret) ValidateAll() error

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

type KubernetesSecretMultiError added in v0.1.18

type KubernetesSecretMultiError []error

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

func (KubernetesSecretMultiError) AllErrors added in v0.1.18

func (m KubernetesSecretMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesSecretMultiError) Error added in v0.1.18

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

type KubernetesSecretValidationError added in v0.1.18

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

KubernetesSecretValidationError is the validation error returned by KubernetesSecret.Validate if the designated constraints aren't met.

func (KubernetesSecretValidationError) Cause added in v0.1.18

Cause function returns cause value.

func (KubernetesSecretValidationError) Error added in v0.1.18

Error satisfies the builtin error interface

func (KubernetesSecretValidationError) ErrorName added in v0.1.18

ErrorName returns error name.

func (KubernetesSecretValidationError) Field added in v0.1.18

Field function returns field value.

func (KubernetesSecretValidationError) Key added in v0.1.18

Key function returns key value.

func (KubernetesSecretValidationError) Reason added in v0.1.18

Reason function returns reason value.

type Link struct {
	Url         string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// contains filtered or unexported fields
}

func (*Link) Descriptor deprecated

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

Deprecated: Use Link.ProtoReflect.Descriptor instead.

func (*Link) GetDisplayName

func (x *Link) GetDisplayName() string

func (*Link) GetUrl

func (x *Link) GetUrl() string

func (*Link) ProtoMessage

func (*Link) ProtoMessage()

func (*Link) ProtoReflect

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

func (*Link) Reset

func (x *Link) Reset()

func (*Link) String

func (x *Link) String() string

func (*Link) Validate

func (m *Link) Validate() error

Validate checks the field values on Link 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 (*Link) ValidateAll

func (m *Link) ValidateAll() error

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

type LinkMultiError

type LinkMultiError []error

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

func (LinkMultiError) AllErrors

func (m LinkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LinkMultiError) Error

func (m LinkMultiError) Error() string

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

type LinkValidationError

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

LinkValidationError is the validation error returned by Link.Validate if the designated constraints aren't met.

func (LinkValidationError) Cause

func (e LinkValidationError) Cause() error

Cause function returns cause value.

func (LinkValidationError) Error

func (e LinkValidationError) Error() string

Error satisfies the builtin error interface

func (LinkValidationError) ErrorName

func (e LinkValidationError) ErrorName() string

ErrorName returns error name.

func (LinkValidationError) Field

func (e LinkValidationError) Field() string

Field function returns field value.

func (LinkValidationError) Key

func (e LinkValidationError) Key() bool

Key function returns key value.

func (LinkValidationError) Reason

func (e LinkValidationError) Reason() string

Reason function returns reason value.

type LocalConfig

type LocalConfig struct {

	// Types that are assignable to PathOneof:
	//
	//	*LocalConfig_Path
	PathOneof isLocalConfig_PathOneof `protobuf_oneof:"path_oneof"`
	// cannot be set in conjunction with path or tarball_blob_id
	// Specify multiple paths. They will get concatenated.
	Paths []string `protobuf:"bytes,2,rep,name=paths,proto3" json:"paths,omitempty"`
	// A sub_path relative to path containing the actual config.
	// sub_path value can be templated, e.g. `{{.Builtins.ReleaseChannel.Name}}`.
	// if specified, path must also be specified and be a directory.
	SubPath string `protobuf:"bytes,3,opt,name=sub_path,json=subPath,proto3" json:"sub_path,omitempty"`
	// Used in conjunction with sub_path to exclude sub paths from being tarball'ed and uploaded
	// to Prodvana.
	// Follows the same format as gitignore.
	ExcludePatterns []string `protobuf:"bytes,5,rep,name=exclude_patterns,json=excludePatterns,proto3" json:"exclude_patterns,omitempty"`
	// If set, only include files that match this pattern. If not set, include all files not explicitly excluded.
	IncludePatterns []string `protobuf:"bytes,6,rep,name=include_patterns,json=includePatterns,proto3" json:"include_patterns,omitempty"`
	// contains filtered or unexported fields
}

func (*LocalConfig) Descriptor deprecated

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

Deprecated: Use LocalConfig.ProtoReflect.Descriptor instead.

func (*LocalConfig) GetExcludePatterns added in v0.2.12

func (x *LocalConfig) GetExcludePatterns() []string

func (*LocalConfig) GetIncludePatterns added in v0.3.31

func (x *LocalConfig) GetIncludePatterns() []string

func (*LocalConfig) GetPath

func (x *LocalConfig) GetPath() string

func (*LocalConfig) GetPathOneof added in v0.2.12

func (m *LocalConfig) GetPathOneof() isLocalConfig_PathOneof

func (*LocalConfig) GetPaths added in v0.1.14

func (x *LocalConfig) GetPaths() []string

func (*LocalConfig) GetSubPath added in v0.2.12

func (x *LocalConfig) GetSubPath() string

func (*LocalConfig) ProtoMessage

func (*LocalConfig) ProtoMessage()

func (*LocalConfig) ProtoReflect

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

func (*LocalConfig) Reset

func (x *LocalConfig) Reset()

func (*LocalConfig) String

func (x *LocalConfig) String() string

func (*LocalConfig) Validate

func (m *LocalConfig) Validate() error

Validate checks the field values on LocalConfig 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 (*LocalConfig) ValidateAll

func (m *LocalConfig) ValidateAll() error

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

type LocalConfigMultiError

type LocalConfigMultiError []error

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

func (LocalConfigMultiError) AllErrors

func (m LocalConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LocalConfigMultiError) Error

func (m LocalConfigMultiError) Error() string

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

type LocalConfigValidationError

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

LocalConfigValidationError is the validation error returned by LocalConfig.Validate if the designated constraints aren't met.

func (LocalConfigValidationError) Cause

Cause function returns cause value.

func (LocalConfigValidationError) Error

Error satisfies the builtin error interface

func (LocalConfigValidationError) ErrorName

func (e LocalConfigValidationError) ErrorName() string

ErrorName returns error name.

func (LocalConfigValidationError) Field

Field function returns field value.

func (LocalConfigValidationError) Key

Key function returns key value.

func (LocalConfigValidationError) Reason

Reason function returns reason value.

type LocalConfig_Path added in v0.2.12

type LocalConfig_Path struct {
	// Specify a path to a local file or directory
	Path string `protobuf:"bytes,1,opt,name=path,proto3,oneof"`
}

type Maturity

type Maturity int32

TODO(naphat) maturity likely should not be hardcoded but be flexible per organization

const (
	Maturity_FAST_ITERATION Maturity = 0
	Maturity_PRELAUNCH      Maturity = 1
	Maturity_LIVE           Maturity = 2
)

func (Maturity) Descriptor

func (Maturity) Descriptor() protoreflect.EnumDescriptor

func (Maturity) Enum

func (x Maturity) Enum() *Maturity

func (Maturity) EnumDescriptor deprecated

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

Deprecated: Use Maturity.Descriptor instead.

func (Maturity) Number

func (x Maturity) Number() protoreflect.EnumNumber

func (Maturity) String

func (x Maturity) String() string

func (Maturity) Type

type NativeSecretReferenceValue added in v0.3.40

type NativeSecretReferenceValue struct {

	// Types that are assignable to ValueOneof:
	//
	//	*NativeSecretReferenceValue_Secret
	ValueOneof isNativeSecretReferenceValue_ValueOneof `protobuf_oneof:"value_oneof"`
	// contains filtered or unexported fields
}

works for any Runtime

func (*NativeSecretReferenceValue) Descriptor deprecated added in v0.3.40

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

Deprecated: Use NativeSecretReferenceValue.ProtoReflect.Descriptor instead.

func (*NativeSecretReferenceValue) GetSecret added in v0.3.40

func (x *NativeSecretReferenceValue) GetSecret() *Secret

func (*NativeSecretReferenceValue) GetValueOneof added in v0.3.40

func (m *NativeSecretReferenceValue) GetValueOneof() isNativeSecretReferenceValue_ValueOneof

func (*NativeSecretReferenceValue) ProtoMessage added in v0.3.40

func (*NativeSecretReferenceValue) ProtoMessage()

func (*NativeSecretReferenceValue) ProtoReflect added in v0.3.40

func (*NativeSecretReferenceValue) Reset added in v0.3.40

func (x *NativeSecretReferenceValue) Reset()

func (*NativeSecretReferenceValue) String added in v0.3.40

func (x *NativeSecretReferenceValue) String() string

func (*NativeSecretReferenceValue) Validate added in v0.3.40

func (m *NativeSecretReferenceValue) Validate() error

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

func (m *NativeSecretReferenceValue) ValidateAll() error

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

type NativeSecretReferenceValueMultiError added in v0.3.40

type NativeSecretReferenceValueMultiError []error

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

func (NativeSecretReferenceValueMultiError) AllErrors added in v0.3.40

AllErrors returns a list of validation violation errors.

func (NativeSecretReferenceValueMultiError) Error added in v0.3.40

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

type NativeSecretReferenceValueValidationError added in v0.3.40

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

NativeSecretReferenceValueValidationError is the validation error returned by NativeSecretReferenceValue.Validate if the designated constraints aren't met.

func (NativeSecretReferenceValueValidationError) Cause added in v0.3.40

Cause function returns cause value.

func (NativeSecretReferenceValueValidationError) Error added in v0.3.40

Error satisfies the builtin error interface

func (NativeSecretReferenceValueValidationError) ErrorName added in v0.3.40

ErrorName returns error name.

func (NativeSecretReferenceValueValidationError) Field added in v0.3.40

Field function returns field value.

func (NativeSecretReferenceValueValidationError) Key added in v0.3.40

Key function returns key value.

func (NativeSecretReferenceValueValidationError) Reason added in v0.3.40

Reason function returns reason value.

type NativeSecretReferenceValue_Secret added in v0.3.40

type NativeSecretReferenceValue_Secret struct {
	// Externally stored secret.
	Secret *Secret `protobuf:"bytes,1,opt,name=secret,proto3,oneof"`
}

type Notification

type Notification struct {
	ConfigOverride *NotificationConfig `protobuf:"bytes,1,opt,name=config_override,json=configOverride,proto3" json:"config_override,omitempty"` // will default to application's notification config
	Message        string              `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*Notification) Descriptor deprecated

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

Deprecated: Use Notification.ProtoReflect.Descriptor instead.

func (*Notification) GetConfigOverride

func (x *Notification) GetConfigOverride() *NotificationConfig

func (*Notification) GetMessage

func (x *Notification) GetMessage() string

func (*Notification) ProtoMessage

func (*Notification) ProtoMessage()

func (*Notification) ProtoReflect

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

func (*Notification) Reset

func (x *Notification) Reset()

func (*Notification) String

func (x *Notification) String() string

func (*Notification) Validate

func (m *Notification) Validate() error

Validate checks the field values on Notification 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 (*Notification) ValidateAll

func (m *Notification) ValidateAll() error

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

type NotificationConfig

type NotificationConfig struct {
	Slack *NotificationConfig_Slack `protobuf:"bytes,1,opt,name=slack,proto3" json:"slack,omitempty"`
	// contains filtered or unexported fields
}

func (*NotificationConfig) Descriptor deprecated

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

Deprecated: Use NotificationConfig.ProtoReflect.Descriptor instead.

func (*NotificationConfig) GetSlack

func (*NotificationConfig) ProtoMessage

func (*NotificationConfig) ProtoMessage()

func (*NotificationConfig) ProtoReflect

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

func (*NotificationConfig) Reset

func (x *NotificationConfig) Reset()

func (*NotificationConfig) String

func (x *NotificationConfig) String() string

func (*NotificationConfig) Validate

func (m *NotificationConfig) Validate() error

Validate checks the field values on NotificationConfig 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 (*NotificationConfig) ValidateAll

func (m *NotificationConfig) ValidateAll() error

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

type NotificationConfigMultiError

type NotificationConfigMultiError []error

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

func (NotificationConfigMultiError) AllErrors

func (m NotificationConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NotificationConfigMultiError) Error

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

type NotificationConfigValidationError

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

NotificationConfigValidationError is the validation error returned by NotificationConfig.Validate if the designated constraints aren't met.

func (NotificationConfigValidationError) Cause

Cause function returns cause value.

func (NotificationConfigValidationError) Error

Error satisfies the builtin error interface

func (NotificationConfigValidationError) ErrorName

ErrorName returns error name.

func (NotificationConfigValidationError) Field

Field function returns field value.

func (NotificationConfigValidationError) Key

Key function returns key value.

func (NotificationConfigValidationError) Reason

Reason function returns reason value.

type NotificationConfig_Slack

type NotificationConfig_Slack struct {

	// catch all channel that will recieve all types of notifications
	Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
	// this channel will only recieve error/failure notifications
	ErrorChannel string `protobuf:"bytes,2,opt,name=error_channel,json=errorChannel,proto3" json:"error_channel,omitempty"`
	// contains filtered or unexported fields
}

func (*NotificationConfig_Slack) Descriptor deprecated

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

Deprecated: Use NotificationConfig_Slack.ProtoReflect.Descriptor instead.

func (*NotificationConfig_Slack) GetChannel

func (x *NotificationConfig_Slack) GetChannel() string

func (*NotificationConfig_Slack) GetErrorChannel added in v0.3.34

func (x *NotificationConfig_Slack) GetErrorChannel() string

func (*NotificationConfig_Slack) ProtoMessage

func (*NotificationConfig_Slack) ProtoMessage()

func (*NotificationConfig_Slack) ProtoReflect

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

func (*NotificationConfig_Slack) Reset

func (x *NotificationConfig_Slack) Reset()

func (*NotificationConfig_Slack) String

func (x *NotificationConfig_Slack) String() string

func (*NotificationConfig_Slack) Validate

func (m *NotificationConfig_Slack) Validate() error

Validate checks the field values on NotificationConfig_Slack 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 (*NotificationConfig_Slack) ValidateAll

func (m *NotificationConfig_Slack) ValidateAll() error

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

type NotificationConfig_SlackMultiError

type NotificationConfig_SlackMultiError []error

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

func (NotificationConfig_SlackMultiError) AllErrors

func (m NotificationConfig_SlackMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NotificationConfig_SlackMultiError) Error

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

type NotificationConfig_SlackValidationError

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

NotificationConfig_SlackValidationError is the validation error returned by NotificationConfig_Slack.Validate if the designated constraints aren't met.

func (NotificationConfig_SlackValidationError) Cause

Cause function returns cause value.

func (NotificationConfig_SlackValidationError) Error

Error satisfies the builtin error interface

func (NotificationConfig_SlackValidationError) ErrorName

ErrorName returns error name.

func (NotificationConfig_SlackValidationError) Field

Field function returns field value.

func (NotificationConfig_SlackValidationError) Key

Key function returns key value.

func (NotificationConfig_SlackValidationError) Reason

Reason function returns reason value.

type NotificationMultiError

type NotificationMultiError []error

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

func (NotificationMultiError) AllErrors

func (m NotificationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (NotificationMultiError) Error

func (m NotificationMultiError) Error() string

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

type NotificationValidationError

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

NotificationValidationError is the validation error returned by Notification.Validate if the designated constraints aren't met.

func (NotificationValidationError) Cause

Cause function returns cause value.

func (NotificationValidationError) Error

Error satisfies the builtin error interface

func (NotificationValidationError) ErrorName

func (e NotificationValidationError) ErrorName() string

ErrorName returns error name.

func (NotificationValidationError) Field

Field function returns field value.

func (NotificationValidationError) Key

Key function returns key value.

func (NotificationValidationError) Reason

Reason function returns reason value.

type ParameterDefinition

type ParameterDefinition struct {

	// parameter name, used in substitutions
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// optional description for display purposes
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// Types that are assignable to ConfigOneof:
	//
	//	*ParameterDefinition_String_
	//	*ParameterDefinition_DockerImage
	//	*ParameterDefinition_Int
	//	*ParameterDefinition_Secret
	//	*ParameterDefinition_Commit
	//	*ParameterDefinition_Blob
	ConfigOneof isParameterDefinition_ConfigOneof `protobuf_oneof:"config_oneof"`
	Required    bool                              `protobuf:"varint,7,opt,name=required,proto3" json:"required,omitempty"` // next: 10
	// contains filtered or unexported fields
}

func (*ParameterDefinition) Descriptor deprecated

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

Deprecated: Use ParameterDefinition.ProtoReflect.Descriptor instead.

func (*ParameterDefinition) GetBlob added in v0.3.10

func (*ParameterDefinition) GetCommit added in v0.2.15

func (*ParameterDefinition) GetConfigOneof

func (m *ParameterDefinition) GetConfigOneof() isParameterDefinition_ConfigOneof

func (*ParameterDefinition) GetDescription

func (x *ParameterDefinition) GetDescription() string

func (*ParameterDefinition) GetDockerImage

func (*ParameterDefinition) GetInt

func (*ParameterDefinition) GetName

func (x *ParameterDefinition) GetName() string

func (*ParameterDefinition) GetRequired

func (x *ParameterDefinition) GetRequired() bool

func (*ParameterDefinition) GetSecret

func (*ParameterDefinition) GetString_

func (*ParameterDefinition) ProtoMessage

func (*ParameterDefinition) ProtoMessage()

func (*ParameterDefinition) ProtoReflect

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

func (*ParameterDefinition) Reset

func (x *ParameterDefinition) Reset()

func (*ParameterDefinition) String

func (x *ParameterDefinition) String() string

func (*ParameterDefinition) Validate

func (m *ParameterDefinition) Validate() error

Validate checks the field values on ParameterDefinition 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 (*ParameterDefinition) ValidateAll

func (m *ParameterDefinition) ValidateAll() error

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

type ParameterDefinitionMultiError

type ParameterDefinitionMultiError []error

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

func (ParameterDefinitionMultiError) AllErrors

func (m ParameterDefinitionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ParameterDefinitionMultiError) Error

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

type ParameterDefinitionValidationError

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

ParameterDefinitionValidationError is the validation error returned by ParameterDefinition.Validate if the designated constraints aren't met.

func (ParameterDefinitionValidationError) Cause

Cause function returns cause value.

func (ParameterDefinitionValidationError) Error

Error satisfies the builtin error interface

func (ParameterDefinitionValidationError) ErrorName

ErrorName returns error name.

func (ParameterDefinitionValidationError) Field

Field function returns field value.

func (ParameterDefinitionValidationError) Key

Key function returns key value.

func (ParameterDefinitionValidationError) Reason

Reason function returns reason value.

type ParameterDefinition_Blob added in v0.3.10

type ParameterDefinition_Blob struct {
	Blob *BlobParameterDefinition `protobuf:"bytes,9,opt,name=blob,proto3,oneof"`
}

type ParameterDefinition_Commit added in v0.2.15

type ParameterDefinition_Commit struct {
	Commit *CommitParameterDefinition `protobuf:"bytes,8,opt,name=commit,proto3,oneof"`
}

type ParameterDefinition_DockerImage

type ParameterDefinition_DockerImage struct {
	DockerImage *DockerImageParameterDefinition `protobuf:"bytes,4,opt,name=docker_image,json=dockerImage,proto3,oneof"`
}

type ParameterDefinition_Int

type ParameterDefinition_Int struct {
	Int *IntParameterDefinition `protobuf:"bytes,5,opt,name=int,proto3,oneof"`
}

type ParameterDefinition_Secret

type ParameterDefinition_Secret struct {
	Secret *SecretParameterDefinition `protobuf:"bytes,6,opt,name=secret,proto3,oneof"`
}

type ParameterDefinition_String_

type ParameterDefinition_String_ struct {
	String_ *StringParameterDefinition `protobuf:"bytes,3,opt,name=string,proto3,oneof"`
}

type ParameterValue

type ParameterValue struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are assignable to ValueOneof:
	//
	//	*ParameterValue_String_
	//	*ParameterValue_Int
	//	*ParameterValue_DockerImageTag
	//	*ParameterValue_Secret
	//	*ParameterValue_Commit
	//	*ParameterValue_Blob
	ValueOneof isParameterValue_ValueOneof `protobuf_oneof:"value_oneof"`
	// contains filtered or unexported fields
}

func (*ParameterValue) Descriptor deprecated

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

Deprecated: Use ParameterValue.ProtoReflect.Descriptor instead.

func (*ParameterValue) GetBlob added in v0.3.10

func (x *ParameterValue) GetBlob() *BlobParameterValue

func (*ParameterValue) GetCommit added in v0.2.15

func (x *ParameterValue) GetCommit() string

func (*ParameterValue) GetDockerImageTag

func (x *ParameterValue) GetDockerImageTag() string

func (*ParameterValue) GetInt

func (x *ParameterValue) GetInt() int64

func (*ParameterValue) GetName

func (x *ParameterValue) GetName() string

func (*ParameterValue) GetSecret

func (x *ParameterValue) GetSecret() *SecretParameterValue

func (*ParameterValue) GetString_

func (x *ParameterValue) GetString_() string

func (*ParameterValue) GetValueOneof

func (m *ParameterValue) GetValueOneof() isParameterValue_ValueOneof

func (*ParameterValue) ProtoMessage

func (*ParameterValue) ProtoMessage()

func (*ParameterValue) ProtoReflect

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

func (*ParameterValue) Reset

func (x *ParameterValue) Reset()

func (*ParameterValue) String

func (x *ParameterValue) String() string

func (*ParameterValue) Validate

func (m *ParameterValue) Validate() error

Validate checks the field values on ParameterValue 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 (*ParameterValue) ValidateAll

func (m *ParameterValue) ValidateAll() error

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

type ParameterValueMultiError

type ParameterValueMultiError []error

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

func (ParameterValueMultiError) AllErrors

func (m ParameterValueMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ParameterValueMultiError) Error

func (m ParameterValueMultiError) Error() string

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

type ParameterValueValidationError

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

ParameterValueValidationError is the validation error returned by ParameterValue.Validate if the designated constraints aren't met.

func (ParameterValueValidationError) Cause

Cause function returns cause value.

func (ParameterValueValidationError) Error

Error satisfies the builtin error interface

func (ParameterValueValidationError) ErrorName

func (e ParameterValueValidationError) ErrorName() string

ErrorName returns error name.

func (ParameterValueValidationError) Field

Field function returns field value.

func (ParameterValueValidationError) Key

Key function returns key value.

func (ParameterValueValidationError) Reason

Reason function returns reason value.

type ParameterValue_Blob added in v0.3.10

type ParameterValue_Blob struct {
	Blob *BlobParameterValue `protobuf:"bytes,8,opt,name=blob,proto3,oneof"`
}

type ParameterValue_Commit added in v0.2.15

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

type ParameterValue_DockerImageTag

type ParameterValue_DockerImageTag struct {
	DockerImageTag string `protobuf:"bytes,5,opt,name=docker_image_tag,json=dockerImageTag,proto3,oneof"`
}

type ParameterValue_Int

type ParameterValue_Int struct {
	Int int64 `protobuf:"varint,4,opt,name=int,proto3,oneof"`
}

type ParameterValue_Secret

type ParameterValue_Secret struct {
	Secret *SecretParameterValue `protobuf:"bytes,6,opt,name=secret,proto3,oneof"`
}

type ParameterValue_String_

type ParameterValue_String_ struct {
	String_ string `protobuf:"bytes,2,opt,name=string,proto3,oneof"`
}

type ParametersConfig

type ParametersConfig struct {
	Parameters []*ParameterDefinition `protobuf:"bytes,1,rep,name=parameters,proto3" json:"parameters,omitempty"`
	// contains filtered or unexported fields
}

func (*ParametersConfig) Descriptor deprecated

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

Deprecated: Use ParametersConfig.ProtoReflect.Descriptor instead.

func (*ParametersConfig) GetParameters

func (x *ParametersConfig) GetParameters() []*ParameterDefinition

func (*ParametersConfig) ProtoMessage

func (*ParametersConfig) ProtoMessage()

func (*ParametersConfig) ProtoReflect

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

func (*ParametersConfig) Reset

func (x *ParametersConfig) Reset()

func (*ParametersConfig) String

func (x *ParametersConfig) String() string

func (*ParametersConfig) Validate

func (m *ParametersConfig) Validate() error

Validate checks the field values on ParametersConfig 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 (*ParametersConfig) ValidateAll

func (m *ParametersConfig) ValidateAll() error

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

type ParametersConfigMultiError

type ParametersConfigMultiError []error

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

func (ParametersConfigMultiError) AllErrors

func (m ParametersConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ParametersConfigMultiError) Error

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

type ParametersConfigValidationError

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

ParametersConfigValidationError is the validation error returned by ParametersConfig.Validate if the designated constraints aren't met.

func (ParametersConfigValidationError) Cause

Cause function returns cause value.

func (ParametersConfigValidationError) Error

Error satisfies the builtin error interface

func (ParametersConfigValidationError) ErrorName

ErrorName returns error name.

func (ParametersConfigValidationError) Field

Field function returns field value.

func (ParametersConfigValidationError) Key

Key function returns key value.

func (ParametersConfigValidationError) Reason

Reason function returns reason value.

type PerReleaseChannelProgramConfig

type PerReleaseChannelProgramConfig struct {
	Name string               `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // must match a program in top-level program config
	Env  map[string]*EnvValue ``                                                              /* 147-byte string literal not displayed */
	// If present, overrides main program config.
	// TODO: If users need to enforce that different RCs require different images, add requires_separate_images option to ProgramConfig.
	// This will prevent accidentally undoing separate images via the UI or autopush.
	Image             string             `protobuf:"bytes,3,opt,name=image,proto3" json:"image,omitempty"`
	ImageRegistryInfo *ImageRegistryInfo `protobuf:"bytes,4,opt,name=image_registry_info,json=imageRegistryInfo,proto3" json:"image_registry_info,omitempty"` // optional, not guaranteed to be compatible with `image` (e.g. if user decides to paste in a public image string)
	ImageTag          string             `protobuf:"bytes,5,opt,name=image_tag,json=imageTag,proto3" json:"image_tag,omitempty"`
	// contains filtered or unexported fields
}

func (*PerReleaseChannelProgramConfig) Descriptor deprecated

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

Deprecated: Use PerReleaseChannelProgramConfig.ProtoReflect.Descriptor instead.

func (*PerReleaseChannelProgramConfig) GetEnv

func (*PerReleaseChannelProgramConfig) GetImage

func (x *PerReleaseChannelProgramConfig) GetImage() string

func (*PerReleaseChannelProgramConfig) GetImageRegistryInfo

func (x *PerReleaseChannelProgramConfig) GetImageRegistryInfo() *ImageRegistryInfo

func (*PerReleaseChannelProgramConfig) GetImageTag

func (x *PerReleaseChannelProgramConfig) GetImageTag() string

func (*PerReleaseChannelProgramConfig) GetName

func (*PerReleaseChannelProgramConfig) ProtoMessage

func (*PerReleaseChannelProgramConfig) ProtoMessage()

func (*PerReleaseChannelProgramConfig) ProtoReflect

func (*PerReleaseChannelProgramConfig) Reset

func (x *PerReleaseChannelProgramConfig) Reset()

func (*PerReleaseChannelProgramConfig) String

func (*PerReleaseChannelProgramConfig) Validate

func (m *PerReleaseChannelProgramConfig) Validate() error

Validate checks the field values on PerReleaseChannelProgramConfig 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 (*PerReleaseChannelProgramConfig) ValidateAll

func (m *PerReleaseChannelProgramConfig) ValidateAll() error

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

type PerReleaseChannelProgramConfigMultiError

type PerReleaseChannelProgramConfigMultiError []error

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

func (PerReleaseChannelProgramConfigMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PerReleaseChannelProgramConfigMultiError) Error

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

type PerReleaseChannelProgramConfigValidationError

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

PerReleaseChannelProgramConfigValidationError is the validation error returned by PerReleaseChannelProgramConfig.Validate if the designated constraints aren't met.

func (PerReleaseChannelProgramConfigValidationError) Cause

Cause function returns cause value.

func (PerReleaseChannelProgramConfigValidationError) Error

Error satisfies the builtin error interface

func (PerReleaseChannelProgramConfigValidationError) ErrorName

ErrorName returns error name.

func (PerReleaseChannelProgramConfigValidationError) Field

Field function returns field value.

func (PerReleaseChannelProgramConfigValidationError) Key

Key function returns key value.

func (PerReleaseChannelProgramConfigValidationError) Reason

Reason function returns reason value.

type PipelineRunObjectMeta

type PipelineRunObjectMeta struct {
	PipelineMeta *object.ObjectMeta `protobuf:"bytes,1,opt,name=pipeline_meta,json=pipelineMeta,proto3" json:"pipeline_meta,omitempty"`
	RunName      string             `protobuf:"bytes,2,opt,name=run_name,json=runName,proto3" json:"run_name,omitempty"`
	// contains filtered or unexported fields
}

func (*PipelineRunObjectMeta) Descriptor deprecated

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

Deprecated: Use PipelineRunObjectMeta.ProtoReflect.Descriptor instead.

func (*PipelineRunObjectMeta) GetPipelineMeta

func (x *PipelineRunObjectMeta) GetPipelineMeta() *object.ObjectMeta

func (*PipelineRunObjectMeta) GetRunName

func (x *PipelineRunObjectMeta) GetRunName() string

func (*PipelineRunObjectMeta) ProtoMessage

func (*PipelineRunObjectMeta) ProtoMessage()

func (*PipelineRunObjectMeta) ProtoReflect

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

func (*PipelineRunObjectMeta) Reset

func (x *PipelineRunObjectMeta) Reset()

func (*PipelineRunObjectMeta) String

func (x *PipelineRunObjectMeta) String() string

func (*PipelineRunObjectMeta) Validate

func (m *PipelineRunObjectMeta) Validate() error

Validate checks the field values on PipelineRunObjectMeta 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 (*PipelineRunObjectMeta) ValidateAll

func (m *PipelineRunObjectMeta) ValidateAll() error

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

type PipelineRunObjectMetaMultiError

type PipelineRunObjectMetaMultiError []error

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

func (PipelineRunObjectMetaMultiError) AllErrors

func (m PipelineRunObjectMetaMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineRunObjectMetaMultiError) Error

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

type PipelineRunObjectMetaValidationError

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

PipelineRunObjectMetaValidationError is the validation error returned by PipelineRunObjectMeta.Validate if the designated constraints aren't met.

func (PipelineRunObjectMetaValidationError) Cause

Cause function returns cause value.

func (PipelineRunObjectMetaValidationError) Error

Error satisfies the builtin error interface

func (PipelineRunObjectMetaValidationError) ErrorName

ErrorName returns error name.

func (PipelineRunObjectMetaValidationError) Field

Field function returns field value.

func (PipelineRunObjectMetaValidationError) Key

Key function returns key value.

func (PipelineRunObjectMetaValidationError) Reason

Reason function returns reason value.

type PortConfig

type PortConfig struct {
	Port int32 `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"`
	// optional, default to the same value as `port`
	TargetPort int32 `protobuf:"varint,2,opt,name=target_port,json=targetPort,proto3" json:"target_port,omitempty"`
	// if this port should be exposed to the public internet
	External bool                `protobuf:"varint,3,opt,name=external,proto3" json:"external,omitempty"`
	Protocol PortConfig_Protocol `protobuf:"varint,4,opt,name=protocol,proto3,enum=prodvana.common_config.PortConfig_Protocol" json:"protocol,omitempty"`
	// if the connection should use TLS
	Tls bool `protobuf:"varint,5,opt,name=tls,proto3" json:"tls,omitempty"`
	// contains filtered or unexported fields
}

func (*PortConfig) Descriptor deprecated

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

Deprecated: Use PortConfig.ProtoReflect.Descriptor instead.

func (*PortConfig) GetExternal

func (x *PortConfig) GetExternal() bool

func (*PortConfig) GetPort

func (x *PortConfig) GetPort() int32

func (*PortConfig) GetProtocol

func (x *PortConfig) GetProtocol() PortConfig_Protocol

func (*PortConfig) GetTargetPort

func (x *PortConfig) GetTargetPort() int32

func (*PortConfig) GetTls

func (x *PortConfig) GetTls() bool

func (*PortConfig) ProtoMessage

func (*PortConfig) ProtoMessage()

func (*PortConfig) ProtoReflect

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

func (*PortConfig) Reset

func (x *PortConfig) Reset()

func (*PortConfig) String

func (x *PortConfig) String() string

func (*PortConfig) Validate

func (m *PortConfig) Validate() error

Validate checks the field values on PortConfig 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 (*PortConfig) ValidateAll

func (m *PortConfig) ValidateAll() error

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

type PortConfigMultiError

type PortConfigMultiError []error

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

func (PortConfigMultiError) AllErrors

func (m PortConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PortConfigMultiError) Error

func (m PortConfigMultiError) Error() string

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

type PortConfigValidationError

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

PortConfigValidationError is the validation error returned by PortConfig.Validate if the designated constraints aren't met.

func (PortConfigValidationError) Cause

func (e PortConfigValidationError) Cause() error

Cause function returns cause value.

func (PortConfigValidationError) Error

Error satisfies the builtin error interface

func (PortConfigValidationError) ErrorName

func (e PortConfigValidationError) ErrorName() string

ErrorName returns error name.

func (PortConfigValidationError) Field

Field function returns field value.

func (PortConfigValidationError) Key

Key function returns key value.

func (PortConfigValidationError) Reason

func (e PortConfigValidationError) Reason() string

Reason function returns reason value.

type PortConfig_Protocol

type PortConfig_Protocol int32
const (
	PortConfig_UNKNOWN PortConfig_Protocol = 0
	PortConfig_HTTP    PortConfig_Protocol = 1
	PortConfig_HTTP2   PortConfig_Protocol = 2
	PortConfig_GRPC    PortConfig_Protocol = 3
	PortConfig_TCP     PortConfig_Protocol = 4
)

func (PortConfig_Protocol) Descriptor

func (PortConfig_Protocol) Enum

func (PortConfig_Protocol) EnumDescriptor deprecated

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

Deprecated: Use PortConfig_Protocol.Descriptor instead.

func (PortConfig_Protocol) Number

func (PortConfig_Protocol) String

func (x PortConfig_Protocol) String() string

func (PortConfig_Protocol) Type

type ProgramChange

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

func (*ProgramChange) Descriptor deprecated

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

Deprecated: Use ProgramChange.ProtoReflect.Descriptor instead.

func (*ProgramChange) GetName

func (x *ProgramChange) GetName() string

func (*ProgramChange) ProtoMessage

func (*ProgramChange) ProtoMessage()

func (*ProgramChange) ProtoReflect

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

func (*ProgramChange) Reset

func (x *ProgramChange) Reset()

func (*ProgramChange) String

func (x *ProgramChange) String() string

func (*ProgramChange) Validate

func (m *ProgramChange) Validate() error

Validate checks the field values on ProgramChange 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 (*ProgramChange) ValidateAll

func (m *ProgramChange) ValidateAll() error

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

type ProgramChangeMultiError

type ProgramChangeMultiError []error

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

func (ProgramChangeMultiError) AllErrors

func (m ProgramChangeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProgramChangeMultiError) Error

func (m ProgramChangeMultiError) Error() string

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

type ProgramChangeValidationError

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

ProgramChangeValidationError is the validation error returned by ProgramChange.Validate if the designated constraints aren't met.

func (ProgramChangeValidationError) Cause

Cause function returns cause value.

func (ProgramChangeValidationError) Error

Error satisfies the builtin error interface

func (ProgramChangeValidationError) ErrorName

func (e ProgramChangeValidationError) ErrorName() string

ErrorName returns error name.

func (ProgramChangeValidationError) Field

Field function returns field value.

func (ProgramChangeValidationError) Key

Key function returns key value.

func (ProgramChangeValidationError) Reason

Reason function returns reason value.

type ProgramConfig

type ProgramConfig struct {
	Name              string                `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Image             string                `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	ImageTag          string                `protobuf:"bytes,14,opt,name=image_tag,json=imageTag,proto3" json:"image_tag,omitempty"`
	ImageRegistryInfo *ImageRegistryInfo    `protobuf:"bytes,9,opt,name=image_registry_info,json=imageRegistryInfo,proto3" json:"image_registry_info,omitempty"` // optional, not guaranteed to be compatible with `image` (e.g. if user decides to paste in a public image string)
	Cmd               []string              `protobuf:"bytes,3,rep,name=cmd,proto3" json:"cmd,omitempty"`
	Entrypoint        []string              `protobuf:"bytes,4,rep,name=entrypoint,proto3" json:"entrypoint,omitempty"`
	Env               map[string]*EnvValue  `` /* 147-byte string literal not displayed */
	Resources         *ResourceRequirements `protobuf:"bytes,6,opt,name=resources,proto3" json:"resources,omitempty"`
	HealthCheck       *HealthCheck          `protobuf:"bytes,7,opt,name=health_check,json=healthCheck,proto3" json:"health_check,omitempty"`
	// empty list is ok, default from docker image will be used
	Ports []*PortConfig `protobuf:"bytes,8,rep,name=ports,proto3" json:"ports,omitempty"`
	// Only set when this ServiceConfig represents a ServiceTemplate
	// When set, this program will be added in whole to the target service's
	// programs in full, and will not partially apply to a program with the
	// same name in the target service's config.
	TemplateComplete bool `protobuf:"varint,10,opt,name=template_complete,json=templateComplete,proto3" json:"template_complete,omitempty"`
	// working directory, defaults to runtime's implementation (usually the default working directory in the docker image)
	WorkingDirectory string `protobuf:"bytes,15,opt,name=working_directory,json=workingDirectory,proto3" json:"working_directory,omitempty"`
	// contains filtered or unexported fields
}

This ProgramConfig is used in multiple places, including service configuration and custom pipeline tasks. The validations expressed here represent the lowest common denominator of the use cases.

func (*ProgramConfig) Descriptor deprecated

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

Deprecated: Use ProgramConfig.ProtoReflect.Descriptor instead.

func (*ProgramConfig) GetCmd

func (x *ProgramConfig) GetCmd() []string

func (*ProgramConfig) GetEntrypoint

func (x *ProgramConfig) GetEntrypoint() []string

func (*ProgramConfig) GetEnv

func (x *ProgramConfig) GetEnv() map[string]*EnvValue

func (*ProgramConfig) GetHealthCheck

func (x *ProgramConfig) GetHealthCheck() *HealthCheck

func (*ProgramConfig) GetImage

func (x *ProgramConfig) GetImage() string

func (*ProgramConfig) GetImageRegistryInfo

func (x *ProgramConfig) GetImageRegistryInfo() *ImageRegistryInfo

func (*ProgramConfig) GetImageTag

func (x *ProgramConfig) GetImageTag() string

func (*ProgramConfig) GetName

func (x *ProgramConfig) GetName() string

func (*ProgramConfig) GetPorts

func (x *ProgramConfig) GetPorts() []*PortConfig

func (*ProgramConfig) GetResources

func (x *ProgramConfig) GetResources() *ResourceRequirements

func (*ProgramConfig) GetTemplateComplete

func (x *ProgramConfig) GetTemplateComplete() bool

func (*ProgramConfig) GetWorkingDirectory added in v0.1.14

func (x *ProgramConfig) GetWorkingDirectory() string

func (*ProgramConfig) ProtoMessage

func (*ProgramConfig) ProtoMessage()

func (*ProgramConfig) ProtoReflect

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

func (*ProgramConfig) Reset

func (x *ProgramConfig) Reset()

func (*ProgramConfig) String

func (x *ProgramConfig) String() string

func (*ProgramConfig) Validate

func (m *ProgramConfig) Validate() error

Validate checks the field values on ProgramConfig 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 (*ProgramConfig) ValidateAll

func (m *ProgramConfig) ValidateAll() error

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

type ProgramConfigMultiError

type ProgramConfigMultiError []error

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

func (ProgramConfigMultiError) AllErrors

func (m ProgramConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProgramConfigMultiError) Error

func (m ProgramConfigMultiError) Error() string

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

type ProgramConfigValidationError

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

ProgramConfigValidationError is the validation error returned by ProgramConfig.Validate if the designated constraints aren't met.

func (ProgramConfigValidationError) Cause

Cause function returns cause value.

func (ProgramConfigValidationError) Error

Error satisfies the builtin error interface

func (ProgramConfigValidationError) ErrorName

func (e ProgramConfigValidationError) ErrorName() string

ErrorName returns error name.

func (ProgramConfigValidationError) Field

Field function returns field value.

func (ProgramConfigValidationError) Key

Key function returns key value.

func (ProgramConfigValidationError) Reason

Reason function returns reason value.

type ReleaseSettings added in v0.3.40

type ReleaseSettings struct {

	// customize what is bypassed in the fast releases (the default for rollbacks). Defaults to everything being bypassed.
	BypassSettings *ReleaseSettings_BypassSettings `protobuf:"bytes,1,opt,name=bypass_settings,json=bypassSettings,proto3" json:"bypass_settings,omitempty"`
	// contains filtered or unexported fields
}

func (*ReleaseSettings) Descriptor deprecated added in v0.3.40

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

Deprecated: Use ReleaseSettings.ProtoReflect.Descriptor instead.

func (*ReleaseSettings) GetBypassSettings added in v0.3.40

func (x *ReleaseSettings) GetBypassSettings() *ReleaseSettings_BypassSettings

func (*ReleaseSettings) ProtoMessage added in v0.3.40

func (*ReleaseSettings) ProtoMessage()

func (*ReleaseSettings) ProtoReflect added in v0.3.40

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

func (*ReleaseSettings) Reset added in v0.3.40

func (x *ReleaseSettings) Reset()

func (*ReleaseSettings) String added in v0.3.40

func (x *ReleaseSettings) String() string

func (*ReleaseSettings) Validate added in v0.3.40

func (m *ReleaseSettings) Validate() error

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

func (m *ReleaseSettings) ValidateAll() error

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

type ReleaseSettingsMultiError added in v0.3.40

type ReleaseSettingsMultiError []error

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

func (ReleaseSettingsMultiError) AllErrors added in v0.3.40

func (m ReleaseSettingsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReleaseSettingsMultiError) Error added in v0.3.40

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

type ReleaseSettingsValidationError added in v0.3.40

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

ReleaseSettingsValidationError is the validation error returned by ReleaseSettings.Validate if the designated constraints aren't met.

func (ReleaseSettingsValidationError) Cause added in v0.3.40

Cause function returns cause value.

func (ReleaseSettingsValidationError) Error added in v0.3.40

Error satisfies the builtin error interface

func (ReleaseSettingsValidationError) ErrorName added in v0.3.40

func (e ReleaseSettingsValidationError) ErrorName() string

ErrorName returns error name.

func (ReleaseSettingsValidationError) Field added in v0.3.40

Field function returns field value.

func (ReleaseSettingsValidationError) Key added in v0.3.40

Key function returns key value.

func (ReleaseSettingsValidationError) Reason added in v0.3.40

Reason function returns reason value.

type ReleaseSettings_BypassSettings added in v0.3.40

type ReleaseSettings_BypassSettings struct {
	NoBypassProtections            bool `protobuf:"varint,1,opt,name=no_bypass_protections,json=noBypassProtections,proto3" json:"no_bypass_protections,omitempty"`
	NoBypassConvergenceExtensions  bool `` /* 153-byte string literal not displayed */
	NoBypassApprovals              bool `protobuf:"varint,3,opt,name=no_bypass_approvals,json=noBypassApprovals,proto3" json:"no_bypass_approvals,omitempty"`
	NoBypassReleaseChannelOrdering bool `` /* 158-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ReleaseSettings_BypassSettings) Descriptor deprecated added in v0.3.40

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

Deprecated: Use ReleaseSettings_BypassSettings.ProtoReflect.Descriptor instead.

func (*ReleaseSettings_BypassSettings) GetNoBypassApprovals added in v0.3.40

func (x *ReleaseSettings_BypassSettings) GetNoBypassApprovals() bool

func (*ReleaseSettings_BypassSettings) GetNoBypassConvergenceExtensions added in v0.3.40

func (x *ReleaseSettings_BypassSettings) GetNoBypassConvergenceExtensions() bool

func (*ReleaseSettings_BypassSettings) GetNoBypassProtections added in v0.3.40

func (x *ReleaseSettings_BypassSettings) GetNoBypassProtections() bool

func (*ReleaseSettings_BypassSettings) GetNoBypassReleaseChannelOrdering added in v0.3.40

func (x *ReleaseSettings_BypassSettings) GetNoBypassReleaseChannelOrdering() bool

func (*ReleaseSettings_BypassSettings) ProtoMessage added in v0.3.40

func (*ReleaseSettings_BypassSettings) ProtoMessage()

func (*ReleaseSettings_BypassSettings) ProtoReflect added in v0.3.40

func (*ReleaseSettings_BypassSettings) Reset added in v0.3.40

func (x *ReleaseSettings_BypassSettings) Reset()

func (*ReleaseSettings_BypassSettings) String added in v0.3.40

func (*ReleaseSettings_BypassSettings) Validate added in v0.3.40

func (m *ReleaseSettings_BypassSettings) Validate() error

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

func (m *ReleaseSettings_BypassSettings) ValidateAll() error

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

type ReleaseSettings_BypassSettingsMultiError added in v0.3.40

type ReleaseSettings_BypassSettingsMultiError []error

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

func (ReleaseSettings_BypassSettingsMultiError) AllErrors added in v0.3.40

AllErrors returns a list of validation violation errors.

func (ReleaseSettings_BypassSettingsMultiError) Error added in v0.3.40

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

type ReleaseSettings_BypassSettingsValidationError added in v0.3.40

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

ReleaseSettings_BypassSettingsValidationError is the validation error returned by ReleaseSettings_BypassSettings.Validate if the designated constraints aren't met.

func (ReleaseSettings_BypassSettingsValidationError) Cause added in v0.3.40

Cause function returns cause value.

func (ReleaseSettings_BypassSettingsValidationError) Error added in v0.3.40

Error satisfies the builtin error interface

func (ReleaseSettings_BypassSettingsValidationError) ErrorName added in v0.3.40

ErrorName returns error name.

func (ReleaseSettings_BypassSettingsValidationError) Field added in v0.3.40

Field function returns field value.

func (ReleaseSettings_BypassSettingsValidationError) Key added in v0.3.40

Key function returns key value.

func (ReleaseSettings_BypassSettingsValidationError) Reason added in v0.3.40

Reason function returns reason value.

type RemoteConfig added in v0.2.12

type RemoteConfig struct {

	// Types that are assignable to RemoteOneof:
	//
	//	*RemoteConfig_TarballBlobId
	RemoteOneof isRemoteConfig_RemoteOneof `protobuf_oneof:"remote_oneof"`
	SubPath     string                     `protobuf:"bytes,2,opt,name=sub_path,json=subPath,proto3" json:"sub_path,omitempty"`
	// contains filtered or unexported fields
}

a remote config, specified by a remote source and a subpath

func (*RemoteConfig) Descriptor deprecated added in v0.2.12

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

Deprecated: Use RemoteConfig.ProtoReflect.Descriptor instead.

func (*RemoteConfig) GetRemoteOneof added in v0.2.12

func (m *RemoteConfig) GetRemoteOneof() isRemoteConfig_RemoteOneof

func (*RemoteConfig) GetSubPath added in v0.2.12

func (x *RemoteConfig) GetSubPath() string

func (*RemoteConfig) GetTarballBlobId added in v0.2.12

func (x *RemoteConfig) GetTarballBlobId() string

func (*RemoteConfig) ProtoMessage added in v0.2.12

func (*RemoteConfig) ProtoMessage()

func (*RemoteConfig) ProtoReflect added in v0.2.12

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

func (*RemoteConfig) Reset added in v0.2.12

func (x *RemoteConfig) Reset()

func (*RemoteConfig) String added in v0.2.12

func (x *RemoteConfig) String() string

func (*RemoteConfig) Validate added in v0.2.12

func (m *RemoteConfig) Validate() error

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

func (m *RemoteConfig) ValidateAll() error

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

type RemoteConfigMultiError added in v0.2.12

type RemoteConfigMultiError []error

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

func (RemoteConfigMultiError) AllErrors added in v0.2.12

func (m RemoteConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RemoteConfigMultiError) Error added in v0.2.12

func (m RemoteConfigMultiError) Error() string

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

type RemoteConfigValidationError added in v0.2.12

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

RemoteConfigValidationError is the validation error returned by RemoteConfig.Validate if the designated constraints aren't met.

func (RemoteConfigValidationError) Cause added in v0.2.12

Cause function returns cause value.

func (RemoteConfigValidationError) Error added in v0.2.12

Error satisfies the builtin error interface

func (RemoteConfigValidationError) ErrorName added in v0.2.12

func (e RemoteConfigValidationError) ErrorName() string

ErrorName returns error name.

func (RemoteConfigValidationError) Field added in v0.2.12

Field function returns field value.

func (RemoteConfigValidationError) Key added in v0.2.12

Key function returns key value.

func (RemoteConfigValidationError) Reason added in v0.2.12

Reason function returns reason value.

type RemoteConfig_TarballBlobId added in v0.2.12

type RemoteConfig_TarballBlobId struct {
	// A directory tarball blob id uploaded to prodvana.
	TarballBlobId string `protobuf:"bytes,1,opt,name=tarball_blob_id,json=tarballBlobId,proto3,oneof"` // TODO(naphat) git repo support?
}

type RemoteHelmChart

type RemoteHelmChart struct {

	// Types that are assignable to RepoOneof:
	//
	//	*RemoteHelmChart_Repo
	RepoOneof    isRemoteHelmChart_RepoOneof `protobuf_oneof:"repo_oneof"`
	Chart        string                      `protobuf:"bytes,2,opt,name=chart,proto3" json:"chart,omitempty"`
	ChartVersion string                      `protobuf:"bytes,3,opt,name=chart_version,json=chartVersion,proto3" json:"chart_version,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteHelmChart) Descriptor deprecated

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

Deprecated: Use RemoteHelmChart.ProtoReflect.Descriptor instead.

func (*RemoteHelmChart) GetChart

func (x *RemoteHelmChart) GetChart() string

func (*RemoteHelmChart) GetChartVersion

func (x *RemoteHelmChart) GetChartVersion() string

func (*RemoteHelmChart) GetRepo

func (x *RemoteHelmChart) GetRepo() string

func (*RemoteHelmChart) GetRepoOneof

func (m *RemoteHelmChart) GetRepoOneof() isRemoteHelmChart_RepoOneof

func (*RemoteHelmChart) ProtoMessage

func (*RemoteHelmChart) ProtoMessage()

func (*RemoteHelmChart) ProtoReflect

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

func (*RemoteHelmChart) Reset

func (x *RemoteHelmChart) Reset()

func (*RemoteHelmChart) String

func (x *RemoteHelmChart) String() string

func (*RemoteHelmChart) Validate

func (m *RemoteHelmChart) Validate() error

Validate checks the field values on RemoteHelmChart 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 (*RemoteHelmChart) ValidateAll

func (m *RemoteHelmChart) ValidateAll() error

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

type RemoteHelmChartMultiError

type RemoteHelmChartMultiError []error

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

func (RemoteHelmChartMultiError) AllErrors

func (m RemoteHelmChartMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RemoteHelmChartMultiError) Error

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

type RemoteHelmChartValidationError

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

RemoteHelmChartValidationError is the validation error returned by RemoteHelmChart.Validate if the designated constraints aren't met.

func (RemoteHelmChartValidationError) Cause

Cause function returns cause value.

func (RemoteHelmChartValidationError) Error

Error satisfies the builtin error interface

func (RemoteHelmChartValidationError) ErrorName

func (e RemoteHelmChartValidationError) ErrorName() string

ErrorName returns error name.

func (RemoteHelmChartValidationError) Field

Field function returns field value.

func (RemoteHelmChartValidationError) Key

Key function returns key value.

func (RemoteHelmChartValidationError) Reason

Reason function returns reason value.

type RemoteHelmChart_Repo

type RemoteHelmChart_Repo struct {
	Repo string `protobuf:"bytes,1,opt,name=repo,proto3,oneof"` // TODO(naphat) add integration support for private repositories
}

type ResourceList

type ResourceList struct {
	Memory string `protobuf:"bytes,1,opt,name=memory,proto3" json:"memory,omitempty"`
	Cpu    string `protobuf:"bytes,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceList) Descriptor deprecated

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

Deprecated: Use ResourceList.ProtoReflect.Descriptor instead.

func (*ResourceList) GetCpu

func (x *ResourceList) GetCpu() string

func (*ResourceList) GetMemory

func (x *ResourceList) GetMemory() string

func (*ResourceList) ProtoMessage

func (*ResourceList) ProtoMessage()

func (*ResourceList) ProtoReflect

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

func (*ResourceList) Reset

func (x *ResourceList) Reset()

func (*ResourceList) String

func (x *ResourceList) String() string

func (*ResourceList) Validate

func (m *ResourceList) Validate() error

Validate checks the field values on ResourceList 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 (*ResourceList) ValidateAll

func (m *ResourceList) ValidateAll() error

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

type ResourceListMultiError

type ResourceListMultiError []error

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

func (ResourceListMultiError) AllErrors

func (m ResourceListMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResourceListMultiError) Error

func (m ResourceListMultiError) Error() string

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

type ResourceListValidationError

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

ResourceListValidationError is the validation error returned by ResourceList.Validate if the designated constraints aren't met.

func (ResourceListValidationError) Cause

Cause function returns cause value.

func (ResourceListValidationError) Error

Error satisfies the builtin error interface

func (ResourceListValidationError) ErrorName

func (e ResourceListValidationError) ErrorName() string

ErrorName returns error name.

func (ResourceListValidationError) Field

Field function returns field value.

func (ResourceListValidationError) Key

Key function returns key value.

func (ResourceListValidationError) Reason

Reason function returns reason value.

type ResourceRequirements

type ResourceRequirements struct {
	Requests *ResourceList `protobuf:"bytes,1,opt,name=requests,proto3" json:"requests,omitempty"`
	Limits   *ResourceList `protobuf:"bytes,2,opt,name=limits,proto3" json:"limits,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceRequirements) Descriptor deprecated

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

Deprecated: Use ResourceRequirements.ProtoReflect.Descriptor instead.

func (*ResourceRequirements) GetLimits added in v0.3.27

func (x *ResourceRequirements) GetLimits() *ResourceList

func (*ResourceRequirements) GetRequests

func (x *ResourceRequirements) GetRequests() *ResourceList

func (*ResourceRequirements) ProtoMessage

func (*ResourceRequirements) ProtoMessage()

func (*ResourceRequirements) ProtoReflect

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

func (*ResourceRequirements) Reset

func (x *ResourceRequirements) Reset()

func (*ResourceRequirements) String

func (x *ResourceRequirements) String() string

func (*ResourceRequirements) Validate

func (m *ResourceRequirements) Validate() error

Validate checks the field values on ResourceRequirements 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 (*ResourceRequirements) ValidateAll

func (m *ResourceRequirements) ValidateAll() error

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

type ResourceRequirementsMultiError

type ResourceRequirementsMultiError []error

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

func (ResourceRequirementsMultiError) AllErrors

func (m ResourceRequirementsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResourceRequirementsMultiError) Error

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

type ResourceRequirementsValidationError

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

ResourceRequirementsValidationError is the validation error returned by ResourceRequirements.Validate if the designated constraints aren't met.

func (ResourceRequirementsValidationError) Cause

Cause function returns cause value.

func (ResourceRequirementsValidationError) Error

Error satisfies the builtin error interface

func (ResourceRequirementsValidationError) ErrorName

ErrorName returns error name.

func (ResourceRequirementsValidationError) Field

Field function returns field value.

func (ResourceRequirementsValidationError) Key

Key function returns key value.

func (ResourceRequirementsValidationError) Reason

Reason function returns reason value.

type RetryConfig

type RetryConfig struct {

	// Types that are assignable to Limit:
	//
	//	*RetryConfig_MaxRetryDuration
	//	*RetryConfig_RetryForever
	Limit                    isRetryConfig_Limit `protobuf_oneof:"limit"`
	FirstFailureNotification *Notification       `` /* 135-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RetryConfig) Descriptor deprecated

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

Deprecated: Use RetryConfig.ProtoReflect.Descriptor instead.

func (*RetryConfig) GetFirstFailureNotification

func (x *RetryConfig) GetFirstFailureNotification() *Notification

func (*RetryConfig) GetLimit

func (m *RetryConfig) GetLimit() isRetryConfig_Limit

func (*RetryConfig) GetMaxRetryDuration

func (x *RetryConfig) GetMaxRetryDuration() *durationpb.Duration

func (*RetryConfig) GetRetryForever

func (x *RetryConfig) GetRetryForever() bool

func (*RetryConfig) ProtoMessage

func (*RetryConfig) ProtoMessage()

func (*RetryConfig) ProtoReflect

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

func (*RetryConfig) Reset

func (x *RetryConfig) Reset()

func (*RetryConfig) String

func (x *RetryConfig) String() string

func (*RetryConfig) Validate

func (m *RetryConfig) Validate() error

Validate checks the field values on RetryConfig 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 (*RetryConfig) ValidateAll

func (m *RetryConfig) ValidateAll() error

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

type RetryConfigMultiError

type RetryConfigMultiError []error

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

func (RetryConfigMultiError) AllErrors

func (m RetryConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RetryConfigMultiError) Error

func (m RetryConfigMultiError) Error() string

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

type RetryConfigValidationError

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

RetryConfigValidationError is the validation error returned by RetryConfig.Validate if the designated constraints aren't met.

func (RetryConfigValidationError) Cause

Cause function returns cause value.

func (RetryConfigValidationError) Error

Error satisfies the builtin error interface

func (RetryConfigValidationError) ErrorName

func (e RetryConfigValidationError) ErrorName() string

ErrorName returns error name.

func (RetryConfigValidationError) Field

Field function returns field value.

func (RetryConfigValidationError) Key

Key function returns key value.

func (RetryConfigValidationError) Reason

Reason function returns reason value.

type RetryConfig_MaxRetryDuration

type RetryConfig_MaxRetryDuration struct {
	MaxRetryDuration *durationpb.Duration `protobuf:"bytes,1,opt,name=max_retry_duration,json=maxRetryDuration,proto3,oneof"`
}

type RetryConfig_RetryForever

type RetryConfig_RetryForever struct {
	RetryForever bool `protobuf:"varint,2,opt,name=retry_forever,json=retryForever,proto3,oneof"`
}

type Secret

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

func (*Secret) Descriptor deprecated

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

Deprecated: Use Secret.ProtoReflect.Descriptor instead.

func (*Secret) GetKey

func (x *Secret) GetKey() string

func (*Secret) GetVersion

func (x *Secret) GetVersion() string

func (*Secret) ProtoMessage

func (*Secret) ProtoMessage()

func (*Secret) ProtoReflect

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

func (*Secret) Reset

func (x *Secret) Reset()

func (*Secret) String

func (x *Secret) String() string

func (*Secret) Validate

func (m *Secret) Validate() error

Validate checks the field values on Secret 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 (*Secret) ValidateAll

func (m *Secret) ValidateAll() error

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

type SecretMultiError

type SecretMultiError []error

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

func (SecretMultiError) AllErrors

func (m SecretMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretMultiError) Error

func (m SecretMultiError) Error() string

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

type SecretParameterDefinition

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

func (*SecretParameterDefinition) Descriptor deprecated

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

Deprecated: Use SecretParameterDefinition.ProtoReflect.Descriptor instead.

func (*SecretParameterDefinition) ProtoMessage

func (*SecretParameterDefinition) ProtoMessage()

func (*SecretParameterDefinition) ProtoReflect

func (*SecretParameterDefinition) Reset

func (x *SecretParameterDefinition) Reset()

func (*SecretParameterDefinition) String

func (x *SecretParameterDefinition) String() string

func (*SecretParameterDefinition) Validate

func (m *SecretParameterDefinition) Validate() error

Validate checks the field values on SecretParameterDefinition 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 (*SecretParameterDefinition) ValidateAll

func (m *SecretParameterDefinition) ValidateAll() error

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

type SecretParameterDefinitionMultiError

type SecretParameterDefinitionMultiError []error

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

func (SecretParameterDefinitionMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SecretParameterDefinitionMultiError) Error

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

type SecretParameterDefinitionValidationError

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

SecretParameterDefinitionValidationError is the validation error returned by SecretParameterDefinition.Validate if the designated constraints aren't met.

func (SecretParameterDefinitionValidationError) Cause

Cause function returns cause value.

func (SecretParameterDefinitionValidationError) Error

Error satisfies the builtin error interface

func (SecretParameterDefinitionValidationError) ErrorName

ErrorName returns error name.

func (SecretParameterDefinitionValidationError) Field

Field function returns field value.

func (SecretParameterDefinitionValidationError) Key

Key function returns key value.

func (SecretParameterDefinitionValidationError) Reason

Reason function returns reason value.

type SecretParameterValue

type SecretParameterValue struct {

	// Types that are assignable to SecretOneof:
	//
	//	*SecretParameterValue_RawSecret
	//	*SecretParameterValue_SecretRef
	SecretOneof isSecretParameterValue_SecretOneof `protobuf_oneof:"secret_oneof"`
	// contains filtered or unexported fields
}

func (*SecretParameterValue) Descriptor deprecated

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

Deprecated: Use SecretParameterValue.ProtoReflect.Descriptor instead.

func (*SecretParameterValue) GetRawSecret

func (x *SecretParameterValue) GetRawSecret() string

func (*SecretParameterValue) GetSecretOneof

func (m *SecretParameterValue) GetSecretOneof() isSecretParameterValue_SecretOneof

func (*SecretParameterValue) GetSecretRef

func (x *SecretParameterValue) GetSecretRef() *Secret

func (*SecretParameterValue) ProtoMessage

func (*SecretParameterValue) ProtoMessage()

func (*SecretParameterValue) ProtoReflect

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

func (*SecretParameterValue) Reset

func (x *SecretParameterValue) Reset()

func (*SecretParameterValue) String

func (x *SecretParameterValue) String() string

func (*SecretParameterValue) Validate

func (m *SecretParameterValue) Validate() error

Validate checks the field values on SecretParameterValue 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 (*SecretParameterValue) ValidateAll

func (m *SecretParameterValue) ValidateAll() error

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

type SecretParameterValueMultiError

type SecretParameterValueMultiError []error

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

func (SecretParameterValueMultiError) AllErrors

func (m SecretParameterValueMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretParameterValueMultiError) Error

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

type SecretParameterValueValidationError

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

SecretParameterValueValidationError is the validation error returned by SecretParameterValue.Validate if the designated constraints aren't met.

func (SecretParameterValueValidationError) Cause

Cause function returns cause value.

func (SecretParameterValueValidationError) Error

Error satisfies the builtin error interface

func (SecretParameterValueValidationError) ErrorName

ErrorName returns error name.

func (SecretParameterValueValidationError) Field

Field function returns field value.

func (SecretParameterValueValidationError) Key

Key function returns key value.

func (SecretParameterValueValidationError) Reason

Reason function returns reason value.

type SecretParameterValue_RawSecret

type SecretParameterValue_RawSecret struct {
	// Raw secret value
	RawSecret string `protobuf:"bytes,1,opt,name=raw_secret,json=rawSecret,proto3,oneof"`
}

type SecretParameterValue_SecretRef

type SecretParameterValue_SecretRef struct {
	// Existing secret reference.
	SecretRef *Secret `protobuf:"bytes,2,opt,name=secret_ref,json=secretRef,proto3,oneof"`
}

type SecretReferenceValue added in v0.3.3

type SecretReferenceValue struct {

	// Types that are assignable to ValueOneof:
	//
	//	*SecretReferenceValue_Secret
	//	*SecretReferenceValue_KubernetesSecret
	ValueOneof isSecretReferenceValue_ValueOneof `protobuf_oneof:"value_oneof"`
	// contains filtered or unexported fields
}

only works for Kubernetes Runtimes or for Runtimes whose proxy Runtime is Kubernetes

func (*SecretReferenceValue) Descriptor deprecated added in v0.3.3

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

Deprecated: Use SecretReferenceValue.ProtoReflect.Descriptor instead.

func (*SecretReferenceValue) GetKubernetesSecret added in v0.3.3

func (x *SecretReferenceValue) GetKubernetesSecret() *KubernetesSecret

func (*SecretReferenceValue) GetSecret added in v0.3.3

func (x *SecretReferenceValue) GetSecret() *Secret

func (*SecretReferenceValue) GetValueOneof added in v0.3.3

func (m *SecretReferenceValue) GetValueOneof() isSecretReferenceValue_ValueOneof

func (*SecretReferenceValue) ProtoMessage added in v0.3.3

func (*SecretReferenceValue) ProtoMessage()

func (*SecretReferenceValue) ProtoReflect added in v0.3.3

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

func (*SecretReferenceValue) Reset added in v0.3.3

func (x *SecretReferenceValue) Reset()

func (*SecretReferenceValue) String added in v0.3.3

func (x *SecretReferenceValue) String() string

func (*SecretReferenceValue) Validate added in v0.3.3

func (m *SecretReferenceValue) Validate() error

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

func (m *SecretReferenceValue) ValidateAll() error

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

type SecretReferenceValueMultiError added in v0.3.3

type SecretReferenceValueMultiError []error

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

func (SecretReferenceValueMultiError) AllErrors added in v0.3.3

func (m SecretReferenceValueMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretReferenceValueMultiError) Error added in v0.3.3

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

type SecretReferenceValueValidationError added in v0.3.3

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

SecretReferenceValueValidationError is the validation error returned by SecretReferenceValue.Validate if the designated constraints aren't met.

func (SecretReferenceValueValidationError) Cause added in v0.3.3

Cause function returns cause value.

func (SecretReferenceValueValidationError) Error added in v0.3.3

Error satisfies the builtin error interface

func (SecretReferenceValueValidationError) ErrorName added in v0.3.3

ErrorName returns error name.

func (SecretReferenceValueValidationError) Field added in v0.3.3

Field function returns field value.

func (SecretReferenceValueValidationError) Key added in v0.3.3

Key function returns key value.

func (SecretReferenceValueValidationError) Reason added in v0.3.3

Reason function returns reason value.

type SecretReferenceValue_KubernetesSecret added in v0.3.3

type SecretReferenceValue_KubernetesSecret struct {
	// Kubernetes secret, only works for Kubernetes runtimes.
	KubernetesSecret *KubernetesSecret `protobuf:"bytes,2,opt,name=kubernetes_secret,json=kubernetesSecret,proto3,oneof"`
}

type SecretReferenceValue_Secret added in v0.3.3

type SecretReferenceValue_Secret struct {
	// Externally stored secret.
	Secret *Secret `protobuf:"bytes,1,opt,name=secret,proto3,oneof"`
}

type SecretValidationError

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

SecretValidationError is the validation error returned by Secret.Validate if the designated constraints aren't met.

func (SecretValidationError) Cause

func (e SecretValidationError) Cause() error

Cause function returns cause value.

func (SecretValidationError) Error

func (e SecretValidationError) Error() string

Error satisfies the builtin error interface

func (SecretValidationError) ErrorName

func (e SecretValidationError) ErrorName() string

ErrorName returns error name.

func (SecretValidationError) Field

func (e SecretValidationError) Field() string

Field function returns field value.

func (SecretValidationError) Key

func (e SecretValidationError) Key() bool

Key function returns key value.

func (SecretValidationError) Reason

func (e SecretValidationError) Reason() string

Reason function returns reason value.

type ServiceInstanceObjectMeta

type ServiceInstanceObjectMeta struct {

	// These metas will only have versions set if service instance has been pushed before
	ServiceMeta        *object.ObjectMeta `protobuf:"bytes,1,opt,name=service_meta,json=serviceMeta,proto3" json:"service_meta,omitempty"`
	ReleaseChannelMeta *object.ObjectMeta `protobuf:"bytes,2,opt,name=release_channel_meta,json=releaseChannelMeta,proto3" json:"release_channel_meta,omitempty"`
	// contains filtered or unexported fields
}

HACK(naphat) service instances do not have their own id and names today

func (*ServiceInstanceObjectMeta) Descriptor deprecated

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

Deprecated: Use ServiceInstanceObjectMeta.ProtoReflect.Descriptor instead.

func (*ServiceInstanceObjectMeta) GetReleaseChannelMeta

func (x *ServiceInstanceObjectMeta) GetReleaseChannelMeta() *object.ObjectMeta

func (*ServiceInstanceObjectMeta) GetServiceMeta

func (x *ServiceInstanceObjectMeta) GetServiceMeta() *object.ObjectMeta

func (*ServiceInstanceObjectMeta) ProtoMessage

func (*ServiceInstanceObjectMeta) ProtoMessage()

func (*ServiceInstanceObjectMeta) ProtoReflect

func (*ServiceInstanceObjectMeta) Reset

func (x *ServiceInstanceObjectMeta) Reset()

func (*ServiceInstanceObjectMeta) String

func (x *ServiceInstanceObjectMeta) String() string

func (*ServiceInstanceObjectMeta) Validate

func (m *ServiceInstanceObjectMeta) Validate() error

Validate checks the field values on ServiceInstanceObjectMeta 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 (*ServiceInstanceObjectMeta) ValidateAll

func (m *ServiceInstanceObjectMeta) ValidateAll() error

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

type ServiceInstanceObjectMetaMultiError

type ServiceInstanceObjectMetaMultiError []error

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

func (ServiceInstanceObjectMetaMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceInstanceObjectMetaMultiError) Error

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

type ServiceInstanceObjectMetaValidationError

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

ServiceInstanceObjectMetaValidationError is the validation error returned by ServiceInstanceObjectMeta.Validate if the designated constraints aren't met.

func (ServiceInstanceObjectMetaValidationError) Cause

Cause function returns cause value.

func (ServiceInstanceObjectMetaValidationError) Error

Error satisfies the builtin error interface

func (ServiceInstanceObjectMetaValidationError) ErrorName

ErrorName returns error name.

func (ServiceInstanceObjectMetaValidationError) Field

Field function returns field value.

func (ServiceInstanceObjectMetaValidationError) Key

Key function returns key value.

func (ServiceInstanceObjectMetaValidationError) Reason

Reason function returns reason value.

type StringConstant added in v0.1.19

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

func (*StringConstant) Descriptor deprecated added in v0.1.19

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

Deprecated: Use StringConstant.ProtoReflect.Descriptor instead.

func (*StringConstant) GetValue added in v0.1.19

func (x *StringConstant) GetValue() string

func (*StringConstant) ProtoMessage added in v0.1.19

func (*StringConstant) ProtoMessage()

func (*StringConstant) ProtoReflect added in v0.1.19

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

func (*StringConstant) Reset added in v0.1.19

func (x *StringConstant) Reset()

func (*StringConstant) String added in v0.1.19

func (x *StringConstant) String() string

func (*StringConstant) Validate added in v0.1.19

func (m *StringConstant) Validate() error

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

func (m *StringConstant) ValidateAll() error

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

type StringConstantMultiError added in v0.1.19

type StringConstantMultiError []error

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

func (StringConstantMultiError) AllErrors added in v0.1.19

func (m StringConstantMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StringConstantMultiError) Error added in v0.1.19

func (m StringConstantMultiError) Error() string

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

type StringConstantValidationError added in v0.1.19

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

StringConstantValidationError is the validation error returned by StringConstant.Validate if the designated constraints aren't met.

func (StringConstantValidationError) Cause added in v0.1.19

Cause function returns cause value.

func (StringConstantValidationError) Error added in v0.1.19

Error satisfies the builtin error interface

func (StringConstantValidationError) ErrorName added in v0.1.19

func (e StringConstantValidationError) ErrorName() string

ErrorName returns error name.

func (StringConstantValidationError) Field added in v0.1.19

Field function returns field value.

func (StringConstantValidationError) Key added in v0.1.19

Key function returns key value.

func (StringConstantValidationError) Reason added in v0.1.19

Reason function returns reason value.

type StringParameterDefinition

type StringParameterDefinition struct {
	DefaultValue string `protobuf:"bytes,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// contains filtered or unexported fields
}

func (*StringParameterDefinition) Descriptor deprecated

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

Deprecated: Use StringParameterDefinition.ProtoReflect.Descriptor instead.

func (*StringParameterDefinition) GetDefaultValue

func (x *StringParameterDefinition) GetDefaultValue() string

func (*StringParameterDefinition) ProtoMessage

func (*StringParameterDefinition) ProtoMessage()

func (*StringParameterDefinition) ProtoReflect

func (*StringParameterDefinition) Reset

func (x *StringParameterDefinition) Reset()

func (*StringParameterDefinition) String

func (x *StringParameterDefinition) String() string

func (*StringParameterDefinition) Validate

func (m *StringParameterDefinition) Validate() error

Validate checks the field values on StringParameterDefinition 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 (*StringParameterDefinition) ValidateAll

func (m *StringParameterDefinition) ValidateAll() error

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

type StringParameterDefinitionMultiError

type StringParameterDefinitionMultiError []error

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

func (StringParameterDefinitionMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StringParameterDefinitionMultiError) Error

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

type StringParameterDefinitionValidationError

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

StringParameterDefinitionValidationError is the validation error returned by StringParameterDefinition.Validate if the designated constraints aren't met.

func (StringParameterDefinitionValidationError) Cause

Cause function returns cause value.

func (StringParameterDefinitionValidationError) Error

Error satisfies the builtin error interface

func (StringParameterDefinitionValidationError) ErrorName

ErrorName returns error name.

func (StringParameterDefinitionValidationError) Field

Field function returns field value.

func (StringParameterDefinitionValidationError) Key

Key function returns key value.

func (StringParameterDefinitionValidationError) Reason

Reason function returns reason value.

type TaskConfig

type TaskConfig struct {
	Program *ProgramConfig    `protobuf:"bytes,1,opt,name=program,proto3" json:"program,omitempty"`
	Volumes []*volumes.Volume `protobuf:"bytes,3,rep,name=volumes,proto3" json:"volumes,omitempty"`
	// TTL after the job completes, defaults to 1 hour.
	Ttl *durationpb.Duration `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
	// If not set, the task will not be retried once it starts executing once.
	RetryConfig *RetryConfig `protobuf:"bytes,2,opt,name=retry_config,json=retryConfig,proto3" json:"retry_config,omitempty"`
	// optional runtime specific configuration
	//
	// Types that are assignable to RuntimeSpecific:
	//
	//	*TaskConfig_K8S
	RuntimeSpecific isTaskConfig_RuntimeSpecific `protobuf_oneof:"runtime_specific"`
	// contains filtered or unexported fields
}

func (*TaskConfig) Descriptor deprecated

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

Deprecated: Use TaskConfig.ProtoReflect.Descriptor instead.

func (*TaskConfig) GetK8S added in v0.3.21

func (*TaskConfig) GetProgram

func (x *TaskConfig) GetProgram() *ProgramConfig

func (*TaskConfig) GetRetryConfig

func (x *TaskConfig) GetRetryConfig() *RetryConfig

func (*TaskConfig) GetRuntimeSpecific added in v0.3.21

func (m *TaskConfig) GetRuntimeSpecific() isTaskConfig_RuntimeSpecific

func (*TaskConfig) GetTtl added in v0.3.0

func (x *TaskConfig) GetTtl() *durationpb.Duration

func (*TaskConfig) GetVolumes added in v0.1.18

func (x *TaskConfig) GetVolumes() []*volumes.Volume

func (*TaskConfig) ProtoMessage

func (*TaskConfig) ProtoMessage()

func (*TaskConfig) ProtoReflect

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

func (*TaskConfig) Reset

func (x *TaskConfig) Reset()

func (*TaskConfig) String

func (x *TaskConfig) String() string

func (*TaskConfig) Validate

func (m *TaskConfig) Validate() error

Validate checks the field values on TaskConfig 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 (*TaskConfig) ValidateAll

func (m *TaskConfig) ValidateAll() error

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

type TaskConfigMultiError

type TaskConfigMultiError []error

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

func (TaskConfigMultiError) AllErrors

func (m TaskConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TaskConfigMultiError) Error

func (m TaskConfigMultiError) Error() string

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

type TaskConfigValidationError

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

TaskConfigValidationError is the validation error returned by TaskConfig.Validate if the designated constraints aren't met.

func (TaskConfigValidationError) Cause

func (e TaskConfigValidationError) Cause() error

Cause function returns cause value.

func (TaskConfigValidationError) Error

Error satisfies the builtin error interface

func (TaskConfigValidationError) ErrorName

func (e TaskConfigValidationError) ErrorName() string

ErrorName returns error name.

func (TaskConfigValidationError) Field

Field function returns field value.

func (TaskConfigValidationError) Key

Key function returns key value.

func (TaskConfigValidationError) Reason

func (e TaskConfigValidationError) Reason() string

Reason function returns reason value.

type TaskConfig_K8S added in v0.3.21

type TaskConfig_K8S struct {
	K8S *TaskConfig_KubernetesConfig `protobuf:"bytes,5,opt,name=k8s,proto3,oneof"`
}

type TaskConfig_KubernetesConfig added in v0.3.21

type TaskConfig_KubernetesConfig struct {
	ServiceAccount string `protobuf:"bytes,1,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
	// contains filtered or unexported fields
}

func (*TaskConfig_KubernetesConfig) Descriptor deprecated added in v0.3.21

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

Deprecated: Use TaskConfig_KubernetesConfig.ProtoReflect.Descriptor instead.

func (*TaskConfig_KubernetesConfig) GetServiceAccount added in v0.3.21

func (x *TaskConfig_KubernetesConfig) GetServiceAccount() string

func (*TaskConfig_KubernetesConfig) ProtoMessage added in v0.3.21

func (*TaskConfig_KubernetesConfig) ProtoMessage()

func (*TaskConfig_KubernetesConfig) ProtoReflect added in v0.3.21

func (*TaskConfig_KubernetesConfig) Reset added in v0.3.21

func (x *TaskConfig_KubernetesConfig) Reset()

func (*TaskConfig_KubernetesConfig) String added in v0.3.21

func (x *TaskConfig_KubernetesConfig) String() string

func (*TaskConfig_KubernetesConfig) Validate added in v0.3.21

func (m *TaskConfig_KubernetesConfig) Validate() error

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

func (m *TaskConfig_KubernetesConfig) ValidateAll() error

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

type TaskConfig_KubernetesConfigMultiError added in v0.3.21

type TaskConfig_KubernetesConfigMultiError []error

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

func (TaskConfig_KubernetesConfigMultiError) AllErrors added in v0.3.21

AllErrors returns a list of validation violation errors.

func (TaskConfig_KubernetesConfigMultiError) Error added in v0.3.21

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

type TaskConfig_KubernetesConfigValidationError added in v0.3.21

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

TaskConfig_KubernetesConfigValidationError is the validation error returned by TaskConfig_KubernetesConfig.Validate if the designated constraints aren't met.

func (TaskConfig_KubernetesConfigValidationError) Cause added in v0.3.21

Cause function returns cause value.

func (TaskConfig_KubernetesConfigValidationError) Error added in v0.3.21

Error satisfies the builtin error interface

func (TaskConfig_KubernetesConfigValidationError) ErrorName added in v0.3.21

ErrorName returns error name.

func (TaskConfig_KubernetesConfigValidationError) Field added in v0.3.21

Field function returns field value.

func (TaskConfig_KubernetesConfigValidationError) Key added in v0.3.21

Key function returns key value.

func (TaskConfig_KubernetesConfigValidationError) Reason added in v0.3.21

Reason function returns reason value.

type TaskLifecycle

type TaskLifecycle int32
const (
	TaskLifecycle_UNKNOWN_TASK_LIFECYCLE TaskLifecycle = 0
	TaskLifecycle_CONVERGENCE_START      TaskLifecycle = 1
	// Runs before everything else. May wait for any dependent RCs to be stable.
	TaskLifecycle_PRE_APPROVAL TaskLifecycle = 2
	// Approval tasks, manual or automated. Must wait for all PRE_APPROVAL_TASK to be satisfied.
	TaskLifecycle_APPROVAL TaskLifecycle = 3
	// Runs after approval, just before service push.
	TaskLifecycle_POST_APPROVAL TaskLifecycle = 4
	// Runs as long as service push is in progress.
	TaskLifecycle_DEPLOYMENT TaskLifecycle = 5
	// Runs after service push succeeds (pods are replaced and healthy, ...), before declaring the service CONVERGED.
	TaskLifecycle_POST_DEPLOYMENT TaskLifecycle = 6
)

func (TaskLifecycle) Descriptor

func (TaskLifecycle) Enum

func (x TaskLifecycle) Enum() *TaskLifecycle

func (TaskLifecycle) EnumDescriptor deprecated

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

Deprecated: Use TaskLifecycle.Descriptor instead.

func (TaskLifecycle) Number

func (TaskLifecycle) String

func (x TaskLifecycle) String() string

func (TaskLifecycle) Type

type TcpProbe

type TcpProbe struct {
	Port int32  `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"`
	Host string `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"`
	// contains filtered or unexported fields
}

func (*TcpProbe) Descriptor deprecated

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

Deprecated: Use TcpProbe.ProtoReflect.Descriptor instead.

func (*TcpProbe) GetHost

func (x *TcpProbe) GetHost() string

func (*TcpProbe) GetPort

func (x *TcpProbe) GetPort() int32

func (*TcpProbe) ProtoMessage

func (*TcpProbe) ProtoMessage()

func (*TcpProbe) ProtoReflect

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

func (*TcpProbe) Reset

func (x *TcpProbe) Reset()

func (*TcpProbe) String

func (x *TcpProbe) String() string

func (*TcpProbe) Validate

func (m *TcpProbe) Validate() error

Validate checks the field values on TcpProbe 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 (*TcpProbe) ValidateAll

func (m *TcpProbe) ValidateAll() error

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

type TcpProbeMultiError

type TcpProbeMultiError []error

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

func (TcpProbeMultiError) AllErrors

func (m TcpProbeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TcpProbeMultiError) Error

func (m TcpProbeMultiError) Error() string

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

type TcpProbeValidationError

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

TcpProbeValidationError is the validation error returned by TcpProbe.Validate if the designated constraints aren't met.

func (TcpProbeValidationError) Cause

func (e TcpProbeValidationError) Cause() error

Cause function returns cause value.

func (TcpProbeValidationError) Error

func (e TcpProbeValidationError) Error() string

Error satisfies the builtin error interface

func (TcpProbeValidationError) ErrorName

func (e TcpProbeValidationError) ErrorName() string

ErrorName returns error name.

func (TcpProbeValidationError) Field

func (e TcpProbeValidationError) Field() string

Field function returns field value.

func (TcpProbeValidationError) Key

func (e TcpProbeValidationError) Key() bool

Key function returns key value.

func (TcpProbeValidationError) Reason

func (e TcpProbeValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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