kascfg

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_kascfg_kascfg_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AgentCF

type AgentCF struct {
	Listen               *ListenAgentCF        `protobuf:"bytes,1,opt,name=listen,proto3" json:"listen,omitempty"`
	Configuration        *AgentConfigurationCF `protobuf:"bytes,2,opt,name=configuration,proto3" json:"configuration,omitempty"`
	Gitops               *GitopsCF             `protobuf:"bytes,3,opt,name=gitops,proto3" json:"gitops,omitempty"`
	InfoCacheTtl         *durationpb.Duration  `protobuf:"bytes,4,opt,name=info_cache_ttl,proto3" json:"info_cache_ttl,omitempty"`
	InfoCacheErrorTtl    *durationpb.Duration  `protobuf:"bytes,5,opt,name=info_cache_error_ttl,proto3" json:"info_cache_error_ttl,omitempty"`
	RedisConnInfoTtl     *durationpb.Duration  `protobuf:"bytes,7,opt,name=redis_conn_info_ttl,proto3" json:"redis_conn_info_ttl,omitempty"`
	RedisConnInfoRefresh *durationpb.Duration  `protobuf:"bytes,8,opt,name=redis_conn_info_refresh,proto3" json:"redis_conn_info_refresh,omitempty"`
	RedisConnInfoGc      *durationpb.Duration  `protobuf:"bytes,9,opt,name=redis_conn_info_gc,proto3" json:"redis_conn_info_gc,omitempty"`
	KubernetesApi        *KubernetesApiCF      `protobuf:"bytes,10,opt,name=kubernetes_api,proto3" json:"kubernetes_api,omitempty"`
	RemoteDevelopment    *RemoteDevelopmentCF  `protobuf:"bytes,11,opt,name=remote_development,proto3" json:"remote_development,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentCF) Descriptor deprecated

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

Deprecated: Use AgentCF.ProtoReflect.Descriptor instead.

func (*AgentCF) GetConfiguration

func (x *AgentCF) GetConfiguration() *AgentConfigurationCF

func (*AgentCF) GetGitops

func (x *AgentCF) GetGitops() *GitopsCF

func (*AgentCF) GetInfoCacheErrorTtl

func (x *AgentCF) GetInfoCacheErrorTtl() *durationpb.Duration

func (*AgentCF) GetInfoCacheTtl

func (x *AgentCF) GetInfoCacheTtl() *durationpb.Duration

func (*AgentCF) GetKubernetesApi

func (x *AgentCF) GetKubernetesApi() *KubernetesApiCF

func (*AgentCF) GetListen

func (x *AgentCF) GetListen() *ListenAgentCF

func (*AgentCF) GetRedisConnInfoGc

func (x *AgentCF) GetRedisConnInfoGc() *durationpb.Duration

func (*AgentCF) GetRedisConnInfoRefresh

func (x *AgentCF) GetRedisConnInfoRefresh() *durationpb.Duration

func (*AgentCF) GetRedisConnInfoTtl

func (x *AgentCF) GetRedisConnInfoTtl() *durationpb.Duration

func (*AgentCF) GetRemoteDevelopment

func (x *AgentCF) GetRemoteDevelopment() *RemoteDevelopmentCF

func (*AgentCF) ProtoMessage

func (*AgentCF) ProtoMessage()

func (*AgentCF) ProtoReflect

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

func (*AgentCF) Reset

func (x *AgentCF) Reset()

func (*AgentCF) String

func (x *AgentCF) String() string

func (*AgentCF) Validate

func (m *AgentCF) Validate() error

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

func (m *AgentCF) ValidateAll() error

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

type AgentCFMultiError

type AgentCFMultiError []error

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

func (AgentCFMultiError) AllErrors

func (m AgentCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AgentCFMultiError) Error

func (m AgentCFMultiError) Error() string

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

type AgentCFValidationError

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

AgentCFValidationError is the validation error returned by AgentCF.Validate if the designated constraints aren't met.

func (AgentCFValidationError) Cause

func (e AgentCFValidationError) Cause() error

Cause function returns cause value.

func (AgentCFValidationError) Error

func (e AgentCFValidationError) Error() string

Error satisfies the builtin error interface

func (AgentCFValidationError) ErrorName

func (e AgentCFValidationError) ErrorName() string

ErrorName returns error name.

func (AgentCFValidationError) Field

func (e AgentCFValidationError) Field() string

Field function returns field value.

func (AgentCFValidationError) Key

func (e AgentCFValidationError) Key() bool

Key function returns key value.

func (AgentCFValidationError) Reason

func (e AgentCFValidationError) Reason() string

Reason function returns reason value.

type AgentConfigurationCF

type AgentConfigurationCF struct {
	PollPeriod               *durationpb.Duration `protobuf:"bytes,1,opt,name=poll_period,proto3" json:"poll_period,omitempty"`
	MaxConfigurationFileSize uint32               `protobuf:"varint,2,opt,name=max_configuration_file_size,proto3" json:"max_configuration_file_size,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentConfigurationCF) Descriptor deprecated

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

Deprecated: Use AgentConfigurationCF.ProtoReflect.Descriptor instead.

func (*AgentConfigurationCF) GetMaxConfigurationFileSize

func (x *AgentConfigurationCF) GetMaxConfigurationFileSize() uint32

func (*AgentConfigurationCF) GetPollPeriod

func (x *AgentConfigurationCF) GetPollPeriod() *durationpb.Duration

func (*AgentConfigurationCF) ProtoMessage

func (*AgentConfigurationCF) ProtoMessage()

func (*AgentConfigurationCF) ProtoReflect

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

func (*AgentConfigurationCF) Reset

func (x *AgentConfigurationCF) Reset()

func (*AgentConfigurationCF) String

func (x *AgentConfigurationCF) String() string

func (*AgentConfigurationCF) Validate

func (m *AgentConfigurationCF) Validate() error

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

func (m *AgentConfigurationCF) ValidateAll() error

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

type AgentConfigurationCFMultiError

type AgentConfigurationCFMultiError []error

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

func (AgentConfigurationCFMultiError) AllErrors

func (m AgentConfigurationCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AgentConfigurationCFMultiError) Error

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

type AgentConfigurationCFValidationError

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

AgentConfigurationCFValidationError is the validation error returned by AgentConfigurationCF.Validate if the designated constraints aren't met.

func (AgentConfigurationCFValidationError) Cause

Cause function returns cause value.

func (AgentConfigurationCFValidationError) Error

Error satisfies the builtin error interface

func (AgentConfigurationCFValidationError) ErrorName

ErrorName returns error name.

func (AgentConfigurationCFValidationError) Field

Field function returns field value.

func (AgentConfigurationCFValidationError) Key

Key function returns key value.

func (AgentConfigurationCFValidationError) Reason

Reason function returns reason value.

type ApiCF

type ApiCF struct {
	Listen *ListenApiCF `protobuf:"bytes,1,opt,name=listen,proto3" json:"listen,omitempty"`
	// contains filtered or unexported fields
}

func (*ApiCF) Descriptor deprecated

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

Deprecated: Use ApiCF.ProtoReflect.Descriptor instead.

func (*ApiCF) GetListen

func (x *ApiCF) GetListen() *ListenApiCF

func (*ApiCF) ProtoMessage

func (*ApiCF) ProtoMessage()

func (*ApiCF) ProtoReflect

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

func (*ApiCF) Reset

func (x *ApiCF) Reset()

func (*ApiCF) String

func (x *ApiCF) String() string

func (*ApiCF) Validate

func (m *ApiCF) Validate() error

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

func (m *ApiCF) ValidateAll() error

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

type ApiCFMultiError

type ApiCFMultiError []error

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

func (ApiCFMultiError) AllErrors

func (m ApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApiCFMultiError) Error

func (m ApiCFMultiError) Error() string

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

type ApiCFValidationError

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

ApiCFValidationError is the validation error returned by ApiCF.Validate if the designated constraints aren't met.

func (ApiCFValidationError) Cause

func (e ApiCFValidationError) Cause() error

Cause function returns cause value.

func (ApiCFValidationError) Error

func (e ApiCFValidationError) Error() string

Error satisfies the builtin error interface

func (ApiCFValidationError) ErrorName

func (e ApiCFValidationError) ErrorName() string

ErrorName returns error name.

func (ApiCFValidationError) Field

func (e ApiCFValidationError) Field() string

Field function returns field value.

func (ApiCFValidationError) Key

func (e ApiCFValidationError) Key() bool

Key function returns key value.

func (ApiCFValidationError) Reason

func (e ApiCFValidationError) Reason() string

Reason function returns reason value.

type ConfigCF

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

func (*ConfigCF) Descriptor deprecated

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

Deprecated: Use ConfigCF.ProtoReflect.Descriptor instead.

func (*ConfigCF) GetCommand

func (x *ConfigCF) GetCommand() string

func (*ConfigCF) ProtoMessage

func (*ConfigCF) ProtoMessage()

func (*ConfigCF) ProtoReflect

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

func (*ConfigCF) Reset

func (x *ConfigCF) Reset()

func (*ConfigCF) String

func (x *ConfigCF) String() string

func (*ConfigCF) Validate

func (m *ConfigCF) Validate() error

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

func (m *ConfigCF) ValidateAll() error

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

type ConfigCFMultiError

type ConfigCFMultiError []error

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

func (ConfigCFMultiError) AllErrors

func (m ConfigCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigCFMultiError) Error

func (m ConfigCFMultiError) Error() string

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

type ConfigCFValidationError

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

ConfigCFValidationError is the validation error returned by ConfigCF.Validate if the designated constraints aren't met.

func (ConfigCFValidationError) Cause

func (e ConfigCFValidationError) Cause() error

Cause function returns cause value.

func (ConfigCFValidationError) Error

func (e ConfigCFValidationError) Error() string

Error satisfies the builtin error interface

func (ConfigCFValidationError) ErrorName

func (e ConfigCFValidationError) ErrorName() string

ErrorName returns error name.

func (ConfigCFValidationError) Field

func (e ConfigCFValidationError) Field() string

Field function returns field value.

func (ConfigCFValidationError) Key

func (e ConfigCFValidationError) Key() bool

Key function returns key value.

func (ConfigCFValidationError) Reason

func (e ConfigCFValidationError) Reason() string

Reason function returns reason value.

type ConfigurationFile

type ConfigurationFile struct {
	Gitlab        *GitLabCF        `protobuf:"bytes,1,opt,name=gitlab,proto3" json:"gitlab,omitempty"`
	Agent         *AgentCF         `protobuf:"bytes,2,opt,name=agent,proto3" json:"agent,omitempty"`
	Observability *ObservabilityCF `protobuf:"bytes,3,opt,name=observability,proto3" json:"observability,omitempty"`
	Gitaly        *GitalyCF        `protobuf:"bytes,4,opt,name=gitaly,proto3" json:"gitaly,omitempty"`
	Redis         *RedisCF         `protobuf:"bytes,5,opt,name=redis,proto3" json:"redis,omitempty"`
	Api           *ApiCF           `protobuf:"bytes,6,opt,name=api,proto3" json:"api,omitempty"`
	PrivateApi    *PrivateApiCF    `protobuf:"bytes,7,opt,name=private_api,proto3" json:"private_api,omitempty"`
	Config        *ConfigCF        `protobuf:"bytes,8,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigurationFile) Descriptor deprecated

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

Deprecated: Use ConfigurationFile.ProtoReflect.Descriptor instead.

func (*ConfigurationFile) GetAgent

func (x *ConfigurationFile) GetAgent() *AgentCF

func (*ConfigurationFile) GetApi

func (x *ConfigurationFile) GetApi() *ApiCF

func (*ConfigurationFile) GetConfig

func (x *ConfigurationFile) GetConfig() *ConfigCF

func (*ConfigurationFile) GetGitaly

func (x *ConfigurationFile) GetGitaly() *GitalyCF

func (*ConfigurationFile) GetGitlab

func (x *ConfigurationFile) GetGitlab() *GitLabCF

func (*ConfigurationFile) GetObservability

func (x *ConfigurationFile) GetObservability() *ObservabilityCF

func (*ConfigurationFile) GetPrivateApi

func (x *ConfigurationFile) GetPrivateApi() *PrivateApiCF

func (*ConfigurationFile) GetRedis

func (x *ConfigurationFile) GetRedis() *RedisCF

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.

func (*ConfigurationFile) ValidateExtra

func (x *ConfigurationFile) ValidateExtra() error

ValidateExtra performs extra validation checks. Should be run after defaults have been applied.

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 GitLabCF

type GitLabCF struct {
	Address                  string                  `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	ExternalUrl              *string                 `protobuf:"bytes,5,opt,name=external_url,proto3,oneof" json:"external_url,omitempty"`
	AuthenticationSecretFile string                  `protobuf:"bytes,2,opt,name=authentication_secret_file,proto3" json:"authentication_secret_file,omitempty"`
	CaCertificateFile        string                  `protobuf:"bytes,3,opt,name=ca_certificate_file,proto3" json:"ca_certificate_file,omitempty"`
	ApiRateLimit             *TokenBucketRateLimitCF `protobuf:"bytes,4,opt,name=api_rate_limit,proto3" json:"api_rate_limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GitLabCF) Descriptor deprecated

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

Deprecated: Use GitLabCF.ProtoReflect.Descriptor instead.

func (*GitLabCF) GetAddress

func (x *GitLabCF) GetAddress() string

func (*GitLabCF) GetApiRateLimit

func (x *GitLabCF) GetApiRateLimit() *TokenBucketRateLimitCF

func (*GitLabCF) GetAuthenticationSecretFile

func (x *GitLabCF) GetAuthenticationSecretFile() string

func (*GitLabCF) GetCaCertificateFile

func (x *GitLabCF) GetCaCertificateFile() string

func (*GitLabCF) GetExternalUrl

func (x *GitLabCF) GetExternalUrl() string

func (*GitLabCF) ProtoMessage

func (*GitLabCF) ProtoMessage()

func (*GitLabCF) ProtoReflect

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

func (*GitLabCF) Reset

func (x *GitLabCF) Reset()

func (*GitLabCF) String

func (x *GitLabCF) String() string

func (*GitLabCF) Validate

func (m *GitLabCF) Validate() error

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

func (m *GitLabCF) ValidateAll() error

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

type GitLabCFMultiError

type GitLabCFMultiError []error

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

func (GitLabCFMultiError) AllErrors

func (m GitLabCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitLabCFMultiError) Error

func (m GitLabCFMultiError) Error() string

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

type GitLabCFValidationError

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

GitLabCFValidationError is the validation error returned by GitLabCF.Validate if the designated constraints aren't met.

func (GitLabCFValidationError) Cause

func (e GitLabCFValidationError) Cause() error

Cause function returns cause value.

func (GitLabCFValidationError) Error

func (e GitLabCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitLabCFValidationError) ErrorName

func (e GitLabCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitLabCFValidationError) Field

func (e GitLabCFValidationError) Field() string

Field function returns field value.

func (GitLabCFValidationError) Key

func (e GitLabCFValidationError) Key() bool

Key function returns key value.

func (GitLabCFValidationError) Reason

func (e GitLabCFValidationError) Reason() string

Reason function returns reason value.

type GitalyCF

type GitalyCF struct {
	GlobalApiRateLimit    *TokenBucketRateLimitCF `protobuf:"bytes,1,opt,name=global_api_rate_limit,proto3" json:"global_api_rate_limit,omitempty"`
	PerServerApiRateLimit *TokenBucketRateLimitCF `protobuf:"bytes,2,opt,name=per_server_api_rate_limit,proto3" json:"per_server_api_rate_limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GitalyCF) Descriptor deprecated

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

Deprecated: Use GitalyCF.ProtoReflect.Descriptor instead.

func (*GitalyCF) GetGlobalApiRateLimit

func (x *GitalyCF) GetGlobalApiRateLimit() *TokenBucketRateLimitCF

func (*GitalyCF) GetPerServerApiRateLimit

func (x *GitalyCF) GetPerServerApiRateLimit() *TokenBucketRateLimitCF

func (*GitalyCF) ProtoMessage

func (*GitalyCF) ProtoMessage()

func (*GitalyCF) ProtoReflect

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

func (*GitalyCF) Reset

func (x *GitalyCF) Reset()

func (*GitalyCF) String

func (x *GitalyCF) String() string

func (*GitalyCF) Validate

func (m *GitalyCF) Validate() error

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

func (m *GitalyCF) ValidateAll() error

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

type GitalyCFMultiError

type GitalyCFMultiError []error

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

func (GitalyCFMultiError) AllErrors

func (m GitalyCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GitalyCFMultiError) Error

func (m GitalyCFMultiError) Error() string

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

type GitalyCFValidationError

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

GitalyCFValidationError is the validation error returned by GitalyCF.Validate if the designated constraints aren't met.

func (GitalyCFValidationError) Cause

func (e GitalyCFValidationError) Cause() error

Cause function returns cause value.

func (GitalyCFValidationError) Error

func (e GitalyCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitalyCFValidationError) ErrorName

func (e GitalyCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitalyCFValidationError) Field

func (e GitalyCFValidationError) Field() string

Field function returns field value.

func (GitalyCFValidationError) Key

func (e GitalyCFValidationError) Key() bool

Key function returns key value.

func (GitalyCFValidationError) Reason

func (e GitalyCFValidationError) Reason() string

Reason function returns reason value.

type GitopsCF

type GitopsCF struct {
	PollPeriod               *durationpb.Duration `protobuf:"bytes,1,opt,name=poll_period,proto3" json:"poll_period,omitempty"`
	ProjectInfoCacheTtl      *durationpb.Duration `protobuf:"bytes,2,opt,name=project_info_cache_ttl,proto3" json:"project_info_cache_ttl,omitempty"`
	ProjectInfoCacheErrorTtl *durationpb.Duration `protobuf:"bytes,3,opt,name=project_info_cache_error_ttl,proto3" json:"project_info_cache_error_ttl,omitempty"`
	MaxManifestFileSize      uint32               `protobuf:"varint,4,opt,name=max_manifest_file_size,proto3" json:"max_manifest_file_size,omitempty"`
	MaxTotalManifestFileSize uint32               `protobuf:"varint,5,opt,name=max_total_manifest_file_size,proto3" json:"max_total_manifest_file_size,omitempty"`
	MaxNumberOfPaths         uint32               `protobuf:"varint,6,opt,name=max_number_of_paths,proto3" json:"max_number_of_paths,omitempty"`
	MaxNumberOfFiles         uint32               `protobuf:"varint,7,opt,name=max_number_of_files,proto3" json:"max_number_of_files,omitempty"`
	// contains filtered or unexported fields
}

func (*GitopsCF) Descriptor deprecated

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

Deprecated: Use GitopsCF.ProtoReflect.Descriptor instead.

func (*GitopsCF) GetMaxManifestFileSize

func (x *GitopsCF) GetMaxManifestFileSize() uint32

func (*GitopsCF) GetMaxNumberOfFiles

func (x *GitopsCF) GetMaxNumberOfFiles() uint32

func (*GitopsCF) GetMaxNumberOfPaths

func (x *GitopsCF) GetMaxNumberOfPaths() uint32

func (*GitopsCF) GetMaxTotalManifestFileSize

func (x *GitopsCF) GetMaxTotalManifestFileSize() uint32

func (*GitopsCF) GetPollPeriod

func (x *GitopsCF) GetPollPeriod() *durationpb.Duration

func (*GitopsCF) GetProjectInfoCacheErrorTtl

func (x *GitopsCF) GetProjectInfoCacheErrorTtl() *durationpb.Duration

func (*GitopsCF) GetProjectInfoCacheTtl

func (x *GitopsCF) GetProjectInfoCacheTtl() *durationpb.Duration

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 KubernetesApiCF

type KubernetesApiCF struct {
	Listen                    *ListenKubernetesApiCF `protobuf:"bytes,1,opt,name=listen,proto3" json:"listen,omitempty"`
	UrlPathPrefix             string                 `protobuf:"bytes,2,opt,name=url_path_prefix,proto3" json:"url_path_prefix,omitempty"`
	AllowedAgentCacheTtl      *durationpb.Duration   `protobuf:"bytes,3,opt,name=allowed_agent_cache_ttl,proto3" json:"allowed_agent_cache_ttl,omitempty"`
	AllowedAgentCacheErrorTtl *durationpb.Duration   `protobuf:"bytes,4,opt,name=allowed_agent_cache_error_ttl,proto3" json:"allowed_agent_cache_error_ttl,omitempty"`
	// contains filtered or unexported fields
}

func (*KubernetesApiCF) Descriptor deprecated

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

Deprecated: Use KubernetesApiCF.ProtoReflect.Descriptor instead.

func (*KubernetesApiCF) GetAllowedAgentCacheErrorTtl

func (x *KubernetesApiCF) GetAllowedAgentCacheErrorTtl() *durationpb.Duration

func (*KubernetesApiCF) GetAllowedAgentCacheTtl

func (x *KubernetesApiCF) GetAllowedAgentCacheTtl() *durationpb.Duration

func (*KubernetesApiCF) GetListen

func (x *KubernetesApiCF) GetListen() *ListenKubernetesApiCF

func (*KubernetesApiCF) GetUrlPathPrefix

func (x *KubernetesApiCF) GetUrlPathPrefix() string

func (*KubernetesApiCF) ProtoMessage

func (*KubernetesApiCF) ProtoMessage()

func (*KubernetesApiCF) ProtoReflect

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

func (*KubernetesApiCF) Reset

func (x *KubernetesApiCF) Reset()

func (*KubernetesApiCF) String

func (x *KubernetesApiCF) String() string

func (*KubernetesApiCF) Validate

func (m *KubernetesApiCF) Validate() error

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

func (m *KubernetesApiCF) ValidateAll() error

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

type KubernetesApiCFMultiError

type KubernetesApiCFMultiError []error

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

func (KubernetesApiCFMultiError) AllErrors

func (m KubernetesApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (KubernetesApiCFMultiError) Error

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

type KubernetesApiCFValidationError

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

KubernetesApiCFValidationError is the validation error returned by KubernetesApiCF.Validate if the designated constraints aren't met.

func (KubernetesApiCFValidationError) Cause

Cause function returns cause value.

func (KubernetesApiCFValidationError) Error

Error satisfies the builtin error interface

func (KubernetesApiCFValidationError) ErrorName

func (e KubernetesApiCFValidationError) ErrorName() string

ErrorName returns error name.

func (KubernetesApiCFValidationError) Field

Field function returns field value.

func (KubernetesApiCFValidationError) Key

Key function returns key value.

func (KubernetesApiCFValidationError) Reason

Reason function returns reason value.

type ListenAgentCF

type ListenAgentCF struct {
	Network                      *string              `protobuf:"bytes,1,opt,name=network,proto3,oneof" json:"network,omitempty"`
	Address                      string               `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Websocket                    bool                 `protobuf:"varint,3,opt,name=websocket,proto3" json:"websocket,omitempty"`
	CertificateFile              string               `protobuf:"bytes,4,opt,name=certificate_file,proto3" json:"certificate_file,omitempty"`
	KeyFile                      string               `protobuf:"bytes,5,opt,name=key_file,proto3" json:"key_file,omitempty"`
	ConnectionsPerTokenPerMinute uint32               `protobuf:"varint,6,opt,name=connections_per_token_per_minute,proto3" json:"connections_per_token_per_minute,omitempty"`
	MaxConnectionAge             *durationpb.Duration `protobuf:"bytes,7,opt,name=max_connection_age,proto3" json:"max_connection_age,omitempty"`
	ListenGracePeriod            *durationpb.Duration `protobuf:"bytes,8,opt,name=listen_grace_period,proto3" json:"listen_grace_period,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenAgentCF) Descriptor deprecated

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

Deprecated: Use ListenAgentCF.ProtoReflect.Descriptor instead.

func (*ListenAgentCF) GetAddress

func (x *ListenAgentCF) GetAddress() string

func (*ListenAgentCF) GetCertificateFile

func (x *ListenAgentCF) GetCertificateFile() string

func (*ListenAgentCF) GetConnectionsPerTokenPerMinute

func (x *ListenAgentCF) GetConnectionsPerTokenPerMinute() uint32

func (*ListenAgentCF) GetKeyFile

func (x *ListenAgentCF) GetKeyFile() string

func (*ListenAgentCF) GetListenGracePeriod

func (x *ListenAgentCF) GetListenGracePeriod() *durationpb.Duration

func (*ListenAgentCF) GetMaxConnectionAge

func (x *ListenAgentCF) GetMaxConnectionAge() *durationpb.Duration

func (*ListenAgentCF) GetNetwork

func (x *ListenAgentCF) GetNetwork() string

func (*ListenAgentCF) GetWebsocket

func (x *ListenAgentCF) GetWebsocket() bool

func (*ListenAgentCF) ProtoMessage

func (*ListenAgentCF) ProtoMessage()

func (*ListenAgentCF) ProtoReflect

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

func (*ListenAgentCF) Reset

func (x *ListenAgentCF) Reset()

func (*ListenAgentCF) String

func (x *ListenAgentCF) String() string

func (*ListenAgentCF) Validate

func (m *ListenAgentCF) Validate() error

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

func (m *ListenAgentCF) ValidateAll() error

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

type ListenAgentCFMultiError

type ListenAgentCFMultiError []error

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

func (ListenAgentCFMultiError) AllErrors

func (m ListenAgentCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenAgentCFMultiError) Error

func (m ListenAgentCFMultiError) Error() string

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

type ListenAgentCFValidationError

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

ListenAgentCFValidationError is the validation error returned by ListenAgentCF.Validate if the designated constraints aren't met.

func (ListenAgentCFValidationError) Cause

Cause function returns cause value.

func (ListenAgentCFValidationError) Error

Error satisfies the builtin error interface

func (ListenAgentCFValidationError) ErrorName

func (e ListenAgentCFValidationError) ErrorName() string

ErrorName returns error name.

func (ListenAgentCFValidationError) Field

Field function returns field value.

func (ListenAgentCFValidationError) Key

Key function returns key value.

func (ListenAgentCFValidationError) Reason

Reason function returns reason value.

type ListenApiCF

type ListenApiCF struct {
	Network                  *string              `protobuf:"bytes,1,opt,name=network,proto3,oneof" json:"network,omitempty"`
	Address                  string               `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	AuthenticationSecretFile string               `protobuf:"bytes,3,opt,name=authentication_secret_file,proto3" json:"authentication_secret_file,omitempty"`
	CertificateFile          string               `protobuf:"bytes,4,opt,name=certificate_file,proto3" json:"certificate_file,omitempty"`
	KeyFile                  string               `protobuf:"bytes,5,opt,name=key_file,proto3" json:"key_file,omitempty"`
	MaxConnectionAge         *durationpb.Duration `protobuf:"bytes,6,opt,name=max_connection_age,proto3" json:"max_connection_age,omitempty"`
	ListenGracePeriod        *durationpb.Duration `protobuf:"bytes,7,opt,name=listen_grace_period,proto3" json:"listen_grace_period,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenApiCF) Descriptor deprecated

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

Deprecated: Use ListenApiCF.ProtoReflect.Descriptor instead.

func (*ListenApiCF) GetAddress

func (x *ListenApiCF) GetAddress() string

func (*ListenApiCF) GetAuthenticationSecretFile

func (x *ListenApiCF) GetAuthenticationSecretFile() string

func (*ListenApiCF) GetCertificateFile

func (x *ListenApiCF) GetCertificateFile() string

func (*ListenApiCF) GetKeyFile

func (x *ListenApiCF) GetKeyFile() string

func (*ListenApiCF) GetListenGracePeriod

func (x *ListenApiCF) GetListenGracePeriod() *durationpb.Duration

func (*ListenApiCF) GetMaxConnectionAge

func (x *ListenApiCF) GetMaxConnectionAge() *durationpb.Duration

func (*ListenApiCF) GetNetwork

func (x *ListenApiCF) GetNetwork() string

func (*ListenApiCF) ProtoMessage

func (*ListenApiCF) ProtoMessage()

func (*ListenApiCF) ProtoReflect

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

func (*ListenApiCF) Reset

func (x *ListenApiCF) Reset()

func (*ListenApiCF) String

func (x *ListenApiCF) String() string

func (*ListenApiCF) Validate

func (m *ListenApiCF) Validate() error

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

func (m *ListenApiCF) ValidateAll() error

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

type ListenApiCFMultiError

type ListenApiCFMultiError []error

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

func (ListenApiCFMultiError) AllErrors

func (m ListenApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenApiCFMultiError) Error

func (m ListenApiCFMultiError) Error() string

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

type ListenApiCFValidationError

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

ListenApiCFValidationError is the validation error returned by ListenApiCF.Validate if the designated constraints aren't met.

func (ListenApiCFValidationError) Cause

Cause function returns cause value.

func (ListenApiCFValidationError) Error

Error satisfies the builtin error interface

func (ListenApiCFValidationError) ErrorName

func (e ListenApiCFValidationError) ErrorName() string

ErrorName returns error name.

func (ListenApiCFValidationError) Field

Field function returns field value.

func (ListenApiCFValidationError) Key

Key function returns key value.

func (ListenApiCFValidationError) Reason

Reason function returns reason value.

type ListenKubernetesApiCF

type ListenKubernetesApiCF struct {
	Network             *string              `protobuf:"bytes,1,opt,name=network,proto3,oneof" json:"network,omitempty"`
	Address             string               `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	CertificateFile     string               `protobuf:"bytes,3,opt,name=certificate_file,proto3" json:"certificate_file,omitempty"`
	KeyFile             string               `protobuf:"bytes,4,opt,name=key_file,proto3" json:"key_file,omitempty"`
	ListenGracePeriod   *durationpb.Duration `protobuf:"bytes,5,opt,name=listen_grace_period,proto3" json:"listen_grace_period,omitempty"`
	ShutdownGracePeriod *durationpb.Duration `protobuf:"bytes,6,opt,name=shutdown_grace_period,proto3" json:"shutdown_grace_period,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenKubernetesApiCF) Descriptor deprecated

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

Deprecated: Use ListenKubernetesApiCF.ProtoReflect.Descriptor instead.

func (*ListenKubernetesApiCF) GetAddress

func (x *ListenKubernetesApiCF) GetAddress() string

func (*ListenKubernetesApiCF) GetCertificateFile

func (x *ListenKubernetesApiCF) GetCertificateFile() string

func (*ListenKubernetesApiCF) GetKeyFile

func (x *ListenKubernetesApiCF) GetKeyFile() string

func (*ListenKubernetesApiCF) GetListenGracePeriod

func (x *ListenKubernetesApiCF) GetListenGracePeriod() *durationpb.Duration

func (*ListenKubernetesApiCF) GetNetwork

func (x *ListenKubernetesApiCF) GetNetwork() string

func (*ListenKubernetesApiCF) GetShutdownGracePeriod

func (x *ListenKubernetesApiCF) GetShutdownGracePeriod() *durationpb.Duration

func (*ListenKubernetesApiCF) ProtoMessage

func (*ListenKubernetesApiCF) ProtoMessage()

func (*ListenKubernetesApiCF) ProtoReflect

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

func (*ListenKubernetesApiCF) Reset

func (x *ListenKubernetesApiCF) Reset()

func (*ListenKubernetesApiCF) String

func (x *ListenKubernetesApiCF) String() string

func (*ListenKubernetesApiCF) Validate

func (m *ListenKubernetesApiCF) Validate() error

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

func (m *ListenKubernetesApiCF) ValidateAll() error

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

type ListenKubernetesApiCFMultiError

type ListenKubernetesApiCFMultiError []error

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

func (ListenKubernetesApiCFMultiError) AllErrors

func (m ListenKubernetesApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenKubernetesApiCFMultiError) Error

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

type ListenKubernetesApiCFValidationError

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

ListenKubernetesApiCFValidationError is the validation error returned by ListenKubernetesApiCF.Validate if the designated constraints aren't met.

func (ListenKubernetesApiCFValidationError) Cause

Cause function returns cause value.

func (ListenKubernetesApiCFValidationError) Error

Error satisfies the builtin error interface

func (ListenKubernetesApiCFValidationError) ErrorName

ErrorName returns error name.

func (ListenKubernetesApiCFValidationError) Field

Field function returns field value.

func (ListenKubernetesApiCFValidationError) Key

Key function returns key value.

func (ListenKubernetesApiCFValidationError) Reason

Reason function returns reason value.

type ListenPrivateApiCF

type ListenPrivateApiCF struct {
	Network                  *string              `protobuf:"bytes,1,opt,name=network,proto3,oneof" json:"network,omitempty"`
	Address                  string               `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	AuthenticationSecretFile string               `protobuf:"bytes,3,opt,name=authentication_secret_file,proto3" json:"authentication_secret_file,omitempty"`
	CertificateFile          string               `protobuf:"bytes,4,opt,name=certificate_file,proto3" json:"certificate_file,omitempty"`
	KeyFile                  string               `protobuf:"bytes,5,opt,name=key_file,proto3" json:"key_file,omitempty"`
	MaxConnectionAge         *durationpb.Duration `protobuf:"bytes,6,opt,name=max_connection_age,proto3" json:"max_connection_age,omitempty"`
	CaCertificateFile        string               `protobuf:"bytes,7,opt,name=ca_certificate_file,proto3" json:"ca_certificate_file,omitempty"`
	ListenGracePeriod        *durationpb.Duration `protobuf:"bytes,8,opt,name=listen_grace_period,proto3" json:"listen_grace_period,omitempty"`
	// contains filtered or unexported fields
}

func (*ListenPrivateApiCF) Descriptor deprecated

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

Deprecated: Use ListenPrivateApiCF.ProtoReflect.Descriptor instead.

func (*ListenPrivateApiCF) GetAddress

func (x *ListenPrivateApiCF) GetAddress() string

func (*ListenPrivateApiCF) GetAuthenticationSecretFile

func (x *ListenPrivateApiCF) GetAuthenticationSecretFile() string

func (*ListenPrivateApiCF) GetCaCertificateFile

func (x *ListenPrivateApiCF) GetCaCertificateFile() string

func (*ListenPrivateApiCF) GetCertificateFile

func (x *ListenPrivateApiCF) GetCertificateFile() string

func (*ListenPrivateApiCF) GetKeyFile

func (x *ListenPrivateApiCF) GetKeyFile() string

func (*ListenPrivateApiCF) GetListenGracePeriod

func (x *ListenPrivateApiCF) GetListenGracePeriod() *durationpb.Duration

func (*ListenPrivateApiCF) GetMaxConnectionAge

func (x *ListenPrivateApiCF) GetMaxConnectionAge() *durationpb.Duration

func (*ListenPrivateApiCF) GetNetwork

func (x *ListenPrivateApiCF) GetNetwork() string

func (*ListenPrivateApiCF) ProtoMessage

func (*ListenPrivateApiCF) ProtoMessage()

func (*ListenPrivateApiCF) ProtoReflect

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

func (*ListenPrivateApiCF) Reset

func (x *ListenPrivateApiCF) Reset()

func (*ListenPrivateApiCF) String

func (x *ListenPrivateApiCF) String() string

func (*ListenPrivateApiCF) Validate

func (m *ListenPrivateApiCF) Validate() error

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

func (m *ListenPrivateApiCF) ValidateAll() error

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

type ListenPrivateApiCFMultiError

type ListenPrivateApiCFMultiError []error

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

func (ListenPrivateApiCFMultiError) AllErrors

func (m ListenPrivateApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListenPrivateApiCFMultiError) Error

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

type ListenPrivateApiCFValidationError

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

ListenPrivateApiCFValidationError is the validation error returned by ListenPrivateApiCF.Validate if the designated constraints aren't met.

func (ListenPrivateApiCFValidationError) Cause

Cause function returns cause value.

func (ListenPrivateApiCFValidationError) Error

Error satisfies the builtin error interface

func (ListenPrivateApiCFValidationError) ErrorName

ErrorName returns error name.

func (ListenPrivateApiCFValidationError) Field

Field function returns field value.

func (ListenPrivateApiCFValidationError) Key

Key function returns key value.

func (ListenPrivateApiCFValidationError) Reason

Reason function returns reason value.

type LivenessProbeCF

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

func (*LivenessProbeCF) Descriptor deprecated

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

Deprecated: Use LivenessProbeCF.ProtoReflect.Descriptor instead.

func (*LivenessProbeCF) GetUrlPath

func (x *LivenessProbeCF) GetUrlPath() string

func (*LivenessProbeCF) ProtoMessage

func (*LivenessProbeCF) ProtoMessage()

func (*LivenessProbeCF) ProtoReflect

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

func (*LivenessProbeCF) Reset

func (x *LivenessProbeCF) Reset()

func (*LivenessProbeCF) String

func (x *LivenessProbeCF) String() string

func (*LivenessProbeCF) Validate

func (m *LivenessProbeCF) Validate() error

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

func (m *LivenessProbeCF) ValidateAll() error

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

type LivenessProbeCFMultiError

type LivenessProbeCFMultiError []error

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

func (LivenessProbeCFMultiError) AllErrors

func (m LivenessProbeCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LivenessProbeCFMultiError) Error

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

type LivenessProbeCFValidationError

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

LivenessProbeCFValidationError is the validation error returned by LivenessProbeCF.Validate if the designated constraints aren't met.

func (LivenessProbeCFValidationError) Cause

Cause function returns cause value.

func (LivenessProbeCFValidationError) Error

Error satisfies the builtin error interface

func (LivenessProbeCFValidationError) ErrorName

func (e LivenessProbeCFValidationError) ErrorName() string

ErrorName returns error name.

func (LivenessProbeCFValidationError) Field

Field function returns field value.

func (LivenessProbeCFValidationError) Key

Key function returns key value.

func (LivenessProbeCFValidationError) 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.kascfg.LogLevelEnum" json:"level,omitempty"`
	GrpcLevel *LogLevelEnum `protobuf:"varint,2,opt,name=grpc_level,proto3,enum=gitlab.agent.kascfg.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 ObservabilityCF

type ObservabilityCF struct {
	UsageReportingPeriod *durationpb.Duration   `protobuf:"bytes,1,opt,name=usage_reporting_period,proto3" json:"usage_reporting_period,omitempty"`
	Listen               *ObservabilityListenCF `protobuf:"bytes,2,opt,name=listen,proto3" json:"listen,omitempty"`
	Prometheus           *PrometheusCF          `protobuf:"bytes,3,opt,name=prometheus,proto3" json:"prometheus,omitempty"`
	Tracing              *TracingCF             `protobuf:"bytes,4,opt,name=tracing,proto3" json:"tracing,omitempty"`
	Sentry               *SentryCF              `protobuf:"bytes,5,opt,name=sentry,proto3" json:"sentry,omitempty"`
	Logging              *LoggingCF             `protobuf:"bytes,6,opt,name=logging,proto3" json:"logging,omitempty"`
	GoogleProfiler       *GoogleProfilerCF      `protobuf:"bytes,7,opt,name=google_profiler,proto3" json:"google_profiler,omitempty"`
	LivenessProbe        *LivenessProbeCF       `protobuf:"bytes,8,opt,name=liveness_probe,proto3" json:"liveness_probe,omitempty"`
	ReadinessProbe       *ReadinessProbeCF      `protobuf:"bytes,9,opt,name=readiness_probe,proto3" json:"readiness_probe,omitempty"`
	EventReportingPeriod *durationpb.Duration   `protobuf:"bytes,10,opt,name=event_reporting_period,proto3" json:"event_reporting_period,omitempty"`
	// contains filtered or unexported fields
}

func (*ObservabilityCF) Descriptor deprecated

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

Deprecated: Use ObservabilityCF.ProtoReflect.Descriptor instead.

func (*ObservabilityCF) GetEventReportingPeriod

func (x *ObservabilityCF) GetEventReportingPeriod() *durationpb.Duration

func (*ObservabilityCF) GetGoogleProfiler

func (x *ObservabilityCF) GetGoogleProfiler() *GoogleProfilerCF

func (*ObservabilityCF) GetListen

func (x *ObservabilityCF) GetListen() *ObservabilityListenCF

func (*ObservabilityCF) GetLivenessProbe

func (x *ObservabilityCF) GetLivenessProbe() *LivenessProbeCF

func (*ObservabilityCF) GetLogging

func (x *ObservabilityCF) GetLogging() *LoggingCF

func (*ObservabilityCF) GetPrometheus

func (x *ObservabilityCF) GetPrometheus() *PrometheusCF

func (*ObservabilityCF) GetReadinessProbe

func (x *ObservabilityCF) GetReadinessProbe() *ReadinessProbeCF

func (*ObservabilityCF) GetSentry

func (x *ObservabilityCF) GetSentry() *SentryCF

func (*ObservabilityCF) GetTracing

func (x *ObservabilityCF) GetTracing() *TracingCF

func (*ObservabilityCF) GetUsageReportingPeriod

func (x *ObservabilityCF) GetUsageReportingPeriod() *durationpb.Duration

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 ObservabilityListenCF

type ObservabilityListenCF struct {
	Network         *string `protobuf:"bytes,1,opt,name=network,proto3,oneof" json:"network,omitempty"`
	Address         string  `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	CertificateFile *string `protobuf:"bytes,3,opt,name=certificate_file,proto3,oneof" json:"certificate_file,omitempty"`
	KeyFile         *string `protobuf:"bytes,4,opt,name=key_file,proto3,oneof" json:"key_file,omitempty"`
	// contains filtered or unexported fields
}

func (*ObservabilityListenCF) Descriptor deprecated

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

Deprecated: Use ObservabilityListenCF.ProtoReflect.Descriptor instead.

func (*ObservabilityListenCF) GetAddress

func (x *ObservabilityListenCF) GetAddress() string

func (*ObservabilityListenCF) GetCertificateFile

func (x *ObservabilityListenCF) GetCertificateFile() string

func (*ObservabilityListenCF) GetKeyFile

func (x *ObservabilityListenCF) GetKeyFile() string

func (*ObservabilityListenCF) GetNetwork

func (x *ObservabilityListenCF) GetNetwork() string

func (*ObservabilityListenCF) ProtoMessage

func (*ObservabilityListenCF) ProtoMessage()

func (*ObservabilityListenCF) ProtoReflect

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

func (*ObservabilityListenCF) Reset

func (x *ObservabilityListenCF) Reset()

func (*ObservabilityListenCF) String

func (x *ObservabilityListenCF) String() string

func (*ObservabilityListenCF) Validate

func (m *ObservabilityListenCF) Validate() error

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

func (m *ObservabilityListenCF) ValidateAll() error

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

type ObservabilityListenCFMultiError

type ObservabilityListenCFMultiError []error

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

func (ObservabilityListenCFMultiError) AllErrors

func (m ObservabilityListenCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ObservabilityListenCFMultiError) Error

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

type ObservabilityListenCFValidationError

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

ObservabilityListenCFValidationError is the validation error returned by ObservabilityListenCF.Validate if the designated constraints aren't met.

func (ObservabilityListenCFValidationError) Cause

Cause function returns cause value.

func (ObservabilityListenCFValidationError) Error

Error satisfies the builtin error interface

func (ObservabilityListenCFValidationError) ErrorName

ErrorName returns error name.

func (ObservabilityListenCFValidationError) Field

Field function returns field value.

func (ObservabilityListenCFValidationError) Key

Key function returns key value.

func (ObservabilityListenCFValidationError) Reason

Reason function returns reason value.

type PrivateApiCF

type PrivateApiCF struct {
	Listen *ListenPrivateApiCF `protobuf:"bytes,1,opt,name=listen,proto3" json:"listen,omitempty"`
	// contains filtered or unexported fields
}

func (*PrivateApiCF) Descriptor deprecated

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

Deprecated: Use PrivateApiCF.ProtoReflect.Descriptor instead.

func (*PrivateApiCF) GetListen

func (x *PrivateApiCF) GetListen() *ListenPrivateApiCF

func (*PrivateApiCF) ProtoMessage

func (*PrivateApiCF) ProtoMessage()

func (*PrivateApiCF) ProtoReflect

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

func (*PrivateApiCF) Reset

func (x *PrivateApiCF) Reset()

func (*PrivateApiCF) String

func (x *PrivateApiCF) String() string

func (*PrivateApiCF) Validate

func (m *PrivateApiCF) Validate() error

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

func (m *PrivateApiCF) ValidateAll() error

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

type PrivateApiCFMultiError

type PrivateApiCFMultiError []error

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

func (PrivateApiCFMultiError) AllErrors

func (m PrivateApiCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PrivateApiCFMultiError) Error

func (m PrivateApiCFMultiError) Error() string

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

type PrivateApiCFValidationError

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

PrivateApiCFValidationError is the validation error returned by PrivateApiCF.Validate if the designated constraints aren't met.

func (PrivateApiCFValidationError) Cause

Cause function returns cause value.

func (PrivateApiCFValidationError) Error

Error satisfies the builtin error interface

func (PrivateApiCFValidationError) ErrorName

func (e PrivateApiCFValidationError) ErrorName() string

ErrorName returns error name.

func (PrivateApiCFValidationError) Field

Field function returns field value.

func (PrivateApiCFValidationError) Key

Key function returns key value.

func (PrivateApiCFValidationError) Reason

Reason function returns reason value.

type PrometheusCF

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

func (*PrometheusCF) Descriptor deprecated

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

Deprecated: Use PrometheusCF.ProtoReflect.Descriptor instead.

func (*PrometheusCF) GetUrlPath

func (x *PrometheusCF) GetUrlPath() string

func (*PrometheusCF) ProtoMessage

func (*PrometheusCF) ProtoMessage()

func (*PrometheusCF) ProtoReflect

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

func (*PrometheusCF) Reset

func (x *PrometheusCF) Reset()

func (*PrometheusCF) String

func (x *PrometheusCF) String() string

func (*PrometheusCF) Validate

func (m *PrometheusCF) Validate() error

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

func (m *PrometheusCF) ValidateAll() error

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

type PrometheusCFMultiError

type PrometheusCFMultiError []error

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

func (PrometheusCFMultiError) AllErrors

func (m PrometheusCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PrometheusCFMultiError) Error

func (m PrometheusCFMultiError) Error() string

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

type PrometheusCFValidationError

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

PrometheusCFValidationError is the validation error returned by PrometheusCF.Validate if the designated constraints aren't met.

func (PrometheusCFValidationError) Cause

Cause function returns cause value.

func (PrometheusCFValidationError) Error

Error satisfies the builtin error interface

func (PrometheusCFValidationError) ErrorName

func (e PrometheusCFValidationError) ErrorName() string

ErrorName returns error name.

func (PrometheusCFValidationError) Field

Field function returns field value.

func (PrometheusCFValidationError) Key

Key function returns key value.

func (PrometheusCFValidationError) Reason

Reason function returns reason value.

type ReadinessProbeCF

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

func (*ReadinessProbeCF) Descriptor deprecated

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

Deprecated: Use ReadinessProbeCF.ProtoReflect.Descriptor instead.

func (*ReadinessProbeCF) GetUrlPath

func (x *ReadinessProbeCF) GetUrlPath() string

func (*ReadinessProbeCF) ProtoMessage

func (*ReadinessProbeCF) ProtoMessage()

func (*ReadinessProbeCF) ProtoReflect

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

func (*ReadinessProbeCF) Reset

func (x *ReadinessProbeCF) Reset()

func (*ReadinessProbeCF) String

func (x *ReadinessProbeCF) String() string

func (*ReadinessProbeCF) Validate

func (m *ReadinessProbeCF) Validate() error

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

func (m *ReadinessProbeCF) ValidateAll() error

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

type ReadinessProbeCFMultiError

type ReadinessProbeCFMultiError []error

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

func (ReadinessProbeCFMultiError) AllErrors

func (m ReadinessProbeCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadinessProbeCFMultiError) Error

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

type ReadinessProbeCFValidationError

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

ReadinessProbeCFValidationError is the validation error returned by ReadinessProbeCF.Validate if the designated constraints aren't met.

func (ReadinessProbeCFValidationError) Cause

Cause function returns cause value.

func (ReadinessProbeCFValidationError) Error

Error satisfies the builtin error interface

func (ReadinessProbeCFValidationError) ErrorName

ErrorName returns error name.

func (ReadinessProbeCFValidationError) Field

Field function returns field value.

func (ReadinessProbeCFValidationError) Key

Key function returns key value.

func (ReadinessProbeCFValidationError) Reason

Reason function returns reason value.

type RedisCF

type RedisCF struct {

	// Types that are assignable to RedisConfig:
	//
	//	*RedisCF_Server
	//	*RedisCF_Sentinel
	RedisConfig       isRedisCF_RedisConfig `protobuf_oneof:"redis_config"`
	PoolSize          uint32                `protobuf:"varint,4,opt,name=pool_size,proto3" json:"pool_size,omitempty"`
	DialTimeout       *durationpb.Duration  `protobuf:"bytes,5,opt,name=dial_timeout,proto3" json:"dial_timeout,omitempty"`
	ReadTimeout       *durationpb.Duration  `protobuf:"bytes,6,opt,name=read_timeout,proto3" json:"read_timeout,omitempty"`
	WriteTimeout      *durationpb.Duration  `protobuf:"bytes,7,opt,name=write_timeout,proto3" json:"write_timeout,omitempty"`
	IdleTimeout       *durationpb.Duration  `protobuf:"bytes,8,opt,name=idle_timeout,proto3" json:"idle_timeout,omitempty"`
	KeyPrefix         string                `protobuf:"bytes,9,opt,name=key_prefix,proto3" json:"key_prefix,omitempty"`
	Username          string                `protobuf:"bytes,10,opt,name=username,proto3" json:"username,omitempty"`
	PasswordFile      string                `protobuf:"bytes,11,opt,name=password_file,proto3" json:"password_file,omitempty"`
	Network           string                `protobuf:"bytes,12,opt,name=network,proto3" json:"network,omitempty"`
	Tls               *RedisTLSCF           `protobuf:"bytes,13,opt,name=tls,proto3" json:"tls,omitempty"`
	DatabaseIndex     int32                 `protobuf:"varint,14,opt,name=database_index,proto3" json:"database_index,omitempty"`
	Password          string                `protobuf:"bytes,15,opt,name=password,proto3" json:"password,omitempty"`
	PipelineMultiplex uint32                `protobuf:"varint,16,opt,name=pipeline_multiplex,proto3" json:"pipeline_multiplex,omitempty"`
	// contains filtered or unexported fields
}

func (*RedisCF) Descriptor deprecated

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

Deprecated: Use RedisCF.ProtoReflect.Descriptor instead.

func (*RedisCF) GetDatabaseIndex

func (x *RedisCF) GetDatabaseIndex() int32

func (*RedisCF) GetDialTimeout

func (x *RedisCF) GetDialTimeout() *durationpb.Duration

func (*RedisCF) GetIdleTimeout

func (x *RedisCF) GetIdleTimeout() *durationpb.Duration

func (*RedisCF) GetKeyPrefix

func (x *RedisCF) GetKeyPrefix() string

func (*RedisCF) GetNetwork

func (x *RedisCF) GetNetwork() string

func (*RedisCF) GetPassword

func (x *RedisCF) GetPassword() string

func (*RedisCF) GetPasswordFile

func (x *RedisCF) GetPasswordFile() string

func (*RedisCF) GetPipelineMultiplex

func (x *RedisCF) GetPipelineMultiplex() uint32

func (*RedisCF) GetPoolSize

func (x *RedisCF) GetPoolSize() uint32

func (*RedisCF) GetReadTimeout

func (x *RedisCF) GetReadTimeout() *durationpb.Duration

func (*RedisCF) GetRedisConfig

func (m *RedisCF) GetRedisConfig() isRedisCF_RedisConfig

func (*RedisCF) GetSentinel

func (x *RedisCF) GetSentinel() *RedisSentinelCF

func (*RedisCF) GetServer

func (x *RedisCF) GetServer() *RedisServerCF

func (*RedisCF) GetTls

func (x *RedisCF) GetTls() *RedisTLSCF

func (*RedisCF) GetUsername

func (x *RedisCF) GetUsername() string

func (*RedisCF) GetWriteTimeout

func (x *RedisCF) GetWriteTimeout() *durationpb.Duration

func (*RedisCF) ProtoMessage

func (*RedisCF) ProtoMessage()

func (*RedisCF) ProtoReflect

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

func (*RedisCF) Reset

func (x *RedisCF) Reset()

func (*RedisCF) String

func (x *RedisCF) String() string

func (*RedisCF) Validate

func (m *RedisCF) Validate() error

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

func (m *RedisCF) ValidateAll() error

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

type RedisCFMultiError

type RedisCFMultiError []error

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

func (RedisCFMultiError) AllErrors

func (m RedisCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedisCFMultiError) Error

func (m RedisCFMultiError) Error() string

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

type RedisCFValidationError

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

RedisCFValidationError is the validation error returned by RedisCF.Validate if the designated constraints aren't met.

func (RedisCFValidationError) Cause

func (e RedisCFValidationError) Cause() error

Cause function returns cause value.

func (RedisCFValidationError) Error

func (e RedisCFValidationError) Error() string

Error satisfies the builtin error interface

func (RedisCFValidationError) ErrorName

func (e RedisCFValidationError) ErrorName() string

ErrorName returns error name.

func (RedisCFValidationError) Field

func (e RedisCFValidationError) Field() string

Field function returns field value.

func (RedisCFValidationError) Key

func (e RedisCFValidationError) Key() bool

Key function returns key value.

func (RedisCFValidationError) Reason

func (e RedisCFValidationError) Reason() string

Reason function returns reason value.

type RedisCF_Sentinel

type RedisCF_Sentinel struct {
	Sentinel *RedisSentinelCF `protobuf:"bytes,2,opt,name=sentinel,proto3,oneof"`
}

type RedisCF_Server

type RedisCF_Server struct {
	Server *RedisServerCF `protobuf:"bytes,1,opt,name=server,proto3,oneof"`
}

type RedisSentinelCF

type RedisSentinelCF struct {
	MasterName           string   `protobuf:"bytes,1,opt,name=master_name,proto3" json:"master_name,omitempty"`
	Addresses            []string `protobuf:"bytes,2,rep,name=addresses,proto3" json:"addresses,omitempty"`
	SentinelPasswordFile string   `protobuf:"bytes,3,opt,name=sentinel_password_file,proto3" json:"sentinel_password_file,omitempty"`
	// contains filtered or unexported fields
}

func (*RedisSentinelCF) Descriptor deprecated

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

Deprecated: Use RedisSentinelCF.ProtoReflect.Descriptor instead.

func (*RedisSentinelCF) GetAddresses

func (x *RedisSentinelCF) GetAddresses() []string

func (*RedisSentinelCF) GetMasterName

func (x *RedisSentinelCF) GetMasterName() string

func (*RedisSentinelCF) GetSentinelPasswordFile

func (x *RedisSentinelCF) GetSentinelPasswordFile() string

func (*RedisSentinelCF) ProtoMessage

func (*RedisSentinelCF) ProtoMessage()

func (*RedisSentinelCF) ProtoReflect

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

func (*RedisSentinelCF) Reset

func (x *RedisSentinelCF) Reset()

func (*RedisSentinelCF) String

func (x *RedisSentinelCF) String() string

func (*RedisSentinelCF) Validate

func (m *RedisSentinelCF) Validate() error

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

func (m *RedisSentinelCF) ValidateAll() error

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

type RedisSentinelCFMultiError

type RedisSentinelCFMultiError []error

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

func (RedisSentinelCFMultiError) AllErrors

func (m RedisSentinelCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedisSentinelCFMultiError) Error

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

type RedisSentinelCFValidationError

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

RedisSentinelCFValidationError is the validation error returned by RedisSentinelCF.Validate if the designated constraints aren't met.

func (RedisSentinelCFValidationError) Cause

Cause function returns cause value.

func (RedisSentinelCFValidationError) Error

Error satisfies the builtin error interface

func (RedisSentinelCFValidationError) ErrorName

func (e RedisSentinelCFValidationError) ErrorName() string

ErrorName returns error name.

func (RedisSentinelCFValidationError) Field

Field function returns field value.

func (RedisSentinelCFValidationError) Key

Key function returns key value.

func (RedisSentinelCFValidationError) Reason

Reason function returns reason value.

type RedisServerCF

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

func (*RedisServerCF) Descriptor deprecated

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

Deprecated: Use RedisServerCF.ProtoReflect.Descriptor instead.

func (*RedisServerCF) GetAddress

func (x *RedisServerCF) GetAddress() string

func (*RedisServerCF) ProtoMessage

func (*RedisServerCF) ProtoMessage()

func (*RedisServerCF) ProtoReflect

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

func (*RedisServerCF) Reset

func (x *RedisServerCF) Reset()

func (*RedisServerCF) String

func (x *RedisServerCF) String() string

func (*RedisServerCF) Validate

func (m *RedisServerCF) Validate() error

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

func (m *RedisServerCF) ValidateAll() error

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

type RedisServerCFMultiError

type RedisServerCFMultiError []error

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

func (RedisServerCFMultiError) AllErrors

func (m RedisServerCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedisServerCFMultiError) Error

func (m RedisServerCFMultiError) Error() string

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

type RedisServerCFValidationError

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

RedisServerCFValidationError is the validation error returned by RedisServerCF.Validate if the designated constraints aren't met.

func (RedisServerCFValidationError) Cause

Cause function returns cause value.

func (RedisServerCFValidationError) Error

Error satisfies the builtin error interface

func (RedisServerCFValidationError) ErrorName

func (e RedisServerCFValidationError) ErrorName() string

ErrorName returns error name.

func (RedisServerCFValidationError) Field

Field function returns field value.

func (RedisServerCFValidationError) Key

Key function returns key value.

func (RedisServerCFValidationError) Reason

Reason function returns reason value.

type RedisTLSCF

type RedisTLSCF struct {
	Enabled           bool   `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	CertificateFile   string `protobuf:"bytes,2,opt,name=certificate_file,proto3" json:"certificate_file,omitempty"`
	KeyFile           string `protobuf:"bytes,3,opt,name=key_file,proto3" json:"key_file,omitempty"`
	CaCertificateFile string `protobuf:"bytes,4,opt,name=ca_certificate_file,proto3" json:"ca_certificate_file,omitempty"`
	// contains filtered or unexported fields
}

func (*RedisTLSCF) Descriptor deprecated

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

Deprecated: Use RedisTLSCF.ProtoReflect.Descriptor instead.

func (*RedisTLSCF) GetCaCertificateFile

func (x *RedisTLSCF) GetCaCertificateFile() string

func (*RedisTLSCF) GetCertificateFile

func (x *RedisTLSCF) GetCertificateFile() string

func (*RedisTLSCF) GetEnabled

func (x *RedisTLSCF) GetEnabled() bool

func (*RedisTLSCF) GetKeyFile

func (x *RedisTLSCF) GetKeyFile() string

func (*RedisTLSCF) ProtoMessage

func (*RedisTLSCF) ProtoMessage()

func (*RedisTLSCF) ProtoReflect

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

func (*RedisTLSCF) Reset

func (x *RedisTLSCF) Reset()

func (*RedisTLSCF) String

func (x *RedisTLSCF) String() string

func (*RedisTLSCF) Validate

func (m *RedisTLSCF) Validate() error

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

func (m *RedisTLSCF) ValidateAll() error

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

type RedisTLSCFMultiError

type RedisTLSCFMultiError []error

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

func (RedisTLSCFMultiError) AllErrors

func (m RedisTLSCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RedisTLSCFMultiError) Error

func (m RedisTLSCFMultiError) Error() string

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

type RedisTLSCFValidationError

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

RedisTLSCFValidationError is the validation error returned by RedisTLSCF.Validate if the designated constraints aren't met.

func (RedisTLSCFValidationError) Cause

func (e RedisTLSCFValidationError) Cause() error

Cause function returns cause value.

func (RedisTLSCFValidationError) Error

Error satisfies the builtin error interface

func (RedisTLSCFValidationError) ErrorName

func (e RedisTLSCFValidationError) ErrorName() string

ErrorName returns error name.

func (RedisTLSCFValidationError) Field

Field function returns field value.

func (RedisTLSCFValidationError) Key

Key function returns key value.

func (RedisTLSCFValidationError) Reason

func (e RedisTLSCFValidationError) Reason() string

Reason function returns reason value.

type RemoteDevelopmentCF

type RemoteDevelopmentCF struct {
	PollPeriod *durationpb.Duration `protobuf:"bytes,1,opt,name=poll_period,proto3" json:"poll_period,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteDevelopmentCF) Descriptor deprecated

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

Deprecated: Use RemoteDevelopmentCF.ProtoReflect.Descriptor instead.

func (*RemoteDevelopmentCF) GetPollPeriod

func (x *RemoteDevelopmentCF) GetPollPeriod() *durationpb.Duration

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 SentryCF

type SentryCF struct {
	Dsn         string `protobuf:"bytes,1,opt,name=dsn,proto3" json:"dsn,omitempty"`
	Environment string `protobuf:"bytes,2,opt,name=environment,proto3" json:"environment,omitempty"`
	// contains filtered or unexported fields
}

func (*SentryCF) Descriptor deprecated

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

Deprecated: Use SentryCF.ProtoReflect.Descriptor instead.

func (*SentryCF) GetDsn

func (x *SentryCF) GetDsn() string

func (*SentryCF) GetEnvironment

func (x *SentryCF) GetEnvironment() string

func (*SentryCF) ProtoMessage

func (*SentryCF) ProtoMessage()

func (*SentryCF) ProtoReflect

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

func (*SentryCF) Reset

func (x *SentryCF) Reset()

func (*SentryCF) String

func (x *SentryCF) String() string

func (*SentryCF) Validate

func (m *SentryCF) Validate() error

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

func (m *SentryCF) ValidateAll() error

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

type SentryCFMultiError

type SentryCFMultiError []error

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

func (SentryCFMultiError) AllErrors

func (m SentryCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SentryCFMultiError) Error

func (m SentryCFMultiError) Error() string

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

type SentryCFValidationError

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

SentryCFValidationError is the validation error returned by SentryCF.Validate if the designated constraints aren't met.

func (SentryCFValidationError) Cause

func (e SentryCFValidationError) Cause() error

Cause function returns cause value.

func (SentryCFValidationError) Error

func (e SentryCFValidationError) Error() string

Error satisfies the builtin error interface

func (SentryCFValidationError) ErrorName

func (e SentryCFValidationError) ErrorName() string

ErrorName returns error name.

func (SentryCFValidationError) Field

func (e SentryCFValidationError) Field() string

Field function returns field value.

func (SentryCFValidationError) Key

func (e SentryCFValidationError) Key() bool

Key function returns key value.

func (SentryCFValidationError) Reason

func (e SentryCFValidationError) Reason() string

Reason function returns reason value.

type TokenBucketRateLimitCF

type TokenBucketRateLimitCF struct {
	RefillRatePerSecond float64 `protobuf:"fixed64,1,opt,name=refill_rate_per_second,proto3" json:"refill_rate_per_second,omitempty"`
	BucketSize          uint32  `protobuf:"varint,2,opt,name=bucket_size,proto3" json:"bucket_size,omitempty"`
	// contains filtered or unexported fields
}

func (*TokenBucketRateLimitCF) Descriptor deprecated

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

Deprecated: Use TokenBucketRateLimitCF.ProtoReflect.Descriptor instead.

func (*TokenBucketRateLimitCF) GetBucketSize

func (x *TokenBucketRateLimitCF) GetBucketSize() uint32

func (*TokenBucketRateLimitCF) GetRefillRatePerSecond

func (x *TokenBucketRateLimitCF) GetRefillRatePerSecond() float64

func (*TokenBucketRateLimitCF) ProtoMessage

func (*TokenBucketRateLimitCF) ProtoMessage()

func (*TokenBucketRateLimitCF) ProtoReflect

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

func (*TokenBucketRateLimitCF) Reset

func (x *TokenBucketRateLimitCF) Reset()

func (*TokenBucketRateLimitCF) String

func (x *TokenBucketRateLimitCF) String() string

func (*TokenBucketRateLimitCF) Validate

func (m *TokenBucketRateLimitCF) Validate() error

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

func (m *TokenBucketRateLimitCF) ValidateAll() error

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

type TokenBucketRateLimitCFMultiError

type TokenBucketRateLimitCFMultiError []error

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

func (TokenBucketRateLimitCFMultiError) AllErrors

func (m TokenBucketRateLimitCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TokenBucketRateLimitCFMultiError) Error

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

type TokenBucketRateLimitCFValidationError

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

TokenBucketRateLimitCFValidationError is the validation error returned by TokenBucketRateLimitCF.Validate if the designated constraints aren't met.

func (TokenBucketRateLimitCFValidationError) Cause

Cause function returns cause value.

func (TokenBucketRateLimitCFValidationError) Error

Error satisfies the builtin error interface

func (TokenBucketRateLimitCFValidationError) ErrorName

ErrorName returns error name.

func (TokenBucketRateLimitCFValidationError) Field

Field function returns field value.

func (TokenBucketRateLimitCFValidationError) Key

Key function returns key value.

func (TokenBucketRateLimitCFValidationError) Reason

Reason function returns reason value.

type TracingCF

type TracingCF struct {
	OtlpEndpoint          string  `protobuf:"bytes,2,opt,name=otlp_endpoint,proto3" json:"otlp_endpoint,omitempty"`
	OtlpTokenSecretFile   *string `protobuf:"bytes,3,opt,name=otlp_token_secret_file,proto3,oneof" json:"otlp_token_secret_file,omitempty"`
	OtlpCaCertificateFile *string `protobuf:"bytes,4,opt,name=otlp_ca_certificate_file,proto3,oneof" json:"otlp_ca_certificate_file,omitempty"`
	OtlpLegacyEndpoint    *string `protobuf:"bytes,5,opt,name=otlp_legacy_endpoint,proto3,oneof" json:"otlp_legacy_endpoint,omitempty"`
	// contains filtered or unexported fields
}

func (*TracingCF) Descriptor deprecated

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

Deprecated: Use TracingCF.ProtoReflect.Descriptor instead.

func (*TracingCF) GetOtlpCaCertificateFile

func (x *TracingCF) GetOtlpCaCertificateFile() string

func (*TracingCF) GetOtlpEndpoint

func (x *TracingCF) GetOtlpEndpoint() string

func (*TracingCF) GetOtlpLegacyEndpoint

func (x *TracingCF) GetOtlpLegacyEndpoint() string

func (*TracingCF) GetOtlpTokenSecretFile

func (x *TracingCF) GetOtlpTokenSecretFile() string

func (*TracingCF) ProtoMessage

func (*TracingCF) ProtoMessage()

func (*TracingCF) ProtoReflect

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

func (*TracingCF) Reset

func (x *TracingCF) Reset()

func (*TracingCF) String

func (x *TracingCF) String() string

func (*TracingCF) Validate

func (m *TracingCF) Validate() error

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

func (m *TracingCF) ValidateAll() error

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

type TracingCFMultiError

type TracingCFMultiError []error

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

func (TracingCFMultiError) AllErrors

func (m TracingCFMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TracingCFMultiError) Error

func (m TracingCFMultiError) Error() string

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

type TracingCFValidationError

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

TracingCFValidationError is the validation error returned by TracingCF.Validate if the designated constraints aren't met.

func (TracingCFValidationError) Cause

func (e TracingCFValidationError) Cause() error

Cause function returns cause value.

func (TracingCFValidationError) Error

func (e TracingCFValidationError) Error() string

Error satisfies the builtin error interface

func (TracingCFValidationError) ErrorName

func (e TracingCFValidationError) ErrorName() string

ErrorName returns error name.

func (TracingCFValidationError) Field

func (e TracingCFValidationError) Field() string

Field function returns field value.

func (TracingCFValidationError) Key

Key function returns key value.

func (TracingCFValidationError) Reason

func (e TracingCFValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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