conf

package
v0.9.1 Latest Latest
Warning

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

Go to latest
Published: May 19, 2023 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

This section is empty.

Types

type Auth

type Auth struct {

	// Authentication creates a JWT that uses this secret for signing
	GeneratedJwsHmacSecret        string     `` /* 131-byte string literal not displayed */
	AllowList                     []string   `protobuf:"bytes,3,rep,name=allow_list,json=allowList,proto3" json:"allow_list,omitempty"`
	CasRobotAccountPrivateKeyPath string     `` /* 156-byte string literal not displayed */
	Oidc                          *Auth_OIDC `protobuf:"bytes,6,opt,name=oidc,proto3" json:"oidc,omitempty"`
	// contains filtered or unexported fields
}

func (*Auth) Descriptor deprecated

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

Deprecated: Use Auth.ProtoReflect.Descriptor instead.

func (*Auth) GetAllowList

func (x *Auth) GetAllowList() []string

func (*Auth) GetCasRobotAccountPrivateKeyPath

func (x *Auth) GetCasRobotAccountPrivateKeyPath() string

func (*Auth) GetGeneratedJwsHmacSecret

func (x *Auth) GetGeneratedJwsHmacSecret() string

func (*Auth) GetOidc

func (x *Auth) GetOidc() *Auth_OIDC

func (*Auth) ProtoMessage

func (*Auth) ProtoMessage()

func (*Auth) ProtoReflect

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

func (*Auth) Reset

func (x *Auth) Reset()

func (*Auth) String

func (x *Auth) String() string

func (*Auth) Validate added in v0.8.95

func (m *Auth) Validate() error

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

func (m *Auth) ValidateAll() error

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

type AuthMultiError added in v0.8.95

type AuthMultiError []error

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

func (AuthMultiError) AllErrors added in v0.8.95

func (m AuthMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AuthMultiError) Error added in v0.8.95

func (m AuthMultiError) Error() string

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

type AuthValidationError added in v0.8.95

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

AuthValidationError is the validation error returned by Auth.Validate if the designated constraints aren't met.

func (AuthValidationError) Cause added in v0.8.95

func (e AuthValidationError) Cause() error

Cause function returns cause value.

func (AuthValidationError) Error added in v0.8.95

func (e AuthValidationError) Error() string

Error satisfies the builtin error interface

func (AuthValidationError) ErrorName added in v0.8.95

func (e AuthValidationError) ErrorName() string

ErrorName returns error name.

func (AuthValidationError) Field added in v0.8.95

func (e AuthValidationError) Field() string

Field function returns field value.

func (AuthValidationError) Key added in v0.8.95

func (e AuthValidationError) Key() bool

Key function returns key value.

func (AuthValidationError) Reason added in v0.8.95

func (e AuthValidationError) Reason() string

Reason function returns reason value.

type Auth_OIDC

type Auth_OIDC struct {
	Domain            string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
	ClientId          string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret      string `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	RedirectUrlScheme string `protobuf:"bytes,4,opt,name=redirect_url_scheme,json=redirectUrlScheme,proto3" json:"redirect_url_scheme,omitempty"`
	// contains filtered or unexported fields
}

func (*Auth_OIDC) Descriptor deprecated

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

Deprecated: Use Auth_OIDC.ProtoReflect.Descriptor instead.

func (*Auth_OIDC) GetClientId

func (x *Auth_OIDC) GetClientId() string

func (*Auth_OIDC) GetClientSecret

func (x *Auth_OIDC) GetClientSecret() string

func (*Auth_OIDC) GetDomain

func (x *Auth_OIDC) GetDomain() string

func (*Auth_OIDC) GetRedirectUrlScheme

func (x *Auth_OIDC) GetRedirectUrlScheme() string

func (*Auth_OIDC) ProtoMessage

func (*Auth_OIDC) ProtoMessage()

func (*Auth_OIDC) ProtoReflect

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

func (*Auth_OIDC) Reset

func (x *Auth_OIDC) Reset()

func (*Auth_OIDC) String

func (x *Auth_OIDC) String() string

func (*Auth_OIDC) Validate added in v0.8.95

func (m *Auth_OIDC) Validate() error

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

func (m *Auth_OIDC) ValidateAll() error

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

type Auth_OIDCMultiError added in v0.8.95

type Auth_OIDCMultiError []error

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

func (Auth_OIDCMultiError) AllErrors added in v0.8.95

func (m Auth_OIDCMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Auth_OIDCMultiError) Error added in v0.8.95

func (m Auth_OIDCMultiError) Error() string

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

type Auth_OIDCValidationError added in v0.8.95

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

Auth_OIDCValidationError is the validation error returned by Auth_OIDC.Validate if the designated constraints aren't met.

func (Auth_OIDCValidationError) Cause added in v0.8.95

func (e Auth_OIDCValidationError) Cause() error

Cause function returns cause value.

func (Auth_OIDCValidationError) Error added in v0.8.95

func (e Auth_OIDCValidationError) Error() string

Error satisfies the builtin error interface

func (Auth_OIDCValidationError) ErrorName added in v0.8.95

func (e Auth_OIDCValidationError) ErrorName() string

ErrorName returns error name.

func (Auth_OIDCValidationError) Field added in v0.8.95

func (e Auth_OIDCValidationError) Field() string

Field function returns field value.

func (Auth_OIDCValidationError) Key added in v0.8.95

Key function returns key value.

func (Auth_OIDCValidationError) Reason added in v0.8.95

func (e Auth_OIDCValidationError) Reason() string

Reason function returns reason value.

type Bootstrap

type Bootstrap struct {
	Server             *Server                  `protobuf:"bytes,1,opt,name=server,proto3" json:"server,omitempty"`
	Data               *Data                    `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Auth               *Auth                    `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	Observability      *Bootstrap_Observability `protobuf:"bytes,4,opt,name=observability,proto3" json:"observability,omitempty"`
	CredentialsService *Credentials             `protobuf:"bytes,5,opt,name=credentials_service,json=credentialsService,proto3" json:"credentials_service,omitempty"`
	// CAS Server endpoint
	CasServer *Bootstrap_CASServer `protobuf:"bytes,6,opt,name=cas_server,json=casServer,proto3" json:"cas_server,omitempty"`
	// contains filtered or unexported fields
}

func (*Bootstrap) Descriptor deprecated

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

Deprecated: Use Bootstrap.ProtoReflect.Descriptor instead.

func (*Bootstrap) GetAuth

func (x *Bootstrap) GetAuth() *Auth

func (*Bootstrap) GetCasServer added in v0.8.95

func (x *Bootstrap) GetCasServer() *Bootstrap_CASServer

func (*Bootstrap) GetCredentialsService

func (x *Bootstrap) GetCredentialsService() *Credentials

func (*Bootstrap) GetData

func (x *Bootstrap) GetData() *Data

func (*Bootstrap) GetObservability

func (x *Bootstrap) GetObservability() *Bootstrap_Observability

func (*Bootstrap) GetServer

func (x *Bootstrap) GetServer() *Server

func (*Bootstrap) ProtoMessage

func (*Bootstrap) ProtoMessage()

func (*Bootstrap) ProtoReflect

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

func (*Bootstrap) Reset

func (x *Bootstrap) Reset()

func (*Bootstrap) String

func (x *Bootstrap) String() string

func (*Bootstrap) Validate added in v0.8.95

func (m *Bootstrap) Validate() error

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

func (m *Bootstrap) ValidateAll() error

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

type BootstrapMultiError added in v0.8.95

type BootstrapMultiError []error

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

func (BootstrapMultiError) AllErrors added in v0.8.95

func (m BootstrapMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (BootstrapMultiError) Error added in v0.8.95

func (m BootstrapMultiError) Error() string

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

type BootstrapValidationError added in v0.8.95

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

BootstrapValidationError is the validation error returned by Bootstrap.Validate if the designated constraints aren't met.

func (BootstrapValidationError) Cause added in v0.8.95

func (e BootstrapValidationError) Cause() error

Cause function returns cause value.

func (BootstrapValidationError) Error added in v0.8.95

func (e BootstrapValidationError) Error() string

Error satisfies the builtin error interface

func (BootstrapValidationError) ErrorName added in v0.8.95

func (e BootstrapValidationError) ErrorName() string

ErrorName returns error name.

func (BootstrapValidationError) Field added in v0.8.95

func (e BootstrapValidationError) Field() string

Field function returns field value.

func (BootstrapValidationError) Key added in v0.8.95

Key function returns key value.

func (BootstrapValidationError) Reason added in v0.8.95

func (e BootstrapValidationError) Reason() string

Reason function returns reason value.

type Bootstrap_CASServer added in v0.8.95

type Bootstrap_CASServer struct {
	Grpc *Server_GRPC `protobuf:"bytes,1,opt,name=grpc,proto3" json:"grpc,omitempty"`
	// insecure is used to disable TLS handshake
	// Only use for development purposes!
	Insecure bool `protobuf:"varint,2,opt,name=insecure,proto3" json:"insecure,omitempty"`
	// contains filtered or unexported fields
}

func (*Bootstrap_CASServer) Descriptor deprecated added in v0.8.95

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

Deprecated: Use Bootstrap_CASServer.ProtoReflect.Descriptor instead.

func (*Bootstrap_CASServer) GetGrpc added in v0.8.95

func (x *Bootstrap_CASServer) GetGrpc() *Server_GRPC

func (*Bootstrap_CASServer) GetInsecure added in v0.8.95

func (x *Bootstrap_CASServer) GetInsecure() bool

func (*Bootstrap_CASServer) ProtoMessage added in v0.8.95

func (*Bootstrap_CASServer) ProtoMessage()

func (*Bootstrap_CASServer) ProtoReflect added in v0.8.95

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

func (*Bootstrap_CASServer) Reset added in v0.8.95

func (x *Bootstrap_CASServer) Reset()

func (*Bootstrap_CASServer) String added in v0.8.95

func (x *Bootstrap_CASServer) String() string

func (*Bootstrap_CASServer) Validate added in v0.8.95

func (m *Bootstrap_CASServer) Validate() error

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

func (m *Bootstrap_CASServer) ValidateAll() error

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

type Bootstrap_CASServerMultiError added in v0.8.95

type Bootstrap_CASServerMultiError []error

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

func (Bootstrap_CASServerMultiError) AllErrors added in v0.8.95

func (m Bootstrap_CASServerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Bootstrap_CASServerMultiError) Error added in v0.8.95

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

type Bootstrap_CASServerValidationError added in v0.8.95

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

Bootstrap_CASServerValidationError is the validation error returned by Bootstrap_CASServer.Validate if the designated constraints aren't met.

func (Bootstrap_CASServerValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Bootstrap_CASServerValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Bootstrap_CASServerValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Bootstrap_CASServerValidationError) Field added in v0.8.95

Field function returns field value.

func (Bootstrap_CASServerValidationError) Key added in v0.8.95

Key function returns key value.

func (Bootstrap_CASServerValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Bootstrap_Observability

type Bootstrap_Observability struct {
	Sentry *Bootstrap_Observability_Sentry `protobuf:"bytes,1,opt,name=sentry,proto3" json:"sentry,omitempty"`
	// contains filtered or unexported fields
}

func (*Bootstrap_Observability) Descriptor deprecated

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

Deprecated: Use Bootstrap_Observability.ProtoReflect.Descriptor instead.

func (*Bootstrap_Observability) GetSentry

func (*Bootstrap_Observability) ProtoMessage

func (*Bootstrap_Observability) ProtoMessage()

func (*Bootstrap_Observability) ProtoReflect

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

func (*Bootstrap_Observability) Reset

func (x *Bootstrap_Observability) Reset()

func (*Bootstrap_Observability) String

func (x *Bootstrap_Observability) String() string

func (*Bootstrap_Observability) Validate added in v0.8.95

func (m *Bootstrap_Observability) Validate() error

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

func (m *Bootstrap_Observability) ValidateAll() error

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

type Bootstrap_ObservabilityMultiError added in v0.8.95

type Bootstrap_ObservabilityMultiError []error

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

func (Bootstrap_ObservabilityMultiError) AllErrors added in v0.8.95

func (m Bootstrap_ObservabilityMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Bootstrap_ObservabilityMultiError) Error added in v0.8.95

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

type Bootstrap_ObservabilityValidationError added in v0.8.95

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

Bootstrap_ObservabilityValidationError is the validation error returned by Bootstrap_Observability.Validate if the designated constraints aren't met.

func (Bootstrap_ObservabilityValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Bootstrap_ObservabilityValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Bootstrap_ObservabilityValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Bootstrap_ObservabilityValidationError) Field added in v0.8.95

Field function returns field value.

func (Bootstrap_ObservabilityValidationError) Key added in v0.8.95

Key function returns key value.

func (Bootstrap_ObservabilityValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Bootstrap_Observability_Sentry

type Bootstrap_Observability_Sentry 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 (*Bootstrap_Observability_Sentry) Descriptor deprecated

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

Deprecated: Use Bootstrap_Observability_Sentry.ProtoReflect.Descriptor instead.

func (*Bootstrap_Observability_Sentry) GetDsn

func (*Bootstrap_Observability_Sentry) GetEnvironment

func (x *Bootstrap_Observability_Sentry) GetEnvironment() string

func (*Bootstrap_Observability_Sentry) ProtoMessage

func (*Bootstrap_Observability_Sentry) ProtoMessage()

func (*Bootstrap_Observability_Sentry) ProtoReflect

func (*Bootstrap_Observability_Sentry) Reset

func (x *Bootstrap_Observability_Sentry) Reset()

func (*Bootstrap_Observability_Sentry) String

func (*Bootstrap_Observability_Sentry) Validate added in v0.8.95

func (m *Bootstrap_Observability_Sentry) Validate() error

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

func (m *Bootstrap_Observability_Sentry) ValidateAll() error

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

type Bootstrap_Observability_SentryMultiError added in v0.8.95

type Bootstrap_Observability_SentryMultiError []error

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

func (Bootstrap_Observability_SentryMultiError) AllErrors added in v0.8.95

AllErrors returns a list of validation violation errors.

func (Bootstrap_Observability_SentryMultiError) Error added in v0.8.95

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

type Bootstrap_Observability_SentryValidationError added in v0.8.95

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

Bootstrap_Observability_SentryValidationError is the validation error returned by Bootstrap_Observability_Sentry.Validate if the designated constraints aren't met.

func (Bootstrap_Observability_SentryValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Bootstrap_Observability_SentryValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Bootstrap_Observability_SentryValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Bootstrap_Observability_SentryValidationError) Field added in v0.8.95

Field function returns field value.

func (Bootstrap_Observability_SentryValidationError) Key added in v0.8.95

Key function returns key value.

func (Bootstrap_Observability_SentryValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Credentials

type Credentials struct {

	// Types that are assignable to Backend:
	//
	//	*Credentials_AwsSecretManager
	//	*Credentials_Vault_
	Backend isCredentials_Backend `protobuf_oneof:"backend"`
	// contains filtered or unexported fields
}

func (*Credentials) Descriptor deprecated

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

Deprecated: Use Credentials.ProtoReflect.Descriptor instead.

func (*Credentials) GetAwsSecretManager

func (x *Credentials) GetAwsSecretManager() *Credentials_AWSSecretManager

func (*Credentials) GetBackend

func (m *Credentials) GetBackend() isCredentials_Backend

func (*Credentials) GetVault

func (x *Credentials) GetVault() *Credentials_Vault

func (*Credentials) ProtoMessage

func (*Credentials) ProtoMessage()

func (*Credentials) ProtoReflect

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

func (*Credentials) Reset

func (x *Credentials) Reset()

func (*Credentials) String

func (x *Credentials) String() string

func (*Credentials) Validate added in v0.8.95

func (m *Credentials) Validate() error

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

func (m *Credentials) ValidateAll() error

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

type CredentialsMultiError added in v0.8.95

type CredentialsMultiError []error

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

func (CredentialsMultiError) AllErrors added in v0.8.95

func (m CredentialsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CredentialsMultiError) Error added in v0.8.95

func (m CredentialsMultiError) Error() string

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

type CredentialsValidationError added in v0.8.95

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

CredentialsValidationError is the validation error returned by Credentials.Validate if the designated constraints aren't met.

func (CredentialsValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (CredentialsValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (CredentialsValidationError) ErrorName added in v0.8.95

func (e CredentialsValidationError) ErrorName() string

ErrorName returns error name.

func (CredentialsValidationError) Field added in v0.8.95

Field function returns field value.

func (CredentialsValidationError) Key added in v0.8.95

Key function returns key value.

func (CredentialsValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Credentials_AWSSecretManager

type Credentials_AWSSecretManager struct {
	Creds        *Credentials_AWSSecretManager_Creds `protobuf:"bytes,1,opt,name=creds,proto3" json:"creds,omitempty"`
	Region       string                              `protobuf:"bytes,2,opt,name=region,proto3" json:"region,omitempty"`
	SecretPrefix string                              `protobuf:"bytes,3,opt,name=secret_prefix,json=secretPrefix,proto3" json:"secret_prefix,omitempty"`
	// contains filtered or unexported fields
}

Top level is deprecated now

func (*Credentials_AWSSecretManager) Descriptor deprecated

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

Deprecated: Use Credentials_AWSSecretManager.ProtoReflect.Descriptor instead.

func (*Credentials_AWSSecretManager) GetCreds

func (*Credentials_AWSSecretManager) GetRegion

func (x *Credentials_AWSSecretManager) GetRegion() string

func (*Credentials_AWSSecretManager) GetSecretPrefix

func (x *Credentials_AWSSecretManager) GetSecretPrefix() string

func (*Credentials_AWSSecretManager) ProtoMessage

func (*Credentials_AWSSecretManager) ProtoMessage()

func (*Credentials_AWSSecretManager) ProtoReflect

func (*Credentials_AWSSecretManager) Reset

func (x *Credentials_AWSSecretManager) Reset()

func (*Credentials_AWSSecretManager) String

func (*Credentials_AWSSecretManager) Validate added in v0.8.95

func (m *Credentials_AWSSecretManager) Validate() error

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

func (m *Credentials_AWSSecretManager) ValidateAll() error

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

type Credentials_AWSSecretManagerMultiError added in v0.8.95

type Credentials_AWSSecretManagerMultiError []error

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

func (Credentials_AWSSecretManagerMultiError) AllErrors added in v0.8.95

AllErrors returns a list of validation violation errors.

func (Credentials_AWSSecretManagerMultiError) Error added in v0.8.95

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

type Credentials_AWSSecretManagerValidationError added in v0.8.95

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

Credentials_AWSSecretManagerValidationError is the validation error returned by Credentials_AWSSecretManager.Validate if the designated constraints aren't met.

func (Credentials_AWSSecretManagerValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Credentials_AWSSecretManagerValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Credentials_AWSSecretManagerValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Credentials_AWSSecretManagerValidationError) Field added in v0.8.95

Field function returns field value.

func (Credentials_AWSSecretManagerValidationError) Key added in v0.8.95

Key function returns key value.

func (Credentials_AWSSecretManagerValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Credentials_AWSSecretManager_Creds

type Credentials_AWSSecretManager_Creds struct {
	AccessKey string `protobuf:"bytes,1,opt,name=access_key,json=accessKey,proto3" json:"access_key,omitempty"`
	SecretKey string `protobuf:"bytes,2,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	// contains filtered or unexported fields
}

func (*Credentials_AWSSecretManager_Creds) Descriptor deprecated

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

Deprecated: Use Credentials_AWSSecretManager_Creds.ProtoReflect.Descriptor instead.

func (*Credentials_AWSSecretManager_Creds) GetAccessKey

func (x *Credentials_AWSSecretManager_Creds) GetAccessKey() string

func (*Credentials_AWSSecretManager_Creds) GetSecretKey

func (x *Credentials_AWSSecretManager_Creds) GetSecretKey() string

func (*Credentials_AWSSecretManager_Creds) ProtoMessage

func (*Credentials_AWSSecretManager_Creds) ProtoMessage()

func (*Credentials_AWSSecretManager_Creds) ProtoReflect

func (*Credentials_AWSSecretManager_Creds) Reset

func (*Credentials_AWSSecretManager_Creds) String

func (*Credentials_AWSSecretManager_Creds) Validate added in v0.8.95

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

func (m *Credentials_AWSSecretManager_Creds) ValidateAll() error

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

type Credentials_AWSSecretManager_CredsMultiError added in v0.8.95

type Credentials_AWSSecretManager_CredsMultiError []error

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

func (Credentials_AWSSecretManager_CredsMultiError) AllErrors added in v0.8.95

AllErrors returns a list of validation violation errors.

func (Credentials_AWSSecretManager_CredsMultiError) Error added in v0.8.95

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

type Credentials_AWSSecretManager_CredsValidationError added in v0.8.95

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

Credentials_AWSSecretManager_CredsValidationError is the validation error returned by Credentials_AWSSecretManager_Creds.Validate if the designated constraints aren't met.

func (Credentials_AWSSecretManager_CredsValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Credentials_AWSSecretManager_CredsValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Credentials_AWSSecretManager_CredsValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Credentials_AWSSecretManager_CredsValidationError) Field added in v0.8.95

Field function returns field value.

func (Credentials_AWSSecretManager_CredsValidationError) Key added in v0.8.95

Key function returns key value.

func (Credentials_AWSSecretManager_CredsValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Credentials_AwsSecretManager

type Credentials_AwsSecretManager struct {
	AwsSecretManager *Credentials_AWSSecretManager `protobuf:"bytes,1,opt,name=aws_secret_manager,json=awsSecretManager,proto3,oneof"`
}

type Credentials_Vault

type Credentials_Vault struct {

	// TODO: Use application role auth instead
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	// Instance address, including port
	// i.e "http://127.0.0.1:8200"
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// mount path of the kv engine, default /secret
	MountPath    string `protobuf:"bytes,3,opt,name=mount_path,json=mountPath,proto3" json:"mount_path,omitempty"`
	SecretPrefix string `protobuf:"bytes,4,opt,name=secret_prefix,json=secretPrefix,proto3" json:"secret_prefix,omitempty"`
	// contains filtered or unexported fields
}

func (*Credentials_Vault) Descriptor deprecated

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

Deprecated: Use Credentials_Vault.ProtoReflect.Descriptor instead.

func (*Credentials_Vault) GetAddress

func (x *Credentials_Vault) GetAddress() string

func (*Credentials_Vault) GetMountPath

func (x *Credentials_Vault) GetMountPath() string

func (*Credentials_Vault) GetSecretPrefix

func (x *Credentials_Vault) GetSecretPrefix() string

func (*Credentials_Vault) GetToken

func (x *Credentials_Vault) GetToken() string

func (*Credentials_Vault) ProtoMessage

func (*Credentials_Vault) ProtoMessage()

func (*Credentials_Vault) ProtoReflect

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

func (*Credentials_Vault) Reset

func (x *Credentials_Vault) Reset()

func (*Credentials_Vault) String

func (x *Credentials_Vault) String() string

func (*Credentials_Vault) Validate added in v0.8.95

func (m *Credentials_Vault) Validate() error

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

func (m *Credentials_Vault) ValidateAll() error

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

type Credentials_VaultMultiError added in v0.8.95

type Credentials_VaultMultiError []error

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

func (Credentials_VaultMultiError) AllErrors added in v0.8.95

func (m Credentials_VaultMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Credentials_VaultMultiError) Error added in v0.8.95

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

type Credentials_VaultValidationError added in v0.8.95

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

Credentials_VaultValidationError is the validation error returned by Credentials_Vault.Validate if the designated constraints aren't met.

func (Credentials_VaultValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Credentials_VaultValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Credentials_VaultValidationError) ErrorName added in v0.8.95

ErrorName returns error name.

func (Credentials_VaultValidationError) Field added in v0.8.95

Field function returns field value.

func (Credentials_VaultValidationError) Key added in v0.8.95

Key function returns key value.

func (Credentials_VaultValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Credentials_Vault_

type Credentials_Vault_ struct {
	Vault *Credentials_Vault `protobuf:"bytes,2,opt,name=vault,proto3,oneof"`
}

type Data

type Data struct {
	Database *Data_Database `protobuf:"bytes,1,opt,name=database,proto3" json:"database,omitempty"`
	// contains filtered or unexported fields
}

func (*Data) Descriptor deprecated

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

Deprecated: Use Data.ProtoReflect.Descriptor instead.

func (*Data) GetDatabase

func (x *Data) GetDatabase() *Data_Database

func (*Data) ProtoMessage

func (*Data) ProtoMessage()

func (*Data) ProtoReflect

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

func (*Data) Reset

func (x *Data) Reset()

func (*Data) String

func (x *Data) String() string

func (*Data) Validate added in v0.8.95

func (m *Data) Validate() error

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

func (m *Data) ValidateAll() error

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

type DataMultiError added in v0.8.95

type DataMultiError []error

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

func (DataMultiError) AllErrors added in v0.8.95

func (m DataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DataMultiError) Error added in v0.8.95

func (m DataMultiError) Error() string

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

type DataValidationError added in v0.8.95

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

DataValidationError is the validation error returned by Data.Validate if the designated constraints aren't met.

func (DataValidationError) Cause added in v0.8.95

func (e DataValidationError) Cause() error

Cause function returns cause value.

func (DataValidationError) Error added in v0.8.95

func (e DataValidationError) Error() string

Error satisfies the builtin error interface

func (DataValidationError) ErrorName added in v0.8.95

func (e DataValidationError) ErrorName() string

ErrorName returns error name.

func (DataValidationError) Field added in v0.8.95

func (e DataValidationError) Field() string

Field function returns field value.

func (DataValidationError) Key added in v0.8.95

func (e DataValidationError) Key() bool

Key function returns key value.

func (DataValidationError) Reason added in v0.8.95

func (e DataValidationError) Reason() string

Reason function returns reason value.

type Data_Database

type Data_Database struct {
	Driver string `protobuf:"bytes,1,opt,name=driver,proto3" json:"driver,omitempty"`
	Source string `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*Data_Database) Descriptor deprecated

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

Deprecated: Use Data_Database.ProtoReflect.Descriptor instead.

func (*Data_Database) GetDriver

func (x *Data_Database) GetDriver() string

func (*Data_Database) GetSource

func (x *Data_Database) GetSource() string

func (*Data_Database) ProtoMessage

func (*Data_Database) ProtoMessage()

func (*Data_Database) ProtoReflect

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

func (*Data_Database) Reset

func (x *Data_Database) Reset()

func (*Data_Database) String

func (x *Data_Database) String() string

func (*Data_Database) Validate added in v0.8.95

func (m *Data_Database) Validate() error

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

func (m *Data_Database) ValidateAll() error

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

type Data_DatabaseMultiError added in v0.8.95

type Data_DatabaseMultiError []error

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

func (Data_DatabaseMultiError) AllErrors added in v0.8.95

func (m Data_DatabaseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Data_DatabaseMultiError) Error added in v0.8.95

func (m Data_DatabaseMultiError) Error() string

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

type Data_DatabaseValidationError added in v0.8.95

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

Data_DatabaseValidationError is the validation error returned by Data_Database.Validate if the designated constraints aren't met.

func (Data_DatabaseValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Data_DatabaseValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Data_DatabaseValidationError) ErrorName added in v0.8.95

func (e Data_DatabaseValidationError) ErrorName() string

ErrorName returns error name.

func (Data_DatabaseValidationError) Field added in v0.8.95

Field function returns field value.

func (Data_DatabaseValidationError) Key added in v0.8.95

Key function returns key value.

func (Data_DatabaseValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Server

type Server struct {
	Http *Server_HTTP `protobuf:"bytes,1,opt,name=http,proto3" json:"http,omitempty"`
	Grpc *Server_GRPC `protobuf:"bytes,2,opt,name=grpc,proto3" json:"grpc,omitempty"`
	// HTTPMetrics defines the HTTP server that exposes prometheus metrics
	HttpMetrics *Server_HTTP `protobuf:"bytes,3,opt,name=http_metrics,json=httpMetrics,proto3" json:"http_metrics,omitempty"`
	// contains filtered or unexported fields
}

func (*Server) Descriptor deprecated

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

Deprecated: Use Server.ProtoReflect.Descriptor instead.

func (*Server) GetGrpc

func (x *Server) GetGrpc() *Server_GRPC

func (*Server) GetHttp

func (x *Server) GetHttp() *Server_HTTP

func (*Server) GetHttpMetrics

func (x *Server) GetHttpMetrics() *Server_HTTP

func (*Server) ProtoMessage

func (*Server) ProtoMessage()

func (*Server) ProtoReflect

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

func (*Server) Reset

func (x *Server) Reset()

func (*Server) String

func (x *Server) String() string

func (*Server) Validate added in v0.8.95

func (m *Server) Validate() error

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

func (m *Server) ValidateAll() error

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

type ServerMultiError added in v0.8.95

type ServerMultiError []error

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

func (ServerMultiError) AllErrors added in v0.8.95

func (m ServerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServerMultiError) Error added in v0.8.95

func (m ServerMultiError) Error() string

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

type ServerValidationError added in v0.8.95

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

ServerValidationError is the validation error returned by Server.Validate if the designated constraints aren't met.

func (ServerValidationError) Cause added in v0.8.95

func (e ServerValidationError) Cause() error

Cause function returns cause value.

func (ServerValidationError) Error added in v0.8.95

func (e ServerValidationError) Error() string

Error satisfies the builtin error interface

func (ServerValidationError) ErrorName added in v0.8.95

func (e ServerValidationError) ErrorName() string

ErrorName returns error name.

func (ServerValidationError) Field added in v0.8.95

func (e ServerValidationError) Field() string

Field function returns field value.

func (ServerValidationError) Key added in v0.8.95

func (e ServerValidationError) Key() bool

Key function returns key value.

func (ServerValidationError) Reason added in v0.8.95

func (e ServerValidationError) Reason() string

Reason function returns reason value.

type Server_GRPC

type Server_GRPC struct {
	Network string               `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Addr    string               `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*Server_GRPC) Descriptor deprecated

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

Deprecated: Use Server_GRPC.ProtoReflect.Descriptor instead.

func (*Server_GRPC) GetAddr

func (x *Server_GRPC) GetAddr() string

func (*Server_GRPC) GetNetwork

func (x *Server_GRPC) GetNetwork() string

func (*Server_GRPC) GetTimeout

func (x *Server_GRPC) GetTimeout() *durationpb.Duration

func (*Server_GRPC) ProtoMessage

func (*Server_GRPC) ProtoMessage()

func (*Server_GRPC) ProtoReflect

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

func (*Server_GRPC) Reset

func (x *Server_GRPC) Reset()

func (*Server_GRPC) String

func (x *Server_GRPC) String() string

func (*Server_GRPC) Validate added in v0.8.95

func (m *Server_GRPC) Validate() error

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

func (m *Server_GRPC) ValidateAll() error

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

type Server_GRPCMultiError added in v0.8.95

type Server_GRPCMultiError []error

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

func (Server_GRPCMultiError) AllErrors added in v0.8.95

func (m Server_GRPCMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Server_GRPCMultiError) Error added in v0.8.95

func (m Server_GRPCMultiError) Error() string

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

type Server_GRPCValidationError added in v0.8.95

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

Server_GRPCValidationError is the validation error returned by Server_GRPC.Validate if the designated constraints aren't met.

func (Server_GRPCValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Server_GRPCValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Server_GRPCValidationError) ErrorName added in v0.8.95

func (e Server_GRPCValidationError) ErrorName() string

ErrorName returns error name.

func (Server_GRPCValidationError) Field added in v0.8.95

Field function returns field value.

func (Server_GRPCValidationError) Key added in v0.8.95

Key function returns key value.

func (Server_GRPCValidationError) Reason added in v0.8.95

Reason function returns reason value.

type Server_HTTP

type Server_HTTP struct {
	Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Addr    string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	// In the form of [scheme]://[host] i.e https://instance.chainloop.dev
	// Optional
	ExternalUrl string               `protobuf:"bytes,4,opt,name=external_url,json=externalUrl,proto3" json:"external_url,omitempty"`
	Timeout     *durationpb.Duration `protobuf:"bytes,5,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*Server_HTTP) Descriptor deprecated

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

Deprecated: Use Server_HTTP.ProtoReflect.Descriptor instead.

func (*Server_HTTP) GetAddr

func (x *Server_HTTP) GetAddr() string

func (*Server_HTTP) GetExternalUrl added in v0.8.99

func (x *Server_HTTP) GetExternalUrl() string

func (*Server_HTTP) GetNetwork

func (x *Server_HTTP) GetNetwork() string

func (*Server_HTTP) GetTimeout

func (x *Server_HTTP) GetTimeout() *durationpb.Duration

func (*Server_HTTP) ProtoMessage

func (*Server_HTTP) ProtoMessage()

func (*Server_HTTP) ProtoReflect

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

func (*Server_HTTP) Reset

func (x *Server_HTTP) Reset()

func (*Server_HTTP) String

func (x *Server_HTTP) String() string

func (*Server_HTTP) Validate added in v0.8.95

func (m *Server_HTTP) Validate() error

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

func (m *Server_HTTP) ValidateAll() error

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

type Server_HTTPMultiError added in v0.8.95

type Server_HTTPMultiError []error

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

func (Server_HTTPMultiError) AllErrors added in v0.8.95

func (m Server_HTTPMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Server_HTTPMultiError) Error added in v0.8.95

func (m Server_HTTPMultiError) Error() string

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

type Server_HTTPValidationError added in v0.8.95

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

Server_HTTPValidationError is the validation error returned by Server_HTTP.Validate if the designated constraints aren't met.

func (Server_HTTPValidationError) Cause added in v0.8.95

Cause function returns cause value.

func (Server_HTTPValidationError) Error added in v0.8.95

Error satisfies the builtin error interface

func (Server_HTTPValidationError) ErrorName added in v0.8.95

func (e Server_HTTPValidationError) ErrorName() string

ErrorName returns error name.

func (Server_HTTPValidationError) Field added in v0.8.95

Field function returns field value.

func (Server_HTTPValidationError) Key added in v0.8.95

Key function returns key value.

func (Server_HTTPValidationError) Reason added in v0.8.95

Reason function returns reason value.

Jump to

Keyboard shortcuts

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