agentcfg

package
v17.0.0-rc1 Latest Latest
Warning

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

Go to latest
Published: Apr 22, 2024 License: MIT Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	LogLevelEnum_name = map[int32]string{
		0: "info",
		1: "debug",
		2: "warn",
		3: "error",
	}
	LogLevelEnum_value = map[string]int32{
		"info":  0,
		"debug": 1,
		"warn":  2,
		"error": 3,
	}
)

Enum value maps for LogLevelEnum.

View Source
var File_pkg_agentcfg_agentcfg_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AgentConfiguration

type AgentConfiguration struct {
	Gitops            *GitopsCF            `protobuf:"bytes,1,opt,name=gitops,proto3" json:"gitops,omitempty"`
	Observability     *ObservabilityCF     `protobuf:"bytes,2,opt,name=observability,proto3" json:"observability,omitempty"`
	AgentId           int64                `protobuf:"varint,4,opt,name=agent_id,json=agentId,proto3" json:"agent_id,omitempty"`
	ProjectId         int64                `protobuf:"varint,5,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	CiAccess          *CiAccessCF          `protobuf:"bytes,6,opt,name=ci_access,json=ciAccess,proto3" json:"ci_access,omitempty"`
	ContainerScanning *ContainerScanningCF `protobuf:"bytes,7,opt,name=container_scanning,json=containerScanning,proto3" json:"container_scanning,omitempty"`
	ProjectPath       string               `protobuf:"bytes,8,opt,name=project_path,json=projectPath,proto3" json:"project_path,omitempty"`
	RemoteDevelopment *RemoteDevelopmentCF `protobuf:"bytes,9,opt,name=remote_development,json=remoteDevelopment,proto3" json:"remote_development,omitempty"`
	Flux              *FluxCF              `protobuf:"bytes,10,opt,name=flux,proto3" json:"flux,omitempty"`
	GitlabExternalUrl string               `protobuf:"bytes,11,opt,name=gitlab_external_url,json=gitlabExternalUrl,proto3" json:"gitlab_external_url,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentConfiguration) Descriptor deprecated

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

Deprecated: Use AgentConfiguration.ProtoReflect.Descriptor instead.

func (*AgentConfiguration) GetAgentId

func (x *AgentConfiguration) GetAgentId() int64

func (*AgentConfiguration) GetCiAccess

func (x *AgentConfiguration) GetCiAccess() *CiAccessCF

func (*AgentConfiguration) GetContainerScanning

func (x *AgentConfiguration) GetContainerScanning() *ContainerScanningCF

func (*AgentConfiguration) GetFlux

func (x *AgentConfiguration) GetFlux() *FluxCF

func (*AgentConfiguration) GetGitlabExternalUrl

func (x *AgentConfiguration) GetGitlabExternalUrl() string

func (*AgentConfiguration) GetGitops

func (x *AgentConfiguration) GetGitops() *GitopsCF

func (*AgentConfiguration) GetObservability

func (x *AgentConfiguration) GetObservability() *ObservabilityCF

func (*AgentConfiguration) GetProjectId

func (x *AgentConfiguration) GetProjectId() int64

func (*AgentConfiguration) GetProjectPath

func (x *AgentConfiguration) GetProjectPath() string

func (*AgentConfiguration) GetRemoteDevelopment

func (x *AgentConfiguration) GetRemoteDevelopment() *RemoteDevelopmentCF

func (*AgentConfiguration) ProtoMessage

func (*AgentConfiguration) ProtoMessage()

func (*AgentConfiguration) ProtoReflect

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

func (*AgentConfiguration) Reset

func (x *AgentConfiguration) Reset()

func (*AgentConfiguration) String

func (x *AgentConfiguration) String() string

func (*AgentConfiguration) Validate

func (m *AgentConfiguration) Validate() error

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

func (m *AgentConfiguration) ValidateAll() error

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

type AgentConfigurationMultiError

type AgentConfigurationMultiError []error

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

func (AgentConfigurationMultiError) AllErrors

func (m AgentConfigurationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AgentConfigurationMultiError) Error

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

type AgentConfigurationValidationError

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

AgentConfigurationValidationError is the validation error returned by AgentConfiguration.Validate if the designated constraints aren't met.

func (AgentConfigurationValidationError) Cause

Cause function returns cause value.

func (AgentConfigurationValidationError) Error

Error satisfies the builtin error interface

func (AgentConfigurationValidationError) ErrorName

ErrorName returns error name.

func (AgentConfigurationValidationError) Field

Field function returns field value.

func (AgentConfigurationValidationError) Key

Key function returns key value.

func (AgentConfigurationValidationError) Reason

Reason function returns reason value.

type CiAccessAsAgentCF

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

func (*CiAccessAsAgentCF) Descriptor deprecated

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

Deprecated: Use CiAccessAsAgentCF.ProtoReflect.Descriptor instead.

func (*CiAccessAsAgentCF) ProtoMessage

func (*CiAccessAsAgentCF) ProtoMessage()

func (*CiAccessAsAgentCF) ProtoReflect

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

func (*CiAccessAsAgentCF) Reset

func (x *CiAccessAsAgentCF) Reset()

func (*CiAccessAsAgentCF) String

func (x *CiAccessAsAgentCF) String() string

func (*CiAccessAsAgentCF) Validate

func (m *CiAccessAsAgentCF) Validate() error

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

func (m *CiAccessAsAgentCF) ValidateAll() error

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

type CiAccessAsAgentCFMultiError

type CiAccessAsAgentCFMultiError []error

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

func (CiAccessAsAgentCFMultiError) AllErrors

func (m CiAccessAsAgentCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessAsAgentCFMultiError) Error

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

type CiAccessAsAgentCFValidationError

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

CiAccessAsAgentCFValidationError is the validation error returned by CiAccessAsAgentCF.Validate if the designated constraints aren't met.

func (CiAccessAsAgentCFValidationError) Cause

Cause function returns cause value.

func (CiAccessAsAgentCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessAsAgentCFValidationError) ErrorName

ErrorName returns error name.

func (CiAccessAsAgentCFValidationError) Field

Field function returns field value.

func (CiAccessAsAgentCFValidationError) Key

Key function returns key value.

func (CiAccessAsAgentCFValidationError) Reason

Reason function returns reason value.

type CiAccessAsCF

type CiAccessAsCF struct {

	// Types that are assignable to As:
	//
	//	*CiAccessAsCF_Agent
	//	*CiAccessAsCF_Impersonate
	//	*CiAccessAsCF_CiJob
	As isCiAccessAsCF_As `protobuf_oneof:"as"`
	// contains filtered or unexported fields
}

func (*CiAccessAsCF) Descriptor deprecated

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

Deprecated: Use CiAccessAsCF.ProtoReflect.Descriptor instead.

func (*CiAccessAsCF) GetAgent

func (x *CiAccessAsCF) GetAgent() *CiAccessAsAgentCF

func (*CiAccessAsCF) GetAs

func (m *CiAccessAsCF) GetAs() isCiAccessAsCF_As

func (*CiAccessAsCF) GetCiJob

func (x *CiAccessAsCF) GetCiJob() *CiAccessAsCiJobCF

func (*CiAccessAsCF) GetImpersonate

func (x *CiAccessAsCF) GetImpersonate() *CiAccessAsImpersonateCF

func (*CiAccessAsCF) ProtoMessage

func (*CiAccessAsCF) ProtoMessage()

func (*CiAccessAsCF) ProtoReflect

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

func (*CiAccessAsCF) Reset

func (x *CiAccessAsCF) Reset()

func (*CiAccessAsCF) String

func (x *CiAccessAsCF) String() string

func (*CiAccessAsCF) Validate

func (m *CiAccessAsCF) Validate() error

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

func (m *CiAccessAsCF) ValidateAll() error

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

type CiAccessAsCFMultiError

type CiAccessAsCFMultiError []error

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

func (CiAccessAsCFMultiError) AllErrors

func (m CiAccessAsCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessAsCFMultiError) Error

func (m CiAccessAsCFMultiError) Error() string

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

type CiAccessAsCFValidationError

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

CiAccessAsCFValidationError is the validation error returned by CiAccessAsCF.Validate if the designated constraints aren't met.

func (CiAccessAsCFValidationError) Cause

Cause function returns cause value.

func (CiAccessAsCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessAsCFValidationError) ErrorName

func (e CiAccessAsCFValidationError) ErrorName() string

ErrorName returns error name.

func (CiAccessAsCFValidationError) Field

Field function returns field value.

func (CiAccessAsCFValidationError) Key

Key function returns key value.

func (CiAccessAsCFValidationError) Reason

Reason function returns reason value.

type CiAccessAsCF_Agent

type CiAccessAsCF_Agent struct {
	Agent *CiAccessAsAgentCF `protobuf:"bytes,1,opt,name=agent,proto3,oneof"`
}

type CiAccessAsCF_CiJob

type CiAccessAsCF_CiJob struct {
	CiJob *CiAccessAsCiJobCF `protobuf:"bytes,3,opt,name=ci_job,proto3,oneof"`
}

type CiAccessAsCF_Impersonate

type CiAccessAsCF_Impersonate struct {
	Impersonate *CiAccessAsImpersonateCF `protobuf:"bytes,2,opt,name=impersonate,proto3,oneof"`
}

type CiAccessAsCiJobCF

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

func (*CiAccessAsCiJobCF) Descriptor deprecated

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

Deprecated: Use CiAccessAsCiJobCF.ProtoReflect.Descriptor instead.

func (*CiAccessAsCiJobCF) ProtoMessage

func (*CiAccessAsCiJobCF) ProtoMessage()

func (*CiAccessAsCiJobCF) ProtoReflect

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

func (*CiAccessAsCiJobCF) Reset

func (x *CiAccessAsCiJobCF) Reset()

func (*CiAccessAsCiJobCF) String

func (x *CiAccessAsCiJobCF) String() string

func (*CiAccessAsCiJobCF) Validate

func (m *CiAccessAsCiJobCF) Validate() error

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

func (m *CiAccessAsCiJobCF) ValidateAll() error

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

type CiAccessAsCiJobCFMultiError

type CiAccessAsCiJobCFMultiError []error

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

func (CiAccessAsCiJobCFMultiError) AllErrors

func (m CiAccessAsCiJobCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessAsCiJobCFMultiError) Error

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

type CiAccessAsCiJobCFValidationError

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

CiAccessAsCiJobCFValidationError is the validation error returned by CiAccessAsCiJobCF.Validate if the designated constraints aren't met.

func (CiAccessAsCiJobCFValidationError) Cause

Cause function returns cause value.

func (CiAccessAsCiJobCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessAsCiJobCFValidationError) ErrorName

ErrorName returns error name.

func (CiAccessAsCiJobCFValidationError) Field

Field function returns field value.

func (CiAccessAsCiJobCFValidationError) Key

Key function returns key value.

func (CiAccessAsCiJobCFValidationError) Reason

Reason function returns reason value.

type CiAccessAsImpersonateCF

type CiAccessAsImpersonateCF struct {
	Username string           `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Groups   []string         `protobuf:"bytes,2,rep,name=groups,proto3" json:"groups,omitempty"`
	Uid      string           `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	Extra    []*ExtraKeyValCF `protobuf:"bytes,4,rep,name=extra,proto3" json:"extra,omitempty"`
	// contains filtered or unexported fields
}

func (*CiAccessAsImpersonateCF) Descriptor deprecated

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

Deprecated: Use CiAccessAsImpersonateCF.ProtoReflect.Descriptor instead.

func (*CiAccessAsImpersonateCF) GetExtra

func (x *CiAccessAsImpersonateCF) GetExtra() []*ExtraKeyValCF

func (*CiAccessAsImpersonateCF) GetGroups

func (x *CiAccessAsImpersonateCF) GetGroups() []string

func (*CiAccessAsImpersonateCF) GetUid

func (x *CiAccessAsImpersonateCF) GetUid() string

func (*CiAccessAsImpersonateCF) GetUsername

func (x *CiAccessAsImpersonateCF) GetUsername() string

func (*CiAccessAsImpersonateCF) ProtoMessage

func (*CiAccessAsImpersonateCF) ProtoMessage()

func (*CiAccessAsImpersonateCF) ProtoReflect

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

func (*CiAccessAsImpersonateCF) Reset

func (x *CiAccessAsImpersonateCF) Reset()

func (*CiAccessAsImpersonateCF) String

func (x *CiAccessAsImpersonateCF) String() string

func (*CiAccessAsImpersonateCF) Validate

func (m *CiAccessAsImpersonateCF) Validate() error

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

func (m *CiAccessAsImpersonateCF) ValidateAll() error

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

type CiAccessAsImpersonateCFMultiError

type CiAccessAsImpersonateCFMultiError []error

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

func (CiAccessAsImpersonateCFMultiError) AllErrors

func (m CiAccessAsImpersonateCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessAsImpersonateCFMultiError) Error

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

type CiAccessAsImpersonateCFValidationError

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

CiAccessAsImpersonateCFValidationError is the validation error returned by CiAccessAsImpersonateCF.Validate if the designated constraints aren't met.

func (CiAccessAsImpersonateCFValidationError) Cause

Cause function returns cause value.

func (CiAccessAsImpersonateCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessAsImpersonateCFValidationError) ErrorName

ErrorName returns error name.

func (CiAccessAsImpersonateCFValidationError) Field

Field function returns field value.

func (CiAccessAsImpersonateCFValidationError) Key

Key function returns key value.

func (CiAccessAsImpersonateCFValidationError) Reason

Reason function returns reason value.

type CiAccessCF

type CiAccessCF struct {
	Projects []*CiAccessProjectCF `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	Groups   []*CiAccessGroupCF   `protobuf:"bytes,2,rep,name=groups,proto3" json:"groups,omitempty"`
	// contains filtered or unexported fields
}

func (*CiAccessCF) Descriptor deprecated

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

Deprecated: Use CiAccessCF.ProtoReflect.Descriptor instead.

func (*CiAccessCF) GetGroups

func (x *CiAccessCF) GetGroups() []*CiAccessGroupCF

func (*CiAccessCF) GetProjects

func (x *CiAccessCF) GetProjects() []*CiAccessProjectCF

func (*CiAccessCF) ProtoMessage

func (*CiAccessCF) ProtoMessage()

func (*CiAccessCF) ProtoReflect

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

func (*CiAccessCF) Reset

func (x *CiAccessCF) Reset()

func (*CiAccessCF) String

func (x *CiAccessCF) String() string

func (*CiAccessCF) Validate

func (m *CiAccessCF) Validate() error

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

func (m *CiAccessCF) ValidateAll() error

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

type CiAccessCFMultiError

type CiAccessCFMultiError []error

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

func (CiAccessCFMultiError) AllErrors

func (m CiAccessCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessCFMultiError) Error

func (m CiAccessCFMultiError) Error() string

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

type CiAccessCFValidationError

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

CiAccessCFValidationError is the validation error returned by CiAccessCF.Validate if the designated constraints aren't met.

func (CiAccessCFValidationError) Cause

func (e CiAccessCFValidationError) Cause() error

Cause function returns cause value.

func (CiAccessCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessCFValidationError) ErrorName

func (e CiAccessCFValidationError) ErrorName() string

ErrorName returns error name.

func (CiAccessCFValidationError) Field

Field function returns field value.

func (CiAccessCFValidationError) Key

Key function returns key value.

func (CiAccessCFValidationError) Reason

func (e CiAccessCFValidationError) Reason() string

Reason function returns reason value.

type CiAccessGroupCF

type CiAccessGroupCF struct {
	Id               string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	DefaultNamespace string        `protobuf:"bytes,2,opt,name=default_namespace,proto3" json:"default_namespace,omitempty"`
	AccessAs         *CiAccessAsCF `protobuf:"bytes,3,opt,name=access_as,proto3" json:"access_as,omitempty"`
	Environments     []string      `protobuf:"bytes,4,rep,name=environments,proto3" json:"environments,omitempty"`
	// contains filtered or unexported fields
}

func (*CiAccessGroupCF) Descriptor deprecated

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

Deprecated: Use CiAccessGroupCF.ProtoReflect.Descriptor instead.

func (*CiAccessGroupCF) GetAccessAs

func (x *CiAccessGroupCF) GetAccessAs() *CiAccessAsCF

func (*CiAccessGroupCF) GetDefaultNamespace

func (x *CiAccessGroupCF) GetDefaultNamespace() string

func (*CiAccessGroupCF) GetEnvironments

func (x *CiAccessGroupCF) GetEnvironments() []string

func (*CiAccessGroupCF) GetId

func (x *CiAccessGroupCF) GetId() string

func (*CiAccessGroupCF) ProtoMessage

func (*CiAccessGroupCF) ProtoMessage()

func (*CiAccessGroupCF) ProtoReflect

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

func (*CiAccessGroupCF) Reset

func (x *CiAccessGroupCF) Reset()

func (*CiAccessGroupCF) String

func (x *CiAccessGroupCF) String() string

func (*CiAccessGroupCF) Validate

func (m *CiAccessGroupCF) Validate() error

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

func (m *CiAccessGroupCF) ValidateAll() error

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

type CiAccessGroupCFMultiError

type CiAccessGroupCFMultiError []error

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

func (CiAccessGroupCFMultiError) AllErrors

func (m CiAccessGroupCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessGroupCFMultiError) Error

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

type CiAccessGroupCFValidationError

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

CiAccessGroupCFValidationError is the validation error returned by CiAccessGroupCF.Validate if the designated constraints aren't met.

func (CiAccessGroupCFValidationError) Cause

Cause function returns cause value.

func (CiAccessGroupCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessGroupCFValidationError) ErrorName

func (e CiAccessGroupCFValidationError) ErrorName() string

ErrorName returns error name.

func (CiAccessGroupCFValidationError) Field

Field function returns field value.

func (CiAccessGroupCFValidationError) Key

Key function returns key value.

func (CiAccessGroupCFValidationError) Reason

Reason function returns reason value.

type CiAccessProjectCF

type CiAccessProjectCF struct {
	Id               string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	DefaultNamespace string        `protobuf:"bytes,2,opt,name=default_namespace,proto3" json:"default_namespace,omitempty"`
	AccessAs         *CiAccessAsCF `protobuf:"bytes,3,opt,name=access_as,proto3" json:"access_as,omitempty"`
	Environments     []string      `protobuf:"bytes,4,rep,name=environments,proto3" json:"environments,omitempty"`
	// contains filtered or unexported fields
}

func (*CiAccessProjectCF) Descriptor deprecated

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

Deprecated: Use CiAccessProjectCF.ProtoReflect.Descriptor instead.

func (*CiAccessProjectCF) GetAccessAs

func (x *CiAccessProjectCF) GetAccessAs() *CiAccessAsCF

func (*CiAccessProjectCF) GetDefaultNamespace

func (x *CiAccessProjectCF) GetDefaultNamespace() string

func (*CiAccessProjectCF) GetEnvironments

func (x *CiAccessProjectCF) GetEnvironments() []string

func (*CiAccessProjectCF) GetId

func (x *CiAccessProjectCF) GetId() string

func (*CiAccessProjectCF) ProtoMessage

func (*CiAccessProjectCF) ProtoMessage()

func (*CiAccessProjectCF) ProtoReflect

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

func (*CiAccessProjectCF) Reset

func (x *CiAccessProjectCF) Reset()

func (*CiAccessProjectCF) String

func (x *CiAccessProjectCF) String() string

func (*CiAccessProjectCF) Validate

func (m *CiAccessProjectCF) Validate() error

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

func (m *CiAccessProjectCF) ValidateAll() error

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

type CiAccessProjectCFMultiError

type CiAccessProjectCFMultiError []error

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

func (CiAccessProjectCFMultiError) AllErrors

func (m CiAccessProjectCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CiAccessProjectCFMultiError) Error

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

type CiAccessProjectCFValidationError

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

CiAccessProjectCFValidationError is the validation error returned by CiAccessProjectCF.Validate if the designated constraints aren't met.

func (CiAccessProjectCFValidationError) Cause

Cause function returns cause value.

func (CiAccessProjectCFValidationError) Error

Error satisfies the builtin error interface

func (CiAccessProjectCFValidationError) ErrorName

ErrorName returns error name.

func (CiAccessProjectCFValidationError) Field

Field function returns field value.

func (CiAccessProjectCFValidationError) Key

Key function returns key value.

func (CiAccessProjectCFValidationError) Reason

Reason function returns reason value.

type ConfigurationFile

type ConfigurationFile struct {
	Gitops            *GitopsCF            `protobuf:"bytes,1,opt,name=gitops,proto3" json:"gitops,omitempty"`
	Observability     *ObservabilityCF     `protobuf:"bytes,2,opt,name=observability,proto3" json:"observability,omitempty"`
	CiAccess          *CiAccessCF          `protobuf:"bytes,4,opt,name=ci_access,proto3" json:"ci_access,omitempty"`
	ContainerScanning *ContainerScanningCF `protobuf:"bytes,5,opt,name=container_scanning,proto3" json:"container_scanning,omitempty"`
	UserAccess        *UserAccessCF        `protobuf:"bytes,6,opt,name=user_access,proto3" json:"user_access,omitempty"`
	RemoteDevelopment *RemoteDevelopmentCF `protobuf:"bytes,7,opt,name=remote_development,proto3" json:"remote_development,omitempty"`
	Flux              *FluxCF              `protobuf:"bytes,8,opt,name=flux,proto3" json:"flux,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigurationFile) Descriptor deprecated

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

Deprecated: Use ConfigurationFile.ProtoReflect.Descriptor instead.

func (*ConfigurationFile) GetCiAccess

func (x *ConfigurationFile) GetCiAccess() *CiAccessCF

func (*ConfigurationFile) GetContainerScanning

func (x *ConfigurationFile) GetContainerScanning() *ContainerScanningCF

func (*ConfigurationFile) GetFlux

func (x *ConfigurationFile) GetFlux() *FluxCF

func (*ConfigurationFile) GetGitops

func (x *ConfigurationFile) GetGitops() *GitopsCF

func (*ConfigurationFile) GetObservability

func (x *ConfigurationFile) GetObservability() *ObservabilityCF

func (*ConfigurationFile) GetRemoteDevelopment

func (x *ConfigurationFile) GetRemoteDevelopment() *RemoteDevelopmentCF

func (*ConfigurationFile) GetUserAccess

func (x *ConfigurationFile) GetUserAccess() *UserAccessCF

func (*ConfigurationFile) ProtoMessage

func (*ConfigurationFile) ProtoMessage()

func (*ConfigurationFile) ProtoReflect

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

func (*ConfigurationFile) Reset

func (x *ConfigurationFile) Reset()

func (*ConfigurationFile) String

func (x *ConfigurationFile) String() string

func (*ConfigurationFile) Validate

func (m *ConfigurationFile) Validate() error

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

func (m *ConfigurationFile) ValidateAll() error

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

type ConfigurationFileMultiError

type ConfigurationFileMultiError []error

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

func (ConfigurationFileMultiError) AllErrors

func (m ConfigurationFileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigurationFileMultiError) Error

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

type ConfigurationFileValidationError

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

ConfigurationFileValidationError is the validation error returned by ConfigurationFile.Validate if the designated constraints aren't met.

func (ConfigurationFileValidationError) Cause

Cause function returns cause value.

func (ConfigurationFileValidationError) Error

Error satisfies the builtin error interface

func (ConfigurationFileValidationError) ErrorName

ErrorName returns error name.

func (ConfigurationFileValidationError) Field

Field function returns field value.

func (ConfigurationFileValidationError) Key

Key function returns key value.

func (ConfigurationFileValidationError) Reason

Reason function returns reason value.

type ContainerScanningCF

type ContainerScanningCF struct {
	VulnerabilityReport  *VulnerabilityReport  `protobuf:"bytes,1,opt,name=vulnerability_report,proto3" json:"vulnerability_report,omitempty"`
	Cadence              string                `protobuf:"bytes,2,opt,name=cadence,proto3" json:"cadence,omitempty"`
	ResourceRequirements *ResourceRequirements `protobuf:"bytes,3,opt,name=resource_requirements,proto3" json:"resource_requirements,omitempty"`
	// contains filtered or unexported fields
}

func (*ContainerScanningCF) Descriptor deprecated

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

Deprecated: Use ContainerScanningCF.ProtoReflect.Descriptor instead.

func (*ContainerScanningCF) GetCadence

func (x *ContainerScanningCF) GetCadence() string

func (*ContainerScanningCF) GetResourceRequirements

func (x *ContainerScanningCF) GetResourceRequirements() *ResourceRequirements

func (*ContainerScanningCF) GetVulnerabilityReport

func (x *ContainerScanningCF) GetVulnerabilityReport() *VulnerabilityReport

func (*ContainerScanningCF) ProtoMessage

func (*ContainerScanningCF) ProtoMessage()

func (*ContainerScanningCF) ProtoReflect

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

func (*ContainerScanningCF) Reset

func (x *ContainerScanningCF) Reset()

func (*ContainerScanningCF) String

func (x *ContainerScanningCF) String() string

func (*ContainerScanningCF) Validate

func (m *ContainerScanningCF) Validate() error

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

func (m *ContainerScanningCF) ValidateAll() error

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

type ContainerScanningCFMultiError

type ContainerScanningCFMultiError []error

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

func (ContainerScanningCFMultiError) AllErrors

func (m ContainerScanningCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ContainerScanningCFMultiError) Error

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

type ContainerScanningCFValidationError

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

ContainerScanningCFValidationError is the validation error returned by ContainerScanningCF.Validate if the designated constraints aren't met.

func (ContainerScanningCFValidationError) Cause

Cause function returns cause value.

func (ContainerScanningCFValidationError) Error

Error satisfies the builtin error interface

func (ContainerScanningCFValidationError) ErrorName

ErrorName returns error name.

func (ContainerScanningCFValidationError) Field

Field function returns field value.

func (ContainerScanningCFValidationError) Key

Key function returns key value.

func (ContainerScanningCFValidationError) Reason

Reason function returns reason value.

type ContainerScanningFilter

type ContainerScanningFilter struct {
	Namespaces []string `protobuf:"bytes,1,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
	Resources  []string `protobuf:"bytes,2,rep,name=resources,proto3" json:"resources,omitempty"`
	Containers []string `protobuf:"bytes,3,rep,name=containers,proto3" json:"containers,omitempty"`
	Kinds      []string `protobuf:"bytes,4,rep,name=kinds,proto3" json:"kinds,omitempty"`
	// contains filtered or unexported fields
}

func (*ContainerScanningFilter) Descriptor deprecated

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

Deprecated: Use ContainerScanningFilter.ProtoReflect.Descriptor instead.

func (*ContainerScanningFilter) GetContainers

func (x *ContainerScanningFilter) GetContainers() []string

func (*ContainerScanningFilter) GetKinds

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

func (*ContainerScanningFilter) GetNamespaces

func (x *ContainerScanningFilter) GetNamespaces() []string

func (*ContainerScanningFilter) GetResources

func (x *ContainerScanningFilter) GetResources() []string

func (*ContainerScanningFilter) ProtoMessage

func (*ContainerScanningFilter) ProtoMessage()

func (*ContainerScanningFilter) ProtoReflect

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

func (*ContainerScanningFilter) Reset

func (x *ContainerScanningFilter) Reset()

func (*ContainerScanningFilter) String

func (x *ContainerScanningFilter) String() string

func (*ContainerScanningFilter) Validate

func (m *ContainerScanningFilter) Validate() error

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

func (m *ContainerScanningFilter) ValidateAll() error

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

type ContainerScanningFilterMultiError

type ContainerScanningFilterMultiError []error

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

func (ContainerScanningFilterMultiError) AllErrors

func (m ContainerScanningFilterMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ContainerScanningFilterMultiError) Error

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

type ContainerScanningFilterValidationError

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

ContainerScanningFilterValidationError is the validation error returned by ContainerScanningFilter.Validate if the designated constraints aren't met.

func (ContainerScanningFilterValidationError) Cause

Cause function returns cause value.

func (ContainerScanningFilterValidationError) Error

Error satisfies the builtin error interface

func (ContainerScanningFilterValidationError) ErrorName

ErrorName returns error name.

func (ContainerScanningFilterValidationError) Field

Field function returns field value.

func (ContainerScanningFilterValidationError) Key

Key function returns key value.

func (ContainerScanningFilterValidationError) Reason

Reason function returns reason value.

type ExtraKeyValCF

type ExtraKeyValCF struct {
	Key string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Val []string `protobuf:"bytes,2,rep,name=val,proto3" json:"val,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtraKeyValCF) Descriptor deprecated

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

Deprecated: Use ExtraKeyValCF.ProtoReflect.Descriptor instead.

func (*ExtraKeyValCF) GetKey

func (x *ExtraKeyValCF) GetKey() string

func (*ExtraKeyValCF) GetVal

func (x *ExtraKeyValCF) GetVal() []string

func (*ExtraKeyValCF) ProtoMessage

func (*ExtraKeyValCF) ProtoMessage()

func (*ExtraKeyValCF) ProtoReflect

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

func (*ExtraKeyValCF) Reset

func (x *ExtraKeyValCF) Reset()

func (*ExtraKeyValCF) String

func (x *ExtraKeyValCF) String() string

func (*ExtraKeyValCF) Validate

func (m *ExtraKeyValCF) Validate() error

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

func (m *ExtraKeyValCF) ValidateAll() error

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

type ExtraKeyValCFMultiError

type ExtraKeyValCFMultiError []error

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

func (ExtraKeyValCFMultiError) AllErrors

func (m ExtraKeyValCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ExtraKeyValCFMultiError) Error

func (m ExtraKeyValCFMultiError) Error() string

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

type ExtraKeyValCFValidationError

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

ExtraKeyValCFValidationError is the validation error returned by ExtraKeyValCF.Validate if the designated constraints aren't met.

func (ExtraKeyValCFValidationError) Cause

Cause function returns cause value.

func (ExtraKeyValCFValidationError) Error

Error satisfies the builtin error interface

func (ExtraKeyValCFValidationError) ErrorName

func (e ExtraKeyValCFValidationError) ErrorName() string

ErrorName returns error name.

func (ExtraKeyValCFValidationError) Field

Field function returns field value.

func (ExtraKeyValCFValidationError) Key

Key function returns key value.

func (ExtraKeyValCFValidationError) Reason

Reason function returns reason value.

type FluxCF

type FluxCF struct {
	WebhookReceiverUrl string `protobuf:"bytes,1,opt,name=webhook_receiver_url,proto3" json:"webhook_receiver_url,omitempty"`
	Enabled            *bool  `protobuf:"varint,2,opt,name=enabled,proto3,oneof" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*FluxCF) Descriptor deprecated

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

Deprecated: Use FluxCF.ProtoReflect.Descriptor instead.

func (*FluxCF) GetEnabled

func (x *FluxCF) GetEnabled() bool

func (*FluxCF) GetWebhookReceiverUrl

func (x *FluxCF) GetWebhookReceiverUrl() string

func (*FluxCF) ProtoMessage

func (*FluxCF) ProtoMessage()

func (*FluxCF) ProtoReflect

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

func (*FluxCF) Reset

func (x *FluxCF) Reset()

func (*FluxCF) String

func (x *FluxCF) String() string

func (*FluxCF) Validate

func (m *FluxCF) Validate() error

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

func (m *FluxCF) ValidateAll() error

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

type FluxCFMultiError

type FluxCFMultiError []error

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

func (FluxCFMultiError) AllErrors

func (m FluxCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FluxCFMultiError) Error

func (m FluxCFMultiError) Error() string

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

type FluxCFValidationError

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

FluxCFValidationError is the validation error returned by FluxCF.Validate if the designated constraints aren't met.

func (FluxCFValidationError) Cause

func (e FluxCFValidationError) Cause() error

Cause function returns cause value.

func (FluxCFValidationError) Error

func (e FluxCFValidationError) Error() string

Error satisfies the builtin error interface

func (FluxCFValidationError) ErrorName

func (e FluxCFValidationError) ErrorName() string

ErrorName returns error name.

func (FluxCFValidationError) Field

func (e FluxCFValidationError) Field() string

Field function returns field value.

func (FluxCFValidationError) Key

func (e FluxCFValidationError) Key() bool

Key function returns key value.

func (FluxCFValidationError) Reason

func (e FluxCFValidationError) Reason() string

Reason function returns reason value.

type GitLabWorkspacesProxy

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

func (*GitLabWorkspacesProxy) Descriptor deprecated

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

Deprecated: Use GitLabWorkspacesProxy.ProtoReflect.Descriptor instead.

func (*GitLabWorkspacesProxy) GetNamespace

func (x *GitLabWorkspacesProxy) GetNamespace() string

func (*GitLabWorkspacesProxy) ProtoMessage

func (*GitLabWorkspacesProxy) ProtoMessage()

func (*GitLabWorkspacesProxy) ProtoReflect

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

func (*GitLabWorkspacesProxy) Reset

func (x *GitLabWorkspacesProxy) Reset()

func (*GitLabWorkspacesProxy) String

func (x *GitLabWorkspacesProxy) String() string

func (*GitLabWorkspacesProxy) Validate

func (m *GitLabWorkspacesProxy) Validate() error

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

func (m *GitLabWorkspacesProxy) ValidateAll() error

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

type GitLabWorkspacesProxyMultiError

type GitLabWorkspacesProxyMultiError []error

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

func (GitLabWorkspacesProxyMultiError) AllErrors

func (m GitLabWorkspacesProxyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitLabWorkspacesProxyMultiError) Error

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

type GitLabWorkspacesProxyValidationError

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

GitLabWorkspacesProxyValidationError is the validation error returned by GitLabWorkspacesProxy.Validate if the designated constraints aren't met.

func (GitLabWorkspacesProxyValidationError) Cause

Cause function returns cause value.

func (GitLabWorkspacesProxyValidationError) Error

Error satisfies the builtin error interface

func (GitLabWorkspacesProxyValidationError) ErrorName

ErrorName returns error name.

func (GitLabWorkspacesProxyValidationError) Field

Field function returns field value.

func (GitLabWorkspacesProxyValidationError) Key

Key function returns key value.

func (GitLabWorkspacesProxyValidationError) Reason

Reason function returns reason value.

type GitRefCF

type GitRefCF struct {

	// Types that are assignable to Ref:
	//
	//	*GitRefCF_Tag
	//	*GitRefCF_Branch
	//	*GitRefCF_Commit
	Ref isGitRefCF_Ref `protobuf_oneof:"ref"`
	// contains filtered or unexported fields
}

func (*GitRefCF) Descriptor deprecated

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

Deprecated: Use GitRefCF.ProtoReflect.Descriptor instead.

func (*GitRefCF) GetBranch

func (x *GitRefCF) GetBranch() string

func (*GitRefCF) GetCommit

func (x *GitRefCF) GetCommit() string

func (*GitRefCF) GetRef

func (m *GitRefCF) GetRef() isGitRefCF_Ref

func (*GitRefCF) GetTag

func (x *GitRefCF) GetTag() string

func (*GitRefCF) ProtoMessage

func (*GitRefCF) ProtoMessage()

func (*GitRefCF) ProtoReflect

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

func (*GitRefCF) Reset

func (x *GitRefCF) Reset()

func (*GitRefCF) String

func (x *GitRefCF) String() string

func (*GitRefCF) Validate

func (m *GitRefCF) Validate() error

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

func (m *GitRefCF) ValidateAll() error

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

type GitRefCFMultiError

type GitRefCFMultiError []error

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

func (GitRefCFMultiError) AllErrors

func (m GitRefCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitRefCFMultiError) Error

func (m GitRefCFMultiError) Error() string

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

type GitRefCFValidationError

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

GitRefCFValidationError is the validation error returned by GitRefCF.Validate if the designated constraints aren't met.

func (GitRefCFValidationError) Cause

func (e GitRefCFValidationError) Cause() error

Cause function returns cause value.

func (GitRefCFValidationError) Error

func (e GitRefCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitRefCFValidationError) ErrorName

func (e GitRefCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitRefCFValidationError) Field

func (e GitRefCFValidationError) Field() string

Field function returns field value.

func (GitRefCFValidationError) Key

func (e GitRefCFValidationError) Key() bool

Key function returns key value.

func (GitRefCFValidationError) Reason

func (e GitRefCFValidationError) Reason() string

Reason function returns reason value.

type GitRefCF_Branch

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

type GitRefCF_Commit

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

type GitRefCF_Tag

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

type GitopsCF

type GitopsCF struct {
	ManifestProjects []*ManifestProjectCF `protobuf:"bytes,1,rep,name=manifest_projects,proto3" json:"manifest_projects,omitempty"`
	// contains filtered or unexported fields
}

func (*GitopsCF) Descriptor deprecated

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

Deprecated: Use GitopsCF.ProtoReflect.Descriptor instead.

func (*GitopsCF) GetManifestProjects

func (x *GitopsCF) GetManifestProjects() []*ManifestProjectCF

func (*GitopsCF) ProtoMessage

func (*GitopsCF) ProtoMessage()

func (*GitopsCF) ProtoReflect

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

func (*GitopsCF) Reset

func (x *GitopsCF) Reset()

func (*GitopsCF) String

func (x *GitopsCF) String() string

func (*GitopsCF) Validate

func (m *GitopsCF) Validate() error

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

func (m *GitopsCF) ValidateAll() error

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

type GitopsCFMultiError

type GitopsCFMultiError []error

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

func (GitopsCFMultiError) AllErrors

func (m GitopsCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitopsCFMultiError) Error

func (m GitopsCFMultiError) Error() string

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

type GitopsCFValidationError

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

GitopsCFValidationError is the validation error returned by GitopsCF.Validate if the designated constraints aren't met.

func (GitopsCFValidationError) Cause

func (e GitopsCFValidationError) Cause() error

Cause function returns cause value.

func (GitopsCFValidationError) Error

func (e GitopsCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitopsCFValidationError) ErrorName

func (e GitopsCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitopsCFValidationError) Field

func (e GitopsCFValidationError) Field() string

Field function returns field value.

func (GitopsCFValidationError) Key

func (e GitopsCFValidationError) Key() bool

Key function returns key value.

func (GitopsCFValidationError) Reason

func (e GitopsCFValidationError) Reason() string

Reason function returns reason value.

type GoogleProfilerCF

type GoogleProfilerCF struct {
	Enabled         bool   `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	ProjectId       string `protobuf:"bytes,2,opt,name=project_id,proto3" json:"project_id,omitempty"`
	CredentialsFile string `protobuf:"bytes,3,opt,name=credentials_file,proto3" json:"credentials_file,omitempty"`
	DebugLogging    bool   `protobuf:"varint,4,opt,name=debug_logging,proto3" json:"debug_logging,omitempty"`
	// contains filtered or unexported fields
}

func (*GoogleProfilerCF) Descriptor deprecated

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

Deprecated: Use GoogleProfilerCF.ProtoReflect.Descriptor instead.

func (*GoogleProfilerCF) GetCredentialsFile

func (x *GoogleProfilerCF) GetCredentialsFile() string

func (*GoogleProfilerCF) GetDebugLogging

func (x *GoogleProfilerCF) GetDebugLogging() bool

func (*GoogleProfilerCF) GetEnabled

func (x *GoogleProfilerCF) GetEnabled() bool

func (*GoogleProfilerCF) GetProjectId

func (x *GoogleProfilerCF) GetProjectId() string

func (*GoogleProfilerCF) ProtoMessage

func (*GoogleProfilerCF) ProtoMessage()

func (*GoogleProfilerCF) ProtoReflect

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

func (*GoogleProfilerCF) Reset

func (x *GoogleProfilerCF) Reset()

func (*GoogleProfilerCF) String

func (x *GoogleProfilerCF) String() string

func (*GoogleProfilerCF) Validate

func (m *GoogleProfilerCF) Validate() error

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

func (m *GoogleProfilerCF) ValidateAll() error

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

type GoogleProfilerCFMultiError

type GoogleProfilerCFMultiError []error

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

func (GoogleProfilerCFMultiError) AllErrors

func (m GoogleProfilerCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GoogleProfilerCFMultiError) Error

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

type GoogleProfilerCFValidationError

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

GoogleProfilerCFValidationError is the validation error returned by GoogleProfilerCF.Validate if the designated constraints aren't met.

func (GoogleProfilerCFValidationError) Cause

Cause function returns cause value.

func (GoogleProfilerCFValidationError) Error

Error satisfies the builtin error interface

func (GoogleProfilerCFValidationError) ErrorName

ErrorName returns error name.

func (GoogleProfilerCFValidationError) Field

Field function returns field value.

func (GoogleProfilerCFValidationError) Key

Key function returns key value.

func (GoogleProfilerCFValidationError) Reason

Reason function returns reason value.

type LogLevelEnum

type LogLevelEnum int32
const (
	LogLevelEnum_info  LogLevelEnum = 0
	LogLevelEnum_debug LogLevelEnum = 1
	LogLevelEnum_warn  LogLevelEnum = 2
	LogLevelEnum_error LogLevelEnum = 3
)

func (LogLevelEnum) Descriptor

func (LogLevelEnum) Enum

func (x LogLevelEnum) Enum() *LogLevelEnum

func (LogLevelEnum) EnumDescriptor deprecated

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

Deprecated: Use LogLevelEnum.Descriptor instead.

func (LogLevelEnum) Number

func (LogLevelEnum) String

func (x LogLevelEnum) String() string

func (LogLevelEnum) Type

type LoggingCF

type LoggingCF struct {
	Level     LogLevelEnum  `protobuf:"varint,1,opt,name=level,proto3,enum=gitlab.agent.agentcfg.LogLevelEnum" json:"level,omitempty"`
	GrpcLevel *LogLevelEnum `protobuf:"varint,2,opt,name=grpc_level,proto3,enum=gitlab.agent.agentcfg.LogLevelEnum,oneof" json:"grpc_level,omitempty"`
	// contains filtered or unexported fields
}

func (*LoggingCF) Descriptor deprecated

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

Deprecated: Use LoggingCF.ProtoReflect.Descriptor instead.

func (*LoggingCF) GetGrpcLevel

func (x *LoggingCF) GetGrpcLevel() LogLevelEnum

func (*LoggingCF) GetLevel

func (x *LoggingCF) GetLevel() LogLevelEnum

func (*LoggingCF) ProtoMessage

func (*LoggingCF) ProtoMessage()

func (*LoggingCF) ProtoReflect

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

func (*LoggingCF) Reset

func (x *LoggingCF) Reset()

func (*LoggingCF) String

func (x *LoggingCF) String() string

func (*LoggingCF) Validate

func (m *LoggingCF) Validate() error

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

func (m *LoggingCF) ValidateAll() error

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

type LoggingCFMultiError

type LoggingCFMultiError []error

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

func (LoggingCFMultiError) AllErrors

func (m LoggingCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoggingCFMultiError) Error

func (m LoggingCFMultiError) Error() string

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

type LoggingCFValidationError

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

LoggingCFValidationError is the validation error returned by LoggingCF.Validate if the designated constraints aren't met.

func (LoggingCFValidationError) Cause

func (e LoggingCFValidationError) Cause() error

Cause function returns cause value.

func (LoggingCFValidationError) Error

func (e LoggingCFValidationError) Error() string

Error satisfies the builtin error interface

func (LoggingCFValidationError) ErrorName

func (e LoggingCFValidationError) ErrorName() string

ErrorName returns error name.

func (LoggingCFValidationError) Field

func (e LoggingCFValidationError) Field() string

Field function returns field value.

func (LoggingCFValidationError) Key

Key function returns key value.

func (LoggingCFValidationError) Reason

func (e LoggingCFValidationError) Reason() string

Reason function returns reason value.

type ManifestProjectCF

type ManifestProjectCF struct {
	Id               *string              `protobuf:"bytes,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
	DefaultNamespace string               `protobuf:"bytes,4,opt,name=default_namespace,proto3" json:"default_namespace,omitempty"`
	Paths            []*PathCF            `protobuf:"bytes,5,rep,name=paths,proto3" json:"paths,omitempty"`
	ReconcileTimeout *durationpb.Duration `protobuf:"bytes,6,opt,name=reconcile_timeout,proto3" json:"reconcile_timeout,omitempty"`
	DryRunStrategy   string               `protobuf:"bytes,7,opt,name=dry_run_strategy,proto3" json:"dry_run_strategy,omitempty"`
	// Types that are assignable to PruneOneof:
	//
	//	*ManifestProjectCF_Prune
	PruneOneof             isManifestProjectCF_PruneOneof `protobuf_oneof:"prune_oneof"`
	PruneTimeout           *durationpb.Duration           `protobuf:"bytes,9,opt,name=prune_timeout,proto3" json:"prune_timeout,omitempty"`
	PrunePropagationPolicy string                         `protobuf:"bytes,10,opt,name=prune_propagation_policy,proto3" json:"prune_propagation_policy,omitempty"`
	InventoryPolicy        string                         `protobuf:"bytes,11,opt,name=inventory_policy,proto3" json:"inventory_policy,omitempty"`
	Ref                    *GitRefCF                      `protobuf:"bytes,12,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*ManifestProjectCF) Descriptor deprecated

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

Deprecated: Use ManifestProjectCF.ProtoReflect.Descriptor instead.

func (*ManifestProjectCF) GetDefaultNamespace

func (x *ManifestProjectCF) GetDefaultNamespace() string

func (*ManifestProjectCF) GetDryRunStrategy

func (x *ManifestProjectCF) GetDryRunStrategy() string

func (*ManifestProjectCF) GetId

func (x *ManifestProjectCF) GetId() string

func (*ManifestProjectCF) GetInventoryPolicy

func (x *ManifestProjectCF) GetInventoryPolicy() string

func (*ManifestProjectCF) GetPaths

func (x *ManifestProjectCF) GetPaths() []*PathCF

func (*ManifestProjectCF) GetPrune

func (x *ManifestProjectCF) GetPrune() bool

func (*ManifestProjectCF) GetPruneOneof

func (m *ManifestProjectCF) GetPruneOneof() isManifestProjectCF_PruneOneof

func (*ManifestProjectCF) GetPrunePropagationPolicy

func (x *ManifestProjectCF) GetPrunePropagationPolicy() string

func (*ManifestProjectCF) GetPruneTimeout

func (x *ManifestProjectCF) GetPruneTimeout() *durationpb.Duration

func (*ManifestProjectCF) GetReconcileTimeout

func (x *ManifestProjectCF) GetReconcileTimeout() *durationpb.Duration

func (*ManifestProjectCF) GetRef

func (x *ManifestProjectCF) GetRef() *GitRefCF

func (*ManifestProjectCF) ProtoMessage

func (*ManifestProjectCF) ProtoMessage()

func (*ManifestProjectCF) ProtoReflect

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

func (*ManifestProjectCF) Reset

func (x *ManifestProjectCF) Reset()

func (*ManifestProjectCF) String

func (x *ManifestProjectCF) String() string

func (*ManifestProjectCF) Validate

func (m *ManifestProjectCF) Validate() error

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

func (m *ManifestProjectCF) ValidateAll() error

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

type ManifestProjectCFMultiError

type ManifestProjectCFMultiError []error

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

func (ManifestProjectCFMultiError) AllErrors

func (m ManifestProjectCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ManifestProjectCFMultiError) Error

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

type ManifestProjectCFValidationError

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

ManifestProjectCFValidationError is the validation error returned by ManifestProjectCF.Validate if the designated constraints aren't met.

func (ManifestProjectCFValidationError) Cause

Cause function returns cause value.

func (ManifestProjectCFValidationError) Error

Error satisfies the builtin error interface

func (ManifestProjectCFValidationError) ErrorName

ErrorName returns error name.

func (ManifestProjectCFValidationError) Field

Field function returns field value.

func (ManifestProjectCFValidationError) Key

Key function returns key value.

func (ManifestProjectCFValidationError) Reason

Reason function returns reason value.

type ManifestProjectCF_Prune

type ManifestProjectCF_Prune struct {
	Prune bool `protobuf:"varint,8,opt,name=prune,proto3,oneof"`
}

type ObservabilityCF

type ObservabilityCF struct {
	Logging        *LoggingCF        `protobuf:"bytes,1,opt,name=logging,proto3" json:"logging,omitempty"`
	GoogleProfiler *GoogleProfilerCF `protobuf:"bytes,2,opt,name=google_profiler,proto3" json:"google_profiler,omitempty"`
	// contains filtered or unexported fields
}

func (*ObservabilityCF) Descriptor deprecated

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

Deprecated: Use ObservabilityCF.ProtoReflect.Descriptor instead.

func (*ObservabilityCF) GetGoogleProfiler

func (x *ObservabilityCF) GetGoogleProfiler() *GoogleProfilerCF

func (*ObservabilityCF) GetLogging

func (x *ObservabilityCF) GetLogging() *LoggingCF

func (*ObservabilityCF) ProtoMessage

func (*ObservabilityCF) ProtoMessage()

func (*ObservabilityCF) ProtoReflect

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

func (*ObservabilityCF) Reset

func (x *ObservabilityCF) Reset()

func (*ObservabilityCF) String

func (x *ObservabilityCF) String() string

func (*ObservabilityCF) Validate

func (m *ObservabilityCF) Validate() error

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

func (m *ObservabilityCF) ValidateAll() error

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

type ObservabilityCFMultiError

type ObservabilityCFMultiError []error

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

func (ObservabilityCFMultiError) AllErrors

func (m ObservabilityCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ObservabilityCFMultiError) Error

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

type ObservabilityCFValidationError

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

ObservabilityCFValidationError is the validation error returned by ObservabilityCF.Validate if the designated constraints aren't met.

func (ObservabilityCFValidationError) Cause

Cause function returns cause value.

func (ObservabilityCFValidationError) Error

Error satisfies the builtin error interface

func (ObservabilityCFValidationError) ErrorName

func (e ObservabilityCFValidationError) ErrorName() string

ErrorName returns error name.

func (ObservabilityCFValidationError) Field

Field function returns field value.

func (ObservabilityCFValidationError) Key

Key function returns key value.

func (ObservabilityCFValidationError) Reason

Reason function returns reason value.

type PathCF

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

func (*PathCF) Descriptor deprecated

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

Deprecated: Use PathCF.ProtoReflect.Descriptor instead.

func (*PathCF) GetGlob

func (x *PathCF) GetGlob() string

func (*PathCF) ProtoMessage

func (*PathCF) ProtoMessage()

func (*PathCF) ProtoReflect

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

func (*PathCF) Reset

func (x *PathCF) Reset()

func (*PathCF) String

func (x *PathCF) String() string

func (*PathCF) Validate

func (m *PathCF) Validate() error

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

func (m *PathCF) ValidateAll() error

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

type PathCFMultiError

type PathCFMultiError []error

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

func (PathCFMultiError) AllErrors

func (m PathCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PathCFMultiError) Error

func (m PathCFMultiError) Error() string

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

type PathCFValidationError

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

PathCFValidationError is the validation error returned by PathCF.Validate if the designated constraints aren't met.

func (PathCFValidationError) Cause

func (e PathCFValidationError) Cause() error

Cause function returns cause value.

func (PathCFValidationError) Error

func (e PathCFValidationError) Error() string

Error satisfies the builtin error interface

func (PathCFValidationError) ErrorName

func (e PathCFValidationError) ErrorName() string

ErrorName returns error name.

func (PathCFValidationError) Field

func (e PathCFValidationError) Field() string

Field function returns field value.

func (PathCFValidationError) Key

func (e PathCFValidationError) Key() bool

Key function returns key value.

func (PathCFValidationError) Reason

func (e PathCFValidationError) Reason() string

Reason function returns reason value.

type RemoteDevelopmentCF

type RemoteDevelopmentCF struct {
	Enabled                               bool                    `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	DnsZone                               string                  `protobuf:"bytes,2,opt,name=dns_zone,proto3" json:"dns_zone,omitempty"`
	GitlabWorkspacesProxy                 *GitLabWorkspacesProxy  `protobuf:"bytes,5,opt,name=gitlab_workspaces_proxy,proto3" json:"gitlab_workspaces_proxy,omitempty"`
	NetworkPolicy                         *WorkspaceNetworkPolicy `protobuf:"bytes,6,opt,name=network_policy,proto3" json:"network_policy,omitempty"`
	DefaultResourcesPerWorkspaceContainer *ResourceRequirements   `` /* 135-byte string literal not displayed */
	MaxResourcesPerWorkspace              *ResourceRequirements   `protobuf:"bytes,8,opt,name=max_resources_per_workspace,proto3" json:"max_resources_per_workspace,omitempty"`
	WorkspacesQuota                       *int32                  `protobuf:"varint,9,opt,name=workspaces_quota,proto3,oneof" json:"workspaces_quota,omitempty"`
	WorkspacesPerUserQuota                *int32                  `protobuf:"varint,10,opt,name=workspaces_per_user_quota,proto3,oneof" json:"workspaces_per_user_quota,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteDevelopmentCF) Descriptor deprecated

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

Deprecated: Use RemoteDevelopmentCF.ProtoReflect.Descriptor instead.

func (*RemoteDevelopmentCF) GetDefaultResourcesPerWorkspaceContainer

func (x *RemoteDevelopmentCF) GetDefaultResourcesPerWorkspaceContainer() *ResourceRequirements

func (*RemoteDevelopmentCF) GetDnsZone

func (x *RemoteDevelopmentCF) GetDnsZone() string

func (*RemoteDevelopmentCF) GetEnabled

func (x *RemoteDevelopmentCF) GetEnabled() bool

func (*RemoteDevelopmentCF) GetGitlabWorkspacesProxy

func (x *RemoteDevelopmentCF) GetGitlabWorkspacesProxy() *GitLabWorkspacesProxy

func (*RemoteDevelopmentCF) GetMaxResourcesPerWorkspace

func (x *RemoteDevelopmentCF) GetMaxResourcesPerWorkspace() *ResourceRequirements

func (*RemoteDevelopmentCF) GetNetworkPolicy

func (x *RemoteDevelopmentCF) GetNetworkPolicy() *WorkspaceNetworkPolicy

func (*RemoteDevelopmentCF) GetWorkspacesPerUserQuota

func (x *RemoteDevelopmentCF) GetWorkspacesPerUserQuota() int32

func (*RemoteDevelopmentCF) GetWorkspacesQuota

func (x *RemoteDevelopmentCF) GetWorkspacesQuota() int32

func (*RemoteDevelopmentCF) ProtoMessage

func (*RemoteDevelopmentCF) ProtoMessage()

func (*RemoteDevelopmentCF) ProtoReflect

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

func (*RemoteDevelopmentCF) Reset

func (x *RemoteDevelopmentCF) Reset()

func (*RemoteDevelopmentCF) String

func (x *RemoteDevelopmentCF) String() string

func (*RemoteDevelopmentCF) Validate

func (m *RemoteDevelopmentCF) Validate() error

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

func (m *RemoteDevelopmentCF) ValidateAll() error

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

type RemoteDevelopmentCFMultiError

type RemoteDevelopmentCFMultiError []error

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

func (RemoteDevelopmentCFMultiError) AllErrors

func (m RemoteDevelopmentCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RemoteDevelopmentCFMultiError) Error

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

type RemoteDevelopmentCFValidationError

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

RemoteDevelopmentCFValidationError is the validation error returned by RemoteDevelopmentCF.Validate if the designated constraints aren't met.

func (RemoteDevelopmentCFValidationError) Cause

Cause function returns cause value.

func (RemoteDevelopmentCFValidationError) Error

Error satisfies the builtin error interface

func (RemoteDevelopmentCFValidationError) ErrorName

ErrorName returns error name.

func (RemoteDevelopmentCFValidationError) Field

Field function returns field value.

func (RemoteDevelopmentCFValidationError) Key

Key function returns key value.

func (RemoteDevelopmentCFValidationError) Reason

Reason function returns reason value.

type Resource

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

func (*Resource) Descriptor deprecated

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

Deprecated: Use Resource.ProtoReflect.Descriptor instead.

func (*Resource) GetCpu

func (x *Resource) GetCpu() string

func (*Resource) GetMemory

func (x *Resource) GetMemory() string

func (*Resource) ProtoMessage

func (*Resource) ProtoMessage()

func (*Resource) ProtoReflect

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

func (*Resource) Reset

func (x *Resource) Reset()

func (*Resource) String

func (x *Resource) String() string

func (*Resource) Validate

func (m *Resource) Validate() error

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

func (m *Resource) ValidateAll() error

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

type ResourceMultiError

type ResourceMultiError []error

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

func (ResourceMultiError) AllErrors

func (m ResourceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResourceMultiError) Error

func (m ResourceMultiError) Error() string

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

type ResourceRequirements

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

func (*ResourceRequirements) Descriptor deprecated

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

Deprecated: Use ResourceRequirements.ProtoReflect.Descriptor instead.

func (*ResourceRequirements) GetLimits

func (x *ResourceRequirements) GetLimits() *Resource

func (*ResourceRequirements) GetRequests

func (x *ResourceRequirements) GetRequests() *Resource

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 ResourceValidationError

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

ResourceValidationError is the validation error returned by Resource.Validate if the designated constraints aren't met.

func (ResourceValidationError) Cause

func (e ResourceValidationError) Cause() error

Cause function returns cause value.

func (ResourceValidationError) Error

func (e ResourceValidationError) Error() string

Error satisfies the builtin error interface

func (ResourceValidationError) ErrorName

func (e ResourceValidationError) ErrorName() string

ErrorName returns error name.

func (ResourceValidationError) Field

func (e ResourceValidationError) Field() string

Field function returns field value.

func (ResourceValidationError) Key

func (e ResourceValidationError) Key() bool

Key function returns key value.

func (ResourceValidationError) Reason

func (e ResourceValidationError) Reason() string

Reason function returns reason value.

type UserAccessAsAgentCF

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

func (*UserAccessAsAgentCF) Descriptor deprecated

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

Deprecated: Use UserAccessAsAgentCF.ProtoReflect.Descriptor instead.

func (*UserAccessAsAgentCF) ProtoMessage

func (*UserAccessAsAgentCF) ProtoMessage()

func (*UserAccessAsAgentCF) ProtoReflect

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

func (*UserAccessAsAgentCF) Reset

func (x *UserAccessAsAgentCF) Reset()

func (*UserAccessAsAgentCF) String

func (x *UserAccessAsAgentCF) String() string

func (*UserAccessAsAgentCF) Validate

func (m *UserAccessAsAgentCF) Validate() error

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

func (m *UserAccessAsAgentCF) ValidateAll() error

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

type UserAccessAsAgentCFMultiError

type UserAccessAsAgentCFMultiError []error

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

func (UserAccessAsAgentCFMultiError) AllErrors

func (m UserAccessAsAgentCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessAsAgentCFMultiError) Error

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

type UserAccessAsAgentCFValidationError

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

UserAccessAsAgentCFValidationError is the validation error returned by UserAccessAsAgentCF.Validate if the designated constraints aren't met.

func (UserAccessAsAgentCFValidationError) Cause

Cause function returns cause value.

func (UserAccessAsAgentCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessAsAgentCFValidationError) ErrorName

ErrorName returns error name.

func (UserAccessAsAgentCFValidationError) Field

Field function returns field value.

func (UserAccessAsAgentCFValidationError) Key

Key function returns key value.

func (UserAccessAsAgentCFValidationError) Reason

Reason function returns reason value.

type UserAccessAsCF

type UserAccessAsCF struct {

	// Types that are assignable to As:
	//
	//	*UserAccessAsCF_Agent
	//	*UserAccessAsCF_User
	As isUserAccessAsCF_As `protobuf_oneof:"as"`
	// contains filtered or unexported fields
}

func (*UserAccessAsCF) Descriptor deprecated

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

Deprecated: Use UserAccessAsCF.ProtoReflect.Descriptor instead.

func (*UserAccessAsCF) GetAgent

func (x *UserAccessAsCF) GetAgent() *UserAccessAsAgentCF

func (*UserAccessAsCF) GetAs

func (m *UserAccessAsCF) GetAs() isUserAccessAsCF_As

func (*UserAccessAsCF) GetUser

func (x *UserAccessAsCF) GetUser() *UserAccessAsUserCF

func (*UserAccessAsCF) ProtoMessage

func (*UserAccessAsCF) ProtoMessage()

func (*UserAccessAsCF) ProtoReflect

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

func (*UserAccessAsCF) Reset

func (x *UserAccessAsCF) Reset()

func (*UserAccessAsCF) String

func (x *UserAccessAsCF) String() string

func (*UserAccessAsCF) Validate

func (m *UserAccessAsCF) Validate() error

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

func (m *UserAccessAsCF) ValidateAll() error

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

type UserAccessAsCFMultiError

type UserAccessAsCFMultiError []error

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

func (UserAccessAsCFMultiError) AllErrors

func (m UserAccessAsCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessAsCFMultiError) Error

func (m UserAccessAsCFMultiError) Error() string

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

type UserAccessAsCFValidationError

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

UserAccessAsCFValidationError is the validation error returned by UserAccessAsCF.Validate if the designated constraints aren't met.

func (UserAccessAsCFValidationError) Cause

Cause function returns cause value.

func (UserAccessAsCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessAsCFValidationError) ErrorName

func (e UserAccessAsCFValidationError) ErrorName() string

ErrorName returns error name.

func (UserAccessAsCFValidationError) Field

Field function returns field value.

func (UserAccessAsCFValidationError) Key

Key function returns key value.

func (UserAccessAsCFValidationError) Reason

Reason function returns reason value.

type UserAccessAsCF_Agent

type UserAccessAsCF_Agent struct {
	Agent *UserAccessAsAgentCF `protobuf:"bytes,1,opt,name=agent,proto3,oneof"`
}

type UserAccessAsCF_User

type UserAccessAsCF_User struct {
	User *UserAccessAsUserCF `protobuf:"bytes,3,opt,name=user,proto3,oneof"`
}

type UserAccessAsUserCF

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

func (*UserAccessAsUserCF) Descriptor deprecated

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

Deprecated: Use UserAccessAsUserCF.ProtoReflect.Descriptor instead.

func (*UserAccessAsUserCF) ProtoMessage

func (*UserAccessAsUserCF) ProtoMessage()

func (*UserAccessAsUserCF) ProtoReflect

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

func (*UserAccessAsUserCF) Reset

func (x *UserAccessAsUserCF) Reset()

func (*UserAccessAsUserCF) String

func (x *UserAccessAsUserCF) String() string

func (*UserAccessAsUserCF) Validate

func (m *UserAccessAsUserCF) Validate() error

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

func (m *UserAccessAsUserCF) ValidateAll() error

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

type UserAccessAsUserCFMultiError

type UserAccessAsUserCFMultiError []error

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

func (UserAccessAsUserCFMultiError) AllErrors

func (m UserAccessAsUserCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessAsUserCFMultiError) Error

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

type UserAccessAsUserCFValidationError

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

UserAccessAsUserCFValidationError is the validation error returned by UserAccessAsUserCF.Validate if the designated constraints aren't met.

func (UserAccessAsUserCFValidationError) Cause

Cause function returns cause value.

func (UserAccessAsUserCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessAsUserCFValidationError) ErrorName

ErrorName returns error name.

func (UserAccessAsUserCFValidationError) Field

Field function returns field value.

func (UserAccessAsUserCFValidationError) Key

Key function returns key value.

func (UserAccessAsUserCFValidationError) Reason

Reason function returns reason value.

type UserAccessCF

type UserAccessCF struct {
	AccessAs *UserAccessAsCF        `protobuf:"bytes,1,opt,name=access_as,proto3" json:"access_as,omitempty"`
	Projects []*UserAccessProjectCF `protobuf:"bytes,2,rep,name=projects,proto3" json:"projects,omitempty"`
	Groups   []*UserAccessGroupCF   `protobuf:"bytes,3,rep,name=groups,proto3" json:"groups,omitempty"`
	// contains filtered or unexported fields
}

func (*UserAccessCF) Descriptor deprecated

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

Deprecated: Use UserAccessCF.ProtoReflect.Descriptor instead.

func (*UserAccessCF) GetAccessAs

func (x *UserAccessCF) GetAccessAs() *UserAccessAsCF

func (*UserAccessCF) GetGroups

func (x *UserAccessCF) GetGroups() []*UserAccessGroupCF

func (*UserAccessCF) GetProjects

func (x *UserAccessCF) GetProjects() []*UserAccessProjectCF

func (*UserAccessCF) ProtoMessage

func (*UserAccessCF) ProtoMessage()

func (*UserAccessCF) ProtoReflect

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

func (*UserAccessCF) Reset

func (x *UserAccessCF) Reset()

func (*UserAccessCF) String

func (x *UserAccessCF) String() string

func (*UserAccessCF) Validate

func (m *UserAccessCF) Validate() error

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

func (m *UserAccessCF) ValidateAll() error

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

type UserAccessCFMultiError

type UserAccessCFMultiError []error

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

func (UserAccessCFMultiError) AllErrors

func (m UserAccessCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessCFMultiError) Error

func (m UserAccessCFMultiError) Error() string

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

type UserAccessCFValidationError

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

UserAccessCFValidationError is the validation error returned by UserAccessCF.Validate if the designated constraints aren't met.

func (UserAccessCFValidationError) Cause

Cause function returns cause value.

func (UserAccessCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessCFValidationError) ErrorName

func (e UserAccessCFValidationError) ErrorName() string

ErrorName returns error name.

func (UserAccessCFValidationError) Field

Field function returns field value.

func (UserAccessCFValidationError) Key

Key function returns key value.

func (UserAccessCFValidationError) Reason

Reason function returns reason value.

type UserAccessGroupCF

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

func (*UserAccessGroupCF) Descriptor deprecated

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

Deprecated: Use UserAccessGroupCF.ProtoReflect.Descriptor instead.

func (*UserAccessGroupCF) GetId

func (x *UserAccessGroupCF) GetId() string

func (*UserAccessGroupCF) ProtoMessage

func (*UserAccessGroupCF) ProtoMessage()

func (*UserAccessGroupCF) ProtoReflect

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

func (*UserAccessGroupCF) Reset

func (x *UserAccessGroupCF) Reset()

func (*UserAccessGroupCF) String

func (x *UserAccessGroupCF) String() string

func (*UserAccessGroupCF) Validate

func (m *UserAccessGroupCF) Validate() error

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

func (m *UserAccessGroupCF) ValidateAll() error

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

type UserAccessGroupCFMultiError

type UserAccessGroupCFMultiError []error

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

func (UserAccessGroupCFMultiError) AllErrors

func (m UserAccessGroupCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessGroupCFMultiError) Error

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

type UserAccessGroupCFValidationError

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

UserAccessGroupCFValidationError is the validation error returned by UserAccessGroupCF.Validate if the designated constraints aren't met.

func (UserAccessGroupCFValidationError) Cause

Cause function returns cause value.

func (UserAccessGroupCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessGroupCFValidationError) ErrorName

ErrorName returns error name.

func (UserAccessGroupCFValidationError) Field

Field function returns field value.

func (UserAccessGroupCFValidationError) Key

Key function returns key value.

func (UserAccessGroupCFValidationError) Reason

Reason function returns reason value.

type UserAccessProjectCF

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

func (*UserAccessProjectCF) Descriptor deprecated

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

Deprecated: Use UserAccessProjectCF.ProtoReflect.Descriptor instead.

func (*UserAccessProjectCF) GetId

func (x *UserAccessProjectCF) GetId() string

func (*UserAccessProjectCF) ProtoMessage

func (*UserAccessProjectCF) ProtoMessage()

func (*UserAccessProjectCF) ProtoReflect

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

func (*UserAccessProjectCF) Reset

func (x *UserAccessProjectCF) Reset()

func (*UserAccessProjectCF) String

func (x *UserAccessProjectCF) String() string

func (*UserAccessProjectCF) Validate

func (m *UserAccessProjectCF) Validate() error

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

func (m *UserAccessProjectCF) ValidateAll() error

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

type UserAccessProjectCFMultiError

type UserAccessProjectCFMultiError []error

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

func (UserAccessProjectCFMultiError) AllErrors

func (m UserAccessProjectCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserAccessProjectCFMultiError) Error

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

type UserAccessProjectCFValidationError

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

UserAccessProjectCFValidationError is the validation error returned by UserAccessProjectCF.Validate if the designated constraints aren't met.

func (UserAccessProjectCFValidationError) Cause

Cause function returns cause value.

func (UserAccessProjectCFValidationError) Error

Error satisfies the builtin error interface

func (UserAccessProjectCFValidationError) ErrorName

ErrorName returns error name.

func (UserAccessProjectCFValidationError) Field

Field function returns field value.

func (UserAccessProjectCFValidationError) Key

Key function returns key value.

func (UserAccessProjectCFValidationError) Reason

Reason function returns reason value.

type VulnerabilityReport

type VulnerabilityReport struct {
	Namespaces []string                   `protobuf:"bytes,1,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
	Filters    []*ContainerScanningFilter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"`
	// contains filtered or unexported fields
}

func (*VulnerabilityReport) Descriptor deprecated

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

Deprecated: Use VulnerabilityReport.ProtoReflect.Descriptor instead.

func (*VulnerabilityReport) GetFilters

func (x *VulnerabilityReport) GetFilters() []*ContainerScanningFilter

func (*VulnerabilityReport) GetNamespaces

func (x *VulnerabilityReport) GetNamespaces() []string

func (*VulnerabilityReport) ProtoMessage

func (*VulnerabilityReport) ProtoMessage()

func (*VulnerabilityReport) ProtoReflect

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

func (*VulnerabilityReport) Reset

func (x *VulnerabilityReport) Reset()

func (*VulnerabilityReport) String

func (x *VulnerabilityReport) String() string

func (*VulnerabilityReport) Validate

func (m *VulnerabilityReport) Validate() error

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

func (m *VulnerabilityReport) ValidateAll() error

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

type VulnerabilityReportMultiError

type VulnerabilityReportMultiError []error

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

func (VulnerabilityReportMultiError) AllErrors

func (m VulnerabilityReportMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VulnerabilityReportMultiError) Error

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

type VulnerabilityReportValidationError

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

VulnerabilityReportValidationError is the validation error returned by VulnerabilityReport.Validate if the designated constraints aren't met.

func (VulnerabilityReportValidationError) Cause

Cause function returns cause value.

func (VulnerabilityReportValidationError) Error

Error satisfies the builtin error interface

func (VulnerabilityReportValidationError) ErrorName

ErrorName returns error name.

func (VulnerabilityReportValidationError) Field

Field function returns field value.

func (VulnerabilityReportValidationError) Key

Key function returns key value.

func (VulnerabilityReportValidationError) Reason

Reason function returns reason value.

type WorkspaceNetworkPolicy

type WorkspaceNetworkPolicy struct {
	Enabled *bool                           `protobuf:"varint,1,opt,name=enabled,proto3,oneof" json:"enabled,omitempty"`
	Egress  []*WorkspaceNetworkPolicyEgress `protobuf:"bytes,2,rep,name=egress,proto3" json:"egress,omitempty"`
	// contains filtered or unexported fields
}

func (*WorkspaceNetworkPolicy) Descriptor deprecated

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

Deprecated: Use WorkspaceNetworkPolicy.ProtoReflect.Descriptor instead.

func (*WorkspaceNetworkPolicy) GetEgress

func (*WorkspaceNetworkPolicy) GetEnabled

func (x *WorkspaceNetworkPolicy) GetEnabled() bool

func (*WorkspaceNetworkPolicy) ProtoMessage

func (*WorkspaceNetworkPolicy) ProtoMessage()

func (*WorkspaceNetworkPolicy) ProtoReflect

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

func (*WorkspaceNetworkPolicy) Reset

func (x *WorkspaceNetworkPolicy) Reset()

func (*WorkspaceNetworkPolicy) String

func (x *WorkspaceNetworkPolicy) String() string

func (*WorkspaceNetworkPolicy) Validate

func (m *WorkspaceNetworkPolicy) Validate() error

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

func (m *WorkspaceNetworkPolicy) ValidateAll() error

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

type WorkspaceNetworkPolicyEgress

type WorkspaceNetworkPolicyEgress struct {
	Allow  string   `protobuf:"bytes,1,opt,name=allow,proto3" json:"allow,omitempty"`
	Except []string `protobuf:"bytes,2,rep,name=except,proto3" json:"except,omitempty"`
	// contains filtered or unexported fields
}

func (*WorkspaceNetworkPolicyEgress) Descriptor deprecated

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

Deprecated: Use WorkspaceNetworkPolicyEgress.ProtoReflect.Descriptor instead.

func (*WorkspaceNetworkPolicyEgress) GetAllow

func (x *WorkspaceNetworkPolicyEgress) GetAllow() string

func (*WorkspaceNetworkPolicyEgress) GetExcept

func (x *WorkspaceNetworkPolicyEgress) GetExcept() []string

func (*WorkspaceNetworkPolicyEgress) ProtoMessage

func (*WorkspaceNetworkPolicyEgress) ProtoMessage()

func (*WorkspaceNetworkPolicyEgress) ProtoReflect

func (*WorkspaceNetworkPolicyEgress) Reset

func (x *WorkspaceNetworkPolicyEgress) Reset()

func (*WorkspaceNetworkPolicyEgress) String

func (*WorkspaceNetworkPolicyEgress) Validate

func (m *WorkspaceNetworkPolicyEgress) Validate() error

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

func (m *WorkspaceNetworkPolicyEgress) ValidateAll() error

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

type WorkspaceNetworkPolicyEgressMultiError

type WorkspaceNetworkPolicyEgressMultiError []error

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

func (WorkspaceNetworkPolicyEgressMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (WorkspaceNetworkPolicyEgressMultiError) Error

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

type WorkspaceNetworkPolicyEgressValidationError

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

WorkspaceNetworkPolicyEgressValidationError is the validation error returned by WorkspaceNetworkPolicyEgress.Validate if the designated constraints aren't met.

func (WorkspaceNetworkPolicyEgressValidationError) Cause

Cause function returns cause value.

func (WorkspaceNetworkPolicyEgressValidationError) Error

Error satisfies the builtin error interface

func (WorkspaceNetworkPolicyEgressValidationError) ErrorName

ErrorName returns error name.

func (WorkspaceNetworkPolicyEgressValidationError) Field

Field function returns field value.

func (WorkspaceNetworkPolicyEgressValidationError) Key

Key function returns key value.

func (WorkspaceNetworkPolicyEgressValidationError) Reason

Reason function returns reason value.

type WorkspaceNetworkPolicyMultiError

type WorkspaceNetworkPolicyMultiError []error

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

func (WorkspaceNetworkPolicyMultiError) AllErrors

func (m WorkspaceNetworkPolicyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WorkspaceNetworkPolicyMultiError) Error

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

type WorkspaceNetworkPolicyValidationError

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

WorkspaceNetworkPolicyValidationError is the validation error returned by WorkspaceNetworkPolicy.Validate if the designated constraints aren't met.

func (WorkspaceNetworkPolicyValidationError) Cause

Cause function returns cause value.

func (WorkspaceNetworkPolicyValidationError) Error

Error satisfies the builtin error interface

func (WorkspaceNetworkPolicyValidationError) ErrorName

ErrorName returns error name.

func (WorkspaceNetworkPolicyValidationError) Field

Field function returns field value.

func (WorkspaceNetworkPolicyValidationError) Key

Key function returns key value.

func (WorkspaceNetworkPolicyValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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