kascfg

package
v0.0.8 Latest Latest
Warning

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

Go to latest
Published: Oct 27, 2020 License: MIT Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ListenNetworkEnum_name = map[int32]string{
		0: "tcp",
		1: "tcp4",
		2: "tcp6",
		3: "unix",
	}
	ListenNetworkEnum_value = map[string]int32{
		"tcp":  0,
		"tcp4": 1,
		"tcp6": 2,
		"unix": 3,
	}
)

Enum value maps for ListenNetworkEnum.

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

Enum value maps for LoggingLevelEnum.

View Source
var File_pkg_kascfg_kascfg_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AgentCF

type AgentCF struct {
	Configuration     *AgentConfigurationCF `protobuf:"bytes,1,opt,name=configuration,proto3" json:"configuration,omitempty"`
	Gitops            *GitopsCF             `protobuf:"bytes,2,opt,name=gitops,proto3" json:"gitops,omitempty"`
	InfoCacheTtl      *duration.Duration    `protobuf:"bytes,3,opt,name=info_cache_ttl,proto3" json:"info_cache_ttl,omitempty"`
	InfoCacheErrorTtl *duration.Duration    `protobuf:"bytes,4,opt,name=info_cache_error_ttl,proto3" json:"info_cache_error_ttl,omitempty"`
	Limits            *AgentLimitsCF        `protobuf:"bytes,5,opt,name=limits,proto3" json:"limits,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() *duration.Duration

func (*AgentCF) GetInfoCacheTtl

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

func (*AgentCF) GetLimits added in v0.0.7

func (x *AgentCF) GetLimits() *AgentLimitsCF

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

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, an error is returned.

type AgentCFValidationError added in v0.0.7

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

func (e AgentCFValidationError) Cause() error

Cause function returns cause value.

func (AgentCFValidationError) Error added in v0.0.7

func (e AgentCFValidationError) Error() string

Error satisfies the builtin error interface

func (AgentCFValidationError) ErrorName added in v0.0.7

func (e AgentCFValidationError) ErrorName() string

ErrorName returns error name.

func (AgentCFValidationError) Field added in v0.0.7

func (e AgentCFValidationError) Field() string

Field function returns field value.

func (AgentCFValidationError) Key added in v0.0.7

func (e AgentCFValidationError) Key() bool

Key function returns key value.

func (AgentCFValidationError) Reason added in v0.0.7

func (e AgentCFValidationError) Reason() string

Reason function returns reason value.

type AgentConfigurationCF

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

func (*AgentConfigurationCF) Descriptor deprecated

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

Deprecated: Use AgentConfigurationCF.ProtoReflect.Descriptor instead.

func (*AgentConfigurationCF) GetPollPeriod

func (x *AgentConfigurationCF) GetPollPeriod() *duration.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 added in v0.0.7

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, an error is returned.

type AgentConfigurationCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (AgentConfigurationCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (AgentConfigurationCFValidationError) ErrorName added in v0.0.7

ErrorName returns error name.

func (AgentConfigurationCFValidationError) Field added in v0.0.7

Field function returns field value.

func (AgentConfigurationCFValidationError) Key added in v0.0.7

Key function returns key value.

func (AgentConfigurationCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type AgentLimitsCF added in v0.0.7

type AgentLimitsCF struct {
	ConnectionsPerTokenPerMinute uint32 `protobuf:"varint,1,opt,name=connections_per_token_per_minute,proto3" json:"connections_per_token_per_minute,omitempty"`
	RedisKeyPrefix               string `protobuf:"bytes,2,opt,name=redis_key_prefix,proto3" json:"redis_key_prefix,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentLimitsCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use AgentLimitsCF.ProtoReflect.Descriptor instead.

func (*AgentLimitsCF) GetConnectionsPerTokenPerMinute added in v0.0.7

func (x *AgentLimitsCF) GetConnectionsPerTokenPerMinute() uint32

func (*AgentLimitsCF) GetRedisKeyPrefix added in v0.0.7

func (x *AgentLimitsCF) GetRedisKeyPrefix() string

func (*AgentLimitsCF) ProtoMessage added in v0.0.7

func (*AgentLimitsCF) ProtoMessage()

func (*AgentLimitsCF) ProtoReflect added in v0.0.7

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

func (*AgentLimitsCF) Reset added in v0.0.7

func (x *AgentLimitsCF) Reset()

func (*AgentLimitsCF) String added in v0.0.7

func (x *AgentLimitsCF) String() string

func (*AgentLimitsCF) Validate added in v0.0.7

func (m *AgentLimitsCF) Validate() error

Validate checks the field values on AgentLimitsCF with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type AgentLimitsCFValidationError added in v0.0.7

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

AgentLimitsCFValidationError is the validation error returned by AgentLimitsCF.Validate if the designated constraints aren't met.

func (AgentLimitsCFValidationError) Cause added in v0.0.7

Cause function returns cause value.

func (AgentLimitsCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (AgentLimitsCFValidationError) ErrorName added in v0.0.7

func (e AgentLimitsCFValidationError) ErrorName() string

ErrorName returns error name.

func (AgentLimitsCFValidationError) Field added in v0.0.7

Field function returns field value.

func (AgentLimitsCFValidationError) Key added in v0.0.7

Key function returns key value.

func (AgentLimitsCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type ConfigurationFile

type ConfigurationFile struct {
	Listen        *ListenCF        `protobuf:"bytes,1,opt,name=listen,proto3" json:"listen,omitempty"`
	Gitlab        *GitLabCF        `protobuf:"bytes,2,opt,name=gitlab,proto3" json:"gitlab,omitempty"`
	Agent         *AgentCF         `protobuf:"bytes,3,opt,name=agent,proto3" json:"agent,omitempty"`
	Observability *ObservabilityCF `protobuf:"bytes,4,opt,name=observability,proto3" json:"observability,omitempty"`
	Gitaly        *GitalyCF        `protobuf:"bytes,5,opt,name=gitaly,proto3" json:"gitaly,omitempty"`
	Redis         *RedisCF         `protobuf:"bytes,6,opt,name=redis,proto3" json:"redis,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) GetGitaly added in v0.0.7

func (x *ConfigurationFile) GetGitaly() *GitalyCF

func (*ConfigurationFile) GetGitlab

func (x *ConfigurationFile) GetGitlab() *GitLabCF

func (*ConfigurationFile) GetListen

func (x *ConfigurationFile) GetListen() *ListenCF

func (*ConfigurationFile) GetObservability added in v0.0.7

func (x *ConfigurationFile) GetObservability() *ObservabilityCF

func (*ConfigurationFile) GetRedis added in v0.0.7

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

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, an error is returned.

type ConfigurationFileValidationError added in v0.0.7

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

Cause function returns cause value.

func (ConfigurationFileValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (ConfigurationFileValidationError) ErrorName added in v0.0.7

ErrorName returns error name.

func (ConfigurationFileValidationError) Field added in v0.0.7

Field function returns field value.

func (ConfigurationFileValidationError) Key added in v0.0.7

Key function returns key value.

func (ConfigurationFileValidationError) Reason added in v0.0.7

Reason function returns reason value.

type GitLabCF

type GitLabCF struct {
	Address                  string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	AuthenticationSecretFile string `protobuf:"bytes,2,opt,name=authentication_secret_file,proto3" json:"authentication_secret_file,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) GetAuthenticationSecretFile

func (x *GitLabCF) GetAuthenticationSecretFile() 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 added in v0.0.7

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, an error is returned.

type GitLabCFValidationError added in v0.0.7

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

func (e GitLabCFValidationError) Cause() error

Cause function returns cause value.

func (GitLabCFValidationError) Error added in v0.0.7

func (e GitLabCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitLabCFValidationError) ErrorName added in v0.0.7

func (e GitLabCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitLabCFValidationError) Field added in v0.0.7

func (e GitLabCFValidationError) Field() string

Field function returns field value.

func (GitLabCFValidationError) Key added in v0.0.7

func (e GitLabCFValidationError) Key() bool

Key function returns key value.

func (GitLabCFValidationError) Reason added in v0.0.7

func (e GitLabCFValidationError) Reason() string

Reason function returns reason value.

type GitalyCF added in v0.0.7

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

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

Deprecated: Use GitalyCF.ProtoReflect.Descriptor instead.

func (*GitalyCF) GetGlobalApiRateLimit added in v0.0.7

func (x *GitalyCF) GetGlobalApiRateLimit() *TokenBucketRateLimitCF

func (*GitalyCF) GetPerServerApiRateLimit added in v0.0.7

func (x *GitalyCF) GetPerServerApiRateLimit() *TokenBucketRateLimitCF

func (*GitalyCF) ProtoMessage added in v0.0.7

func (*GitalyCF) ProtoMessage()

func (*GitalyCF) ProtoReflect added in v0.0.7

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

func (*GitalyCF) Reset added in v0.0.7

func (x *GitalyCF) Reset()

func (*GitalyCF) String added in v0.0.7

func (x *GitalyCF) String() string

func (*GitalyCF) Validate added in v0.0.7

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, an error is returned.

type GitalyCFValidationError added in v0.0.7

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

func (e GitalyCFValidationError) Cause() error

Cause function returns cause value.

func (GitalyCFValidationError) Error added in v0.0.7

func (e GitalyCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitalyCFValidationError) ErrorName added in v0.0.7

func (e GitalyCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitalyCFValidationError) Field added in v0.0.7

func (e GitalyCFValidationError) Field() string

Field function returns field value.

func (GitalyCFValidationError) Key added in v0.0.7

func (e GitalyCFValidationError) Key() bool

Key function returns key value.

func (GitalyCFValidationError) Reason added in v0.0.7

func (e GitalyCFValidationError) Reason() string

Reason function returns reason value.

type GitopsCF

type GitopsCF struct {
	PollPeriod               *duration.Duration `protobuf:"bytes,1,opt,name=poll_period,proto3" json:"poll_period,omitempty"`
	ProjectInfoCacheTtl      *duration.Duration `protobuf:"bytes,2,opt,name=project_info_cache_ttl,proto3" json:"project_info_cache_ttl,omitempty"`
	ProjectInfoCacheErrorTtl *duration.Duration `protobuf:"bytes,3,opt,name=project_info_cache_error_ttl,proto3" json:"project_info_cache_error_ttl,omitempty"`
	// contains filtered or unexported fields
}

func (*GitopsCF) Descriptor deprecated

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

Deprecated: Use GitopsCF.ProtoReflect.Descriptor instead.

func (*GitopsCF) GetPollPeriod

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

func (*GitopsCF) GetProjectInfoCacheErrorTtl

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

func (*GitopsCF) GetProjectInfoCacheTtl

func (x *GitopsCF) GetProjectInfoCacheTtl() *duration.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 added in v0.0.7

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, an error is returned.

type GitopsCFValidationError added in v0.0.7

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

func (e GitopsCFValidationError) Cause() error

Cause function returns cause value.

func (GitopsCFValidationError) Error added in v0.0.7

func (e GitopsCFValidationError) Error() string

Error satisfies the builtin error interface

func (GitopsCFValidationError) ErrorName added in v0.0.7

func (e GitopsCFValidationError) ErrorName() string

ErrorName returns error name.

func (GitopsCFValidationError) Field added in v0.0.7

func (e GitopsCFValidationError) Field() string

Field function returns field value.

func (GitopsCFValidationError) Key added in v0.0.7

func (e GitopsCFValidationError) Key() bool

Key function returns key value.

func (GitopsCFValidationError) Reason added in v0.0.7

func (e GitopsCFValidationError) Reason() string

Reason function returns reason value.

type GoogleProfilerCF added in v0.0.7

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"`
	// contains filtered or unexported fields
}

func (*GoogleProfilerCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use GoogleProfilerCF.ProtoReflect.Descriptor instead.

func (*GoogleProfilerCF) GetCredentialsFile added in v0.0.7

func (x *GoogleProfilerCF) GetCredentialsFile() string

func (*GoogleProfilerCF) GetEnabled added in v0.0.7

func (x *GoogleProfilerCF) GetEnabled() bool

func (*GoogleProfilerCF) GetProjectId added in v0.0.7

func (x *GoogleProfilerCF) GetProjectId() string

func (*GoogleProfilerCF) ProtoMessage added in v0.0.7

func (*GoogleProfilerCF) ProtoMessage()

func (*GoogleProfilerCF) ProtoReflect added in v0.0.7

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

func (*GoogleProfilerCF) Reset added in v0.0.7

func (x *GoogleProfilerCF) Reset()

func (*GoogleProfilerCF) String added in v0.0.7

func (x *GoogleProfilerCF) String() string

func (*GoogleProfilerCF) Validate added in v0.0.7

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, an error is returned.

type GoogleProfilerCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (GoogleProfilerCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (GoogleProfilerCFValidationError) ErrorName added in v0.0.7

ErrorName returns error name.

func (GoogleProfilerCFValidationError) Field added in v0.0.7

Field function returns field value.

func (GoogleProfilerCFValidationError) Key added in v0.0.7

Key function returns key value.

func (GoogleProfilerCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type ListenCF

type ListenCF struct {
	Network   ListenNetworkEnum `protobuf:"varint,1,opt,name=network,proto3,enum=kascfg.ListenNetworkEnum" 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"`
	// contains filtered or unexported fields
}

func (*ListenCF) Descriptor deprecated

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

Deprecated: Use ListenCF.ProtoReflect.Descriptor instead.

func (*ListenCF) GetAddress

func (x *ListenCF) GetAddress() string

func (*ListenCF) GetNetwork

func (x *ListenCF) GetNetwork() ListenNetworkEnum

func (*ListenCF) GetWebsocket

func (x *ListenCF) GetWebsocket() bool

func (*ListenCF) ProtoMessage

func (*ListenCF) ProtoMessage()

func (*ListenCF) ProtoReflect

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

func (*ListenCF) Reset

func (x *ListenCF) Reset()

func (*ListenCF) String

func (x *ListenCF) String() string

func (*ListenCF) Validate added in v0.0.7

func (m *ListenCF) Validate() error

Validate checks the field values on ListenCF with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ListenCFValidationError added in v0.0.7

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

ListenCFValidationError is the validation error returned by ListenCF.Validate if the designated constraints aren't met.

func (ListenCFValidationError) Cause added in v0.0.7

func (e ListenCFValidationError) Cause() error

Cause function returns cause value.

func (ListenCFValidationError) Error added in v0.0.7

func (e ListenCFValidationError) Error() string

Error satisfies the builtin error interface

func (ListenCFValidationError) ErrorName added in v0.0.7

func (e ListenCFValidationError) ErrorName() string

ErrorName returns error name.

func (ListenCFValidationError) Field added in v0.0.7

func (e ListenCFValidationError) Field() string

Field function returns field value.

func (ListenCFValidationError) Key added in v0.0.7

func (e ListenCFValidationError) Key() bool

Key function returns key value.

func (ListenCFValidationError) Reason added in v0.0.7

func (e ListenCFValidationError) Reason() string

Reason function returns reason value.

type ListenNetworkEnum added in v0.0.8

type ListenNetworkEnum int32
const (
	ListenNetworkEnum_tcp  ListenNetworkEnum = 0
	ListenNetworkEnum_tcp4 ListenNetworkEnum = 1
	ListenNetworkEnum_tcp6 ListenNetworkEnum = 2
	ListenNetworkEnum_unix ListenNetworkEnum = 3
)

func (ListenNetworkEnum) Descriptor added in v0.0.8

func (ListenNetworkEnum) Enum added in v0.0.8

func (ListenNetworkEnum) EnumDescriptor deprecated added in v0.0.8

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

Deprecated: Use ListenNetworkEnum.Descriptor instead.

func (ListenNetworkEnum) Number added in v0.0.8

func (ListenNetworkEnum) String added in v0.0.8

func (x ListenNetworkEnum) String() string

func (ListenNetworkEnum) Type added in v0.0.8

type LoggingCF added in v0.0.7

type LoggingCF struct {
	Level LoggingLevelEnum `protobuf:"varint,1,opt,name=level,proto3,enum=kascfg.LoggingLevelEnum" json:"level,omitempty"`
	// contains filtered or unexported fields
}

func (*LoggingCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use LoggingCF.ProtoReflect.Descriptor instead.

func (*LoggingCF) GetLevel added in v0.0.7

func (x *LoggingCF) GetLevel() LoggingLevelEnum

func (*LoggingCF) ProtoMessage added in v0.0.7

func (*LoggingCF) ProtoMessage()

func (*LoggingCF) ProtoReflect added in v0.0.7

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

func (*LoggingCF) Reset added in v0.0.7

func (x *LoggingCF) Reset()

func (*LoggingCF) String added in v0.0.7

func (x *LoggingCF) String() string

func (*LoggingCF) Validate added in v0.0.7

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, an error is returned.

type LoggingCFValidationError added in v0.0.7

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

func (e LoggingCFValidationError) Cause() error

Cause function returns cause value.

func (LoggingCFValidationError) Error added in v0.0.7

func (e LoggingCFValidationError) Error() string

Error satisfies the builtin error interface

func (LoggingCFValidationError) ErrorName added in v0.0.7

func (e LoggingCFValidationError) ErrorName() string

ErrorName returns error name.

func (LoggingCFValidationError) Field added in v0.0.7

func (e LoggingCFValidationError) Field() string

Field function returns field value.

func (LoggingCFValidationError) Key added in v0.0.7

Key function returns key value.

func (LoggingCFValidationError) Reason added in v0.0.7

func (e LoggingCFValidationError) Reason() string

Reason function returns reason value.

type LoggingLevelEnum added in v0.0.8

type LoggingLevelEnum int32
const (
	LoggingLevelEnum_info  LoggingLevelEnum = 0
	LoggingLevelEnum_debug LoggingLevelEnum = 1
	LoggingLevelEnum_warn  LoggingLevelEnum = 2
	LoggingLevelEnum_error LoggingLevelEnum = 3
)

func (LoggingLevelEnum) Descriptor added in v0.0.8

func (LoggingLevelEnum) Enum added in v0.0.8

func (LoggingLevelEnum) EnumDescriptor deprecated added in v0.0.8

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

Deprecated: Use LoggingLevelEnum.Descriptor instead.

func (LoggingLevelEnum) Number added in v0.0.8

func (LoggingLevelEnum) String added in v0.0.8

func (x LoggingLevelEnum) String() string

func (LoggingLevelEnum) Type added in v0.0.8

type ObservabilityCF added in v0.0.7

type ObservabilityCF struct {
	UsageReportingPeriod *duration.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"`
	Pprof                *PprofCF               `protobuf:"bytes,8,opt,name=pprof,proto3" json:"pprof,omitempty"`
	// contains filtered or unexported fields
}

func (*ObservabilityCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use ObservabilityCF.ProtoReflect.Descriptor instead.

func (*ObservabilityCF) GetGoogleProfiler added in v0.0.7

func (x *ObservabilityCF) GetGoogleProfiler() *GoogleProfilerCF

func (*ObservabilityCF) GetListen added in v0.0.7

func (x *ObservabilityCF) GetListen() *ObservabilityListenCF

func (*ObservabilityCF) GetLogging added in v0.0.7

func (x *ObservabilityCF) GetLogging() *LoggingCF

func (*ObservabilityCF) GetPprof added in v0.0.7

func (x *ObservabilityCF) GetPprof() *PprofCF

func (*ObservabilityCF) GetPrometheus added in v0.0.7

func (x *ObservabilityCF) GetPrometheus() *PrometheusCF

func (*ObservabilityCF) GetSentry added in v0.0.7

func (x *ObservabilityCF) GetSentry() *SentryCF

func (*ObservabilityCF) GetTracing added in v0.0.7

func (x *ObservabilityCF) GetTracing() *TracingCF

func (*ObservabilityCF) GetUsageReportingPeriod added in v0.0.7

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

func (*ObservabilityCF) ProtoMessage added in v0.0.7

func (*ObservabilityCF) ProtoMessage()

func (*ObservabilityCF) ProtoReflect added in v0.0.7

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

func (*ObservabilityCF) Reset added in v0.0.7

func (x *ObservabilityCF) Reset()

func (*ObservabilityCF) String added in v0.0.7

func (x *ObservabilityCF) String() string

func (*ObservabilityCF) Validate added in v0.0.7

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, an error is returned.

type ObservabilityCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (ObservabilityCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (ObservabilityCFValidationError) ErrorName added in v0.0.7

func (e ObservabilityCFValidationError) ErrorName() string

ErrorName returns error name.

func (ObservabilityCFValidationError) Field added in v0.0.7

Field function returns field value.

func (ObservabilityCFValidationError) Key added in v0.0.7

Key function returns key value.

func (ObservabilityCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type ObservabilityListenCF added in v0.0.7

type ObservabilityListenCF struct {
	Network ListenNetworkEnum `protobuf:"varint,1,opt,name=network,proto3,enum=kascfg.ListenNetworkEnum" json:"network,omitempty"`
	Address string            `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*ObservabilityListenCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use ObservabilityListenCF.ProtoReflect.Descriptor instead.

func (*ObservabilityListenCF) GetAddress added in v0.0.7

func (x *ObservabilityListenCF) GetAddress() string

func (*ObservabilityListenCF) GetNetwork added in v0.0.7

func (x *ObservabilityListenCF) GetNetwork() ListenNetworkEnum

func (*ObservabilityListenCF) ProtoMessage added in v0.0.7

func (*ObservabilityListenCF) ProtoMessage()

func (*ObservabilityListenCF) ProtoReflect added in v0.0.7

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

func (*ObservabilityListenCF) Reset added in v0.0.7

func (x *ObservabilityListenCF) Reset()

func (*ObservabilityListenCF) String added in v0.0.7

func (x *ObservabilityListenCF) String() string

func (*ObservabilityListenCF) Validate added in v0.0.7

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, an error is returned.

type ObservabilityListenCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (ObservabilityListenCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (ObservabilityListenCFValidationError) ErrorName added in v0.0.7

ErrorName returns error name.

func (ObservabilityListenCFValidationError) Field added in v0.0.7

Field function returns field value.

func (ObservabilityListenCFValidationError) Key added in v0.0.7

Key function returns key value.

func (ObservabilityListenCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type PprofCF added in v0.0.7

type PprofCF struct {
	Disabled bool `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
	// contains filtered or unexported fields
}

func (*PprofCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use PprofCF.ProtoReflect.Descriptor instead.

func (*PprofCF) GetDisabled added in v0.0.7

func (x *PprofCF) GetDisabled() bool

func (*PprofCF) ProtoMessage added in v0.0.7

func (*PprofCF) ProtoMessage()

func (*PprofCF) ProtoReflect added in v0.0.7

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

func (*PprofCF) Reset added in v0.0.7

func (x *PprofCF) Reset()

func (*PprofCF) String added in v0.0.7

func (x *PprofCF) String() string

func (*PprofCF) Validate added in v0.0.7

func (m *PprofCF) Validate() error

Validate checks the field values on PprofCF with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type PprofCFValidationError added in v0.0.7

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

PprofCFValidationError is the validation error returned by PprofCF.Validate if the designated constraints aren't met.

func (PprofCFValidationError) Cause added in v0.0.7

func (e PprofCFValidationError) Cause() error

Cause function returns cause value.

func (PprofCFValidationError) Error added in v0.0.7

func (e PprofCFValidationError) Error() string

Error satisfies the builtin error interface

func (PprofCFValidationError) ErrorName added in v0.0.7

func (e PprofCFValidationError) ErrorName() string

ErrorName returns error name.

func (PprofCFValidationError) Field added in v0.0.7

func (e PprofCFValidationError) Field() string

Field function returns field value.

func (PprofCFValidationError) Key added in v0.0.7

func (e PprofCFValidationError) Key() bool

Key function returns key value.

func (PprofCFValidationError) Reason added in v0.0.7

func (e PprofCFValidationError) Reason() string

Reason function returns reason value.

type PrometheusCF added in v0.0.7

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

func (*PrometheusCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use PrometheusCF.ProtoReflect.Descriptor instead.

func (*PrometheusCF) GetDisabled added in v0.0.7

func (x *PrometheusCF) GetDisabled() bool

func (*PrometheusCF) GetUrlPath added in v0.0.7

func (x *PrometheusCF) GetUrlPath() string

func (*PrometheusCF) ProtoMessage added in v0.0.7

func (*PrometheusCF) ProtoMessage()

func (*PrometheusCF) ProtoReflect added in v0.0.7

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

func (*PrometheusCF) Reset added in v0.0.7

func (x *PrometheusCF) Reset()

func (*PrometheusCF) String added in v0.0.7

func (x *PrometheusCF) String() string

func (*PrometheusCF) Validate added in v0.0.7

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, an error is returned.

type PrometheusCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (PrometheusCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (PrometheusCFValidationError) ErrorName added in v0.0.7

func (e PrometheusCFValidationError) ErrorName() string

ErrorName returns error name.

func (PrometheusCFValidationError) Field added in v0.0.7

Field function returns field value.

func (PrometheusCFValidationError) Key added in v0.0.7

Key function returns key value.

func (PrometheusCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type RedisCF added in v0.0.7

type RedisCF struct {
	Url            string             `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	Password       string             `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	MaxIdle        uint32             `protobuf:"varint,3,opt,name=max_idle,proto3" json:"max_idle,omitempty"`
	MaxActive      uint32             `protobuf:"varint,4,opt,name=max_active,proto3" json:"max_active,omitempty"`
	ReadTimeout    *duration.Duration `protobuf:"bytes,5,opt,name=read_timeout,proto3" json:"read_timeout,omitempty"`
	WriteTimeout   *duration.Duration `protobuf:"bytes,6,opt,name=write_timeout,proto3" json:"write_timeout,omitempty"`
	Keepalive      *duration.Duration `protobuf:"bytes,7,opt,name=keepalive,proto3" json:"keepalive,omitempty"`
	SentinelMaster string             `protobuf:"bytes,8,opt,name=sentinel_master,proto3" json:"sentinel_master,omitempty"`
	Sentinels      []string           `protobuf:"bytes,9,rep,name=sentinels,proto3" json:"sentinels,omitempty"`
	// contains filtered or unexported fields
}

func (*RedisCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use RedisCF.ProtoReflect.Descriptor instead.

func (*RedisCF) GetKeepalive added in v0.0.7

func (x *RedisCF) GetKeepalive() *duration.Duration

func (*RedisCF) GetMaxActive added in v0.0.7

func (x *RedisCF) GetMaxActive() uint32

func (*RedisCF) GetMaxIdle added in v0.0.7

func (x *RedisCF) GetMaxIdle() uint32

func (*RedisCF) GetPassword added in v0.0.7

func (x *RedisCF) GetPassword() string

func (*RedisCF) GetReadTimeout added in v0.0.7

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

func (*RedisCF) GetSentinelMaster added in v0.0.7

func (x *RedisCF) GetSentinelMaster() string

func (*RedisCF) GetSentinels added in v0.0.7

func (x *RedisCF) GetSentinels() []string

func (*RedisCF) GetUrl added in v0.0.7

func (x *RedisCF) GetUrl() string

func (*RedisCF) GetWriteTimeout added in v0.0.7

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

func (*RedisCF) ProtoMessage added in v0.0.7

func (*RedisCF) ProtoMessage()

func (*RedisCF) ProtoReflect added in v0.0.7

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

func (*RedisCF) Reset added in v0.0.7

func (x *RedisCF) Reset()

func (*RedisCF) String added in v0.0.7

func (x *RedisCF) String() string

func (*RedisCF) Validate added in v0.0.7

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, an error is returned.

type RedisCFValidationError added in v0.0.7

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

func (e RedisCFValidationError) Cause() error

Cause function returns cause value.

func (RedisCFValidationError) Error added in v0.0.7

func (e RedisCFValidationError) Error() string

Error satisfies the builtin error interface

func (RedisCFValidationError) ErrorName added in v0.0.7

func (e RedisCFValidationError) ErrorName() string

ErrorName returns error name.

func (RedisCFValidationError) Field added in v0.0.7

func (e RedisCFValidationError) Field() string

Field function returns field value.

func (RedisCFValidationError) Key added in v0.0.7

func (e RedisCFValidationError) Key() bool

Key function returns key value.

func (RedisCFValidationError) Reason added in v0.0.7

func (e RedisCFValidationError) Reason() string

Reason function returns reason value.

type SentryCF added in v0.0.7

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

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

Deprecated: Use SentryCF.ProtoReflect.Descriptor instead.

func (*SentryCF) GetDsn added in v0.0.7

func (x *SentryCF) GetDsn() string

func (*SentryCF) GetEnvironment added in v0.0.7

func (x *SentryCF) GetEnvironment() string

func (*SentryCF) ProtoMessage added in v0.0.7

func (*SentryCF) ProtoMessage()

func (*SentryCF) ProtoReflect added in v0.0.7

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

func (*SentryCF) Reset added in v0.0.7

func (x *SentryCF) Reset()

func (*SentryCF) String added in v0.0.7

func (x *SentryCF) String() string

func (*SentryCF) Validate added in v0.0.7

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, an error is returned.

type SentryCFValidationError added in v0.0.7

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

func (e SentryCFValidationError) Cause() error

Cause function returns cause value.

func (SentryCFValidationError) Error added in v0.0.7

func (e SentryCFValidationError) Error() string

Error satisfies the builtin error interface

func (SentryCFValidationError) ErrorName added in v0.0.7

func (e SentryCFValidationError) ErrorName() string

ErrorName returns error name.

func (SentryCFValidationError) Field added in v0.0.7

func (e SentryCFValidationError) Field() string

Field function returns field value.

func (SentryCFValidationError) Key added in v0.0.7

func (e SentryCFValidationError) Key() bool

Key function returns key value.

func (SentryCFValidationError) Reason added in v0.0.7

func (e SentryCFValidationError) Reason() string

Reason function returns reason value.

type TokenBucketRateLimitCF added in v0.0.7

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

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

Deprecated: Use TokenBucketRateLimitCF.ProtoReflect.Descriptor instead.

func (*TokenBucketRateLimitCF) GetBucketSize added in v0.0.7

func (x *TokenBucketRateLimitCF) GetBucketSize() uint32

func (*TokenBucketRateLimitCF) GetRefillRatePerSecond added in v0.0.7

func (x *TokenBucketRateLimitCF) GetRefillRatePerSecond() float64

func (*TokenBucketRateLimitCF) ProtoMessage added in v0.0.7

func (*TokenBucketRateLimitCF) ProtoMessage()

func (*TokenBucketRateLimitCF) ProtoReflect added in v0.0.7

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

func (*TokenBucketRateLimitCF) Reset added in v0.0.7

func (x *TokenBucketRateLimitCF) Reset()

func (*TokenBucketRateLimitCF) String added in v0.0.7

func (x *TokenBucketRateLimitCF) String() string

func (*TokenBucketRateLimitCF) Validate added in v0.0.7

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, an error is returned.

type TokenBucketRateLimitCFValidationError added in v0.0.7

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

Cause function returns cause value.

func (TokenBucketRateLimitCFValidationError) Error added in v0.0.7

Error satisfies the builtin error interface

func (TokenBucketRateLimitCFValidationError) ErrorName added in v0.0.7

ErrorName returns error name.

func (TokenBucketRateLimitCFValidationError) Field added in v0.0.7

Field function returns field value.

func (TokenBucketRateLimitCFValidationError) Key added in v0.0.7

Key function returns key value.

func (TokenBucketRateLimitCFValidationError) Reason added in v0.0.7

Reason function returns reason value.

type TracingCF added in v0.0.7

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

func (*TracingCF) Descriptor deprecated added in v0.0.7

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

Deprecated: Use TracingCF.ProtoReflect.Descriptor instead.

func (*TracingCF) GetConnectionString added in v0.0.7

func (x *TracingCF) GetConnectionString() string

func (*TracingCF) ProtoMessage added in v0.0.7

func (*TracingCF) ProtoMessage()

func (*TracingCF) ProtoReflect added in v0.0.7

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

func (*TracingCF) Reset added in v0.0.7

func (x *TracingCF) Reset()

func (*TracingCF) String added in v0.0.7

func (x *TracingCF) String() string

func (*TracingCF) Validate added in v0.0.7

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, an error is returned.

type TracingCFValidationError added in v0.0.7

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

func (e TracingCFValidationError) Cause() error

Cause function returns cause value.

func (TracingCFValidationError) Error added in v0.0.7

func (e TracingCFValidationError) Error() string

Error satisfies the builtin error interface

func (TracingCFValidationError) ErrorName added in v0.0.7

func (e TracingCFValidationError) ErrorName() string

ErrorName returns error name.

func (TracingCFValidationError) Field added in v0.0.7

func (e TracingCFValidationError) Field() string

Field function returns field value.

func (TracingCFValidationError) Key added in v0.0.7

Key function returns key value.

func (TracingCFValidationError) Reason added in v0.0.7

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