Documentation ¶
Index ¶
- Variables
- type DnsSanInput
- func (*DnsSanInput) Descriptor() ([]byte, []int)deprecated
- func (*DnsSanInput) ProtoMessage()
- func (x *DnsSanInput) ProtoReflect() protoreflect.Message
- func (x *DnsSanInput) Reset()
- func (x *DnsSanInput) String() string
- func (m *DnsSanInput) Validate() error
- func (m *DnsSanInput) ValidateAll() error
- type DnsSanInputMultiError
- type DnsSanInputValidationError
- func (e DnsSanInputValidationError) Cause() error
- func (e DnsSanInputValidationError) Error() string
- func (e DnsSanInputValidationError) ErrorName() string
- func (e DnsSanInputValidationError) Field() string
- func (e DnsSanInputValidationError) Key() bool
- func (e DnsSanInputValidationError) Reason() string
- type SubjectInput
- func (*SubjectInput) Descriptor() ([]byte, []int)deprecated
- func (*SubjectInput) ProtoMessage()
- func (x *SubjectInput) ProtoReflect() protoreflect.Message
- func (x *SubjectInput) Reset()
- func (x *SubjectInput) String() string
- func (m *SubjectInput) Validate() error
- func (m *SubjectInput) ValidateAll() error
- type SubjectInputMultiError
- type SubjectInputValidationError
- func (e SubjectInputValidationError) Cause() error
- func (e SubjectInputValidationError) Error() string
- func (e SubjectInputValidationError) ErrorName() string
- func (e SubjectInputValidationError) Field() string
- func (e SubjectInputValidationError) Key() bool
- func (e SubjectInputValidationError) Reason() string
- type UriSanInput
- func (*UriSanInput) Descriptor() ([]byte, []int)deprecated
- func (*UriSanInput) ProtoMessage()
- func (x *UriSanInput) ProtoReflect() protoreflect.Message
- func (x *UriSanInput) Reset()
- func (x *UriSanInput) String() string
- func (m *UriSanInput) Validate() error
- func (m *UriSanInput) ValidateAll() error
- type UriSanInputMultiError
- type UriSanInputValidationError
- func (e UriSanInputValidationError) Cause() error
- func (e UriSanInputValidationError) Error() string
- func (e UriSanInputValidationError) ErrorName() string
- func (e UriSanInputValidationError) Field() string
- func (e UriSanInputValidationError) Key() bool
- func (e UriSanInputValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_envoy_extensions_matching_common_inputs_ssl_v3_ssl_inputs_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type DnsSanInput ¶
type DnsSanInput struct {
// contains filtered or unexported fields
}
List of comma-delimited DNS entries in the SAN field of the peer certificate for a downstream. [#extension: envoy.matching.inputs.dns_san]
func (*DnsSanInput) Descriptor
deprecated
func (*DnsSanInput) Descriptor() ([]byte, []int)
Deprecated: Use DnsSanInput.ProtoReflect.Descriptor instead.
func (*DnsSanInput) ProtoMessage ¶
func (*DnsSanInput) ProtoMessage()
func (*DnsSanInput) ProtoReflect ¶
func (x *DnsSanInput) ProtoReflect() protoreflect.Message
func (*DnsSanInput) Reset ¶
func (x *DnsSanInput) Reset()
func (*DnsSanInput) String ¶
func (x *DnsSanInput) String() string
func (*DnsSanInput) Validate ¶
func (m *DnsSanInput) Validate() error
Validate checks the field values on DnsSanInput 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 (*DnsSanInput) ValidateAll ¶
func (m *DnsSanInput) ValidateAll() error
ValidateAll checks the field values on DnsSanInput 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 DnsSanInputMultiError, or nil if none found.
type DnsSanInputMultiError ¶
type DnsSanInputMultiError []error
DnsSanInputMultiError is an error wrapping multiple validation errors returned by DnsSanInput.ValidateAll() if the designated constraints aren't met.
func (DnsSanInputMultiError) AllErrors ¶
func (m DnsSanInputMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (DnsSanInputMultiError) Error ¶
func (m DnsSanInputMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type DnsSanInputValidationError ¶
type DnsSanInputValidationError struct {
// contains filtered or unexported fields
}
DnsSanInputValidationError is the validation error returned by DnsSanInput.Validate if the designated constraints aren't met.
func (DnsSanInputValidationError) Cause ¶
func (e DnsSanInputValidationError) Cause() error
Cause function returns cause value.
func (DnsSanInputValidationError) Error ¶
func (e DnsSanInputValidationError) Error() string
Error satisfies the builtin error interface
func (DnsSanInputValidationError) ErrorName ¶
func (e DnsSanInputValidationError) ErrorName() string
ErrorName returns error name.
func (DnsSanInputValidationError) Field ¶
func (e DnsSanInputValidationError) Field() string
Field function returns field value.
func (DnsSanInputValidationError) Key ¶
func (e DnsSanInputValidationError) Key() bool
Key function returns key value.
func (DnsSanInputValidationError) Reason ¶
func (e DnsSanInputValidationError) Reason() string
Reason function returns reason value.
type SubjectInput ¶
type SubjectInput struct {
// contains filtered or unexported fields
}
Input that matches the subject field of the peer certificate in RFC 2253 format for a downstream. [#extension: envoy.matching.inputs.subject]
func (*SubjectInput) Descriptor
deprecated
func (*SubjectInput) Descriptor() ([]byte, []int)
Deprecated: Use SubjectInput.ProtoReflect.Descriptor instead.
func (*SubjectInput) ProtoMessage ¶
func (*SubjectInput) ProtoMessage()
func (*SubjectInput) ProtoReflect ¶
func (x *SubjectInput) ProtoReflect() protoreflect.Message
func (*SubjectInput) Reset ¶
func (x *SubjectInput) Reset()
func (*SubjectInput) String ¶
func (x *SubjectInput) String() string
func (*SubjectInput) Validate ¶
func (m *SubjectInput) Validate() error
Validate checks the field values on SubjectInput 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 (*SubjectInput) ValidateAll ¶
func (m *SubjectInput) ValidateAll() error
ValidateAll checks the field values on SubjectInput 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 SubjectInputMultiError, or nil if none found.
type SubjectInputMultiError ¶
type SubjectInputMultiError []error
SubjectInputMultiError is an error wrapping multiple validation errors returned by SubjectInput.ValidateAll() if the designated constraints aren't met.
func (SubjectInputMultiError) AllErrors ¶
func (m SubjectInputMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (SubjectInputMultiError) Error ¶
func (m SubjectInputMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type SubjectInputValidationError ¶
type SubjectInputValidationError struct {
// contains filtered or unexported fields
}
SubjectInputValidationError is the validation error returned by SubjectInput.Validate if the designated constraints aren't met.
func (SubjectInputValidationError) Cause ¶
func (e SubjectInputValidationError) Cause() error
Cause function returns cause value.
func (SubjectInputValidationError) Error ¶
func (e SubjectInputValidationError) Error() string
Error satisfies the builtin error interface
func (SubjectInputValidationError) ErrorName ¶
func (e SubjectInputValidationError) ErrorName() string
ErrorName returns error name.
func (SubjectInputValidationError) Field ¶
func (e SubjectInputValidationError) Field() string
Field function returns field value.
func (SubjectInputValidationError) Key ¶
func (e SubjectInputValidationError) Key() bool
Key function returns key value.
func (SubjectInputValidationError) Reason ¶
func (e SubjectInputValidationError) Reason() string
Reason function returns reason value.
type UriSanInput ¶
type UriSanInput struct {
// contains filtered or unexported fields
}
List of comma-delimited URIs in the SAN field of the peer certificate for a downstream. [#extension: envoy.matching.inputs.uri_san]
func (*UriSanInput) Descriptor
deprecated
func (*UriSanInput) Descriptor() ([]byte, []int)
Deprecated: Use UriSanInput.ProtoReflect.Descriptor instead.
func (*UriSanInput) ProtoMessage ¶
func (*UriSanInput) ProtoMessage()
func (*UriSanInput) ProtoReflect ¶
func (x *UriSanInput) ProtoReflect() protoreflect.Message
func (*UriSanInput) Reset ¶
func (x *UriSanInput) Reset()
func (*UriSanInput) String ¶
func (x *UriSanInput) String() string
func (*UriSanInput) Validate ¶
func (m *UriSanInput) Validate() error
Validate checks the field values on UriSanInput 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 (*UriSanInput) ValidateAll ¶
func (m *UriSanInput) ValidateAll() error
ValidateAll checks the field values on UriSanInput 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 UriSanInputMultiError, or nil if none found.
type UriSanInputMultiError ¶
type UriSanInputMultiError []error
UriSanInputMultiError is an error wrapping multiple validation errors returned by UriSanInput.ValidateAll() if the designated constraints aren't met.
func (UriSanInputMultiError) AllErrors ¶
func (m UriSanInputMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (UriSanInputMultiError) Error ¶
func (m UriSanInputMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type UriSanInputValidationError ¶
type UriSanInputValidationError struct {
// contains filtered or unexported fields
}
UriSanInputValidationError is the validation error returned by UriSanInput.Validate if the designated constraints aren't met.
func (UriSanInputValidationError) Cause ¶
func (e UriSanInputValidationError) Cause() error
Cause function returns cause value.
func (UriSanInputValidationError) Error ¶
func (e UriSanInputValidationError) Error() string
Error satisfies the builtin error interface
func (UriSanInputValidationError) ErrorName ¶
func (e UriSanInputValidationError) ErrorName() string
ErrorName returns error name.
func (UriSanInputValidationError) Field ¶
func (e UriSanInputValidationError) Field() string
Field function returns field value.
func (UriSanInputValidationError) Key ¶
func (e UriSanInputValidationError) Key() bool
Key function returns key value.
func (UriSanInputValidationError) Reason ¶
func (e UriSanInputValidationError) Reason() string
Reason function returns reason value.