/pkg/api/envoy/extensions/filters/http/grpc_stats/v3/config.pb.validate.go
https://github.com/datawire/ambassador · Go · 203 lines · 132 code · 41 blank · 30 comment · 17 complexity · d977b0c07b569016f6d217d3d8ed05e0 MD5 · raw file
- // Code generated by protoc-gen-validate. DO NOT EDIT.
- // source: envoy/extensions/filters/http/grpc_stats/v3/config.proto
- package envoy_extensions_filters_http_grpc_stats_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
- }
- // no validation rules for EmitFilterState
- // no validation rules for EnableUpstreamStats
- switch m.PerMethodStatSpecifier.(type) {
- case *FilterConfig_IndividualMethodStatsAllowlist:
- if v, ok := interface{}(m.GetIndividualMethodStatsAllowlist()).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return FilterConfigValidationError{
- field: "IndividualMethodStatsAllowlist",
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- case *FilterConfig_StatsForAllMethods:
- if v, ok := interface{}(m.GetStatsForAllMethods()).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return FilterConfigValidationError{
- field: "StatsForAllMethods",
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- }
- 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 FilterObject with the rules defined in
- // the proto definition for this message. If any rules are violated, an error
- // is returned.
- func (m *FilterObject) Validate() error {
- if m == nil {
- return nil
- }
- // no validation rules for RequestMessageCount
- // no validation rules for ResponseMessageCount
- return nil
- }
- // FilterObjectValidationError is the validation error returned by
- // FilterObject.Validate if the designated constraints aren't met.
- type FilterObjectValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e FilterObjectValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e FilterObjectValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e FilterObjectValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e FilterObjectValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e FilterObjectValidationError) ErrorName() string { return "FilterObjectValidationError" }
- // Error satisfies the builtin error interface
- func (e FilterObjectValidationError) 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 %sFilterObject.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = FilterObjectValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = FilterObjectValidationError{}