/pkg/api/envoy/config/listener/v4alpha/udp_listener_config.pb.validate.go
https://github.com/datawire/ambassador · Go · 189 lines · 126 code · 36 blank · 27 comment · 14 complexity · bc16f3202affbb76d08846cdfcb01fa1 MD5 · raw file
- // Code generated by protoc-gen-validate. DO NOT EDIT.
- // source: envoy/config/listener/v4alpha/udp_listener_config.proto
- package envoy_config_listener_v4alpha
- import (
- "bytes"
- "errors"
- "fmt"
- "net"
- "net/mail"
- "net/url"
- "regexp"
- "strings"
- "time"
- "unicode/utf8"
- "github.com/golang/protobuf/ptypes"
- )
- // ensure the imports are used
- var (
- _ = bytes.MinRead
- _ = errors.New("")
- _ = fmt.Print
- _ = utf8.UTFMax
- _ = (*regexp.Regexp)(nil)
- _ = (*strings.Reader)(nil)
- _ = net.IPv4len
- _ = time.Duration(0)
- _ = (*url.URL)(nil)
- _ = (*mail.Address)(nil)
- _ = ptypes.DynamicAny{}
- )
- // define the regex for a UUID once up-front
- var _udp_listener_config_uuidPattern = regexp.MustCompile("^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$")
- // Validate checks the field values on UdpListenerConfig with the rules defined
- // in the proto definition for this message. If any rules are violated, an
- // error is returned.
- func (m *UdpListenerConfig) Validate() error {
- if m == nil {
- return nil
- }
- // no validation rules for UdpListenerName
- switch m.ConfigType.(type) {
- case *UdpListenerConfig_TypedConfig:
- if v, ok := interface{}(m.GetTypedConfig()).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return UdpListenerConfigValidationError{
- field: "TypedConfig",
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- }
- return nil
- }
- // UdpListenerConfigValidationError is the validation error returned by
- // UdpListenerConfig.Validate if the designated constraints aren't met.
- type UdpListenerConfigValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e UdpListenerConfigValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e UdpListenerConfigValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e UdpListenerConfigValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e UdpListenerConfigValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e UdpListenerConfigValidationError) ErrorName() string {
- return "UdpListenerConfigValidationError"
- }
- // Error satisfies the builtin error interface
- func (e UdpListenerConfigValidationError) Error() string {
- cause := ""
- if e.cause != nil {
- cause = fmt.Sprintf(" | caused by: %v", e.cause)
- }
- key := ""
- if e.key {
- key = "key for "
- }
- return fmt.Sprintf(
- "invalid %sUdpListenerConfig.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = UdpListenerConfigValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = UdpListenerConfigValidationError{}
- // Validate checks the field values on ActiveRawUdpListenerConfig with the
- // rules defined in the proto definition for this message. If any rules are
- // violated, an error is returned.
- func (m *ActiveRawUdpListenerConfig) Validate() error {
- if m == nil {
- return nil
- }
- return nil
- }
- // ActiveRawUdpListenerConfigValidationError is the validation error returned
- // by ActiveRawUdpListenerConfig.Validate if the designated constraints aren't met.
- type ActiveRawUdpListenerConfigValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e ActiveRawUdpListenerConfigValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e ActiveRawUdpListenerConfigValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e ActiveRawUdpListenerConfigValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e ActiveRawUdpListenerConfigValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e ActiveRawUdpListenerConfigValidationError) ErrorName() string {
- return "ActiveRawUdpListenerConfigValidationError"
- }
- // Error satisfies the builtin error interface
- func (e ActiveRawUdpListenerConfigValidationError) Error() string {
- cause := ""
- if e.cause != nil {
- cause = fmt.Sprintf(" | caused by: %v", e.cause)
- }
- key := ""
- if e.key {
- key = "key for "
- }
- return fmt.Sprintf(
- "invalid %sActiveRawUdpListenerConfig.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = ActiveRawUdpListenerConfigValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = ActiveRawUdpListenerConfigValidationError{}