/pkg/api/envoy/extensions/filters/http/grpc_http1_reverse_bridge/v3/config.pb.validate.go
https://github.com/datawire/ambassador · Go · 180 lines · 118 code · 34 blank · 28 comment · 11 complexity · 013f02b69bafe53e5a83ac17c7a0cf6e MD5 · raw file
- // Code generated by protoc-gen-validate. DO NOT EDIT.
- // source: envoy/extensions/filters/http/grpc_http1_reverse_bridge/v3/config.proto
- package envoy_extensions_filters_http_grpc_http1_reverse_bridge_v3
- 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 _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 FilterConfig with the rules defined in
- // the proto definition for this message. If any rules are violated, an error
- // is returned.
- func (m *FilterConfig) Validate() error {
- if m == nil {
- return nil
- }
- if len(m.GetContentType()) < 1 {
- return FilterConfigValidationError{
- field: "ContentType",
- reason: "value length must be at least 1 bytes",
- }
- }
- // no validation rules for WithholdGrpcFrames
- return nil
- }
- // FilterConfigValidationError is the validation error returned by
- // FilterConfig.Validate if the designated constraints aren't met.
- type FilterConfigValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e FilterConfigValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e FilterConfigValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e FilterConfigValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e FilterConfigValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e FilterConfigValidationError) ErrorName() string { return "FilterConfigValidationError" }
- // Error satisfies the builtin error interface
- func (e FilterConfigValidationError) 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 %sFilterConfig.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = FilterConfigValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = FilterConfigValidationError{}
- // Validate checks the field values on FilterConfigPerRoute with the rules
- // defined in the proto definition for this message. If any rules are
- // violated, an error is returned.
- func (m *FilterConfigPerRoute) Validate() error {
- if m == nil {
- return nil
- }
- // no validation rules for Disabled
- return nil
- }
- // FilterConfigPerRouteValidationError is the validation error returned by
- // FilterConfigPerRoute.Validate if the designated constraints aren't met.
- type FilterConfigPerRouteValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e FilterConfigPerRouteValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e FilterConfigPerRouteValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e FilterConfigPerRouteValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e FilterConfigPerRouteValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e FilterConfigPerRouteValidationError) ErrorName() string {
- return "FilterConfigPerRouteValidationError"
- }
- // Error satisfies the builtin error interface
- func (e FilterConfigPerRouteValidationError) 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 %sFilterConfigPerRoute.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = FilterConfigPerRouteValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = FilterConfigPerRouteValidationError{}