507 lines
13 KiB
Go
507 lines
13 KiB
Go
// Code generated by protoc-gen-validate. DO NOT EDIT.
|
|
// source: conf/v1/client.proto
|
|
|
|
package conf
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"net/mail"
|
|
"net/url"
|
|
"regexp"
|
|
"sort"
|
|
"strings"
|
|
"time"
|
|
"unicode/utf8"
|
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
|
)
|
|
|
|
// 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)
|
|
_ = anypb.Any{}
|
|
_ = sort.Sort
|
|
)
|
|
|
|
// Validate checks the field values on Client 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 (m *Client) Validate() error {
|
|
return m.validate(false)
|
|
}
|
|
|
|
// ValidateAll checks the field values on Client 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 ClientMultiError, or nil if none found.
|
|
func (m *Client) ValidateAll() error {
|
|
return m.validate(true)
|
|
}
|
|
|
|
func (m *Client) validate(all bool) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
|
|
var errors []error
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetRest()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, ClientValidationError{
|
|
field: "Rest",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, ClientValidationError{
|
|
field: "Rest",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetRest()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return ClientValidationError{
|
|
field: "Rest",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetGrpc()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, ClientValidationError{
|
|
field: "Grpc",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, ClientValidationError{
|
|
field: "Grpc",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetGrpc()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return ClientValidationError{
|
|
field: "Grpc",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(errors) > 0 {
|
|
return ClientMultiError(errors)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ClientMultiError is an error wrapping multiple validation errors returned by
|
|
// Client.ValidateAll() if the designated constraints aren't met.
|
|
type ClientMultiError []error
|
|
|
|
// Error returns a concatenation of all the error messages it wraps.
|
|
func (m ClientMultiError) Error() string {
|
|
var msgs []string
|
|
for _, err := range m {
|
|
msgs = append(msgs, err.Error())
|
|
}
|
|
return strings.Join(msgs, "; ")
|
|
}
|
|
|
|
// AllErrors returns a list of validation violation errors.
|
|
func (m ClientMultiError) AllErrors() []error { return m }
|
|
|
|
// ClientValidationError is the validation error returned by Client.Validate if
|
|
// the designated constraints aren't met.
|
|
type ClientValidationError struct {
|
|
field string
|
|
reason string
|
|
cause error
|
|
key bool
|
|
}
|
|
|
|
// Field function returns field value.
|
|
func (e ClientValidationError) Field() string { return e.field }
|
|
|
|
// Reason function returns reason value.
|
|
func (e ClientValidationError) Reason() string { return e.reason }
|
|
|
|
// Cause function returns cause value.
|
|
func (e ClientValidationError) Cause() error { return e.cause }
|
|
|
|
// Key function returns key value.
|
|
func (e ClientValidationError) Key() bool { return e.key }
|
|
|
|
// ErrorName returns error name.
|
|
func (e ClientValidationError) ErrorName() string { return "ClientValidationError" }
|
|
|
|
// Error satisfies the builtin error interface
|
|
func (e ClientValidationError) 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 %sClient.%s: %s%s",
|
|
key,
|
|
e.field,
|
|
e.reason,
|
|
cause)
|
|
}
|
|
|
|
var _ error = ClientValidationError{}
|
|
|
|
var _ interface {
|
|
Field() string
|
|
Reason() string
|
|
Key() bool
|
|
Cause() error
|
|
ErrorName() string
|
|
} = ClientValidationError{}
|
|
|
|
// Validate checks the field values on Client_REST 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 (m *Client_REST) Validate() error {
|
|
return m.validate(false)
|
|
}
|
|
|
|
// ValidateAll checks the field values on Client_REST 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 Client_RESTMultiError, or
|
|
// nil if none found.
|
|
func (m *Client_REST) ValidateAll() error {
|
|
return m.validate(true)
|
|
}
|
|
|
|
func (m *Client_REST) validate(all bool) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
|
|
var errors []error
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetTimeout()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, Client_RESTValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, Client_RESTValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetTimeout()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return Client_RESTValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetMiddleware()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, Client_RESTValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, Client_RESTValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetMiddleware()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return Client_RESTValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(errors) > 0 {
|
|
return Client_RESTMultiError(errors)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Client_RESTMultiError is an error wrapping multiple validation errors
|
|
// returned by Client_REST.ValidateAll() if the designated constraints aren't met.
|
|
type Client_RESTMultiError []error
|
|
|
|
// Error returns a concatenation of all the error messages it wraps.
|
|
func (m Client_RESTMultiError) Error() string {
|
|
var msgs []string
|
|
for _, err := range m {
|
|
msgs = append(msgs, err.Error())
|
|
}
|
|
return strings.Join(msgs, "; ")
|
|
}
|
|
|
|
// AllErrors returns a list of validation violation errors.
|
|
func (m Client_RESTMultiError) AllErrors() []error { return m }
|
|
|
|
// Client_RESTValidationError is the validation error returned by
|
|
// Client_REST.Validate if the designated constraints aren't met.
|
|
type Client_RESTValidationError struct {
|
|
field string
|
|
reason string
|
|
cause error
|
|
key bool
|
|
}
|
|
|
|
// Field function returns field value.
|
|
func (e Client_RESTValidationError) Field() string { return e.field }
|
|
|
|
// Reason function returns reason value.
|
|
func (e Client_RESTValidationError) Reason() string { return e.reason }
|
|
|
|
// Cause function returns cause value.
|
|
func (e Client_RESTValidationError) Cause() error { return e.cause }
|
|
|
|
// Key function returns key value.
|
|
func (e Client_RESTValidationError) Key() bool { return e.key }
|
|
|
|
// ErrorName returns error name.
|
|
func (e Client_RESTValidationError) ErrorName() string { return "Client_RESTValidationError" }
|
|
|
|
// Error satisfies the builtin error interface
|
|
func (e Client_RESTValidationError) 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 %sClient_REST.%s: %s%s",
|
|
key,
|
|
e.field,
|
|
e.reason,
|
|
cause)
|
|
}
|
|
|
|
var _ error = Client_RESTValidationError{}
|
|
|
|
var _ interface {
|
|
Field() string
|
|
Reason() string
|
|
Key() bool
|
|
Cause() error
|
|
ErrorName() string
|
|
} = Client_RESTValidationError{}
|
|
|
|
// Validate checks the field values on Client_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 (m *Client_GRPC) Validate() error {
|
|
return m.validate(false)
|
|
}
|
|
|
|
// ValidateAll checks the field values on Client_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 Client_GRPCMultiError, or
|
|
// nil if none found.
|
|
func (m *Client_GRPC) ValidateAll() error {
|
|
return m.validate(true)
|
|
}
|
|
|
|
func (m *Client_GRPC) validate(all bool) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
|
|
var errors []error
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetTimeout()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, Client_GRPCValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, Client_GRPCValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetTimeout()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return Client_GRPCValidationError{
|
|
field: "Timeout",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if all {
|
|
switch v := interface{}(m.GetMiddleware()).(type) {
|
|
case interface{ ValidateAll() error }:
|
|
if err := v.ValidateAll(); err != nil {
|
|
errors = append(errors, Client_GRPCValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
case interface{ Validate() error }:
|
|
if err := v.Validate(); err != nil {
|
|
errors = append(errors, Client_GRPCValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
})
|
|
}
|
|
}
|
|
} else if v, ok := interface{}(m.GetMiddleware()).(interface{ Validate() error }); ok {
|
|
if err := v.Validate(); err != nil {
|
|
return Client_GRPCValidationError{
|
|
field: "Middleware",
|
|
reason: "embedded message failed validation",
|
|
cause: err,
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(errors) > 0 {
|
|
return Client_GRPCMultiError(errors)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Client_GRPCMultiError is an error wrapping multiple validation errors
|
|
// returned by Client_GRPC.ValidateAll() if the designated constraints aren't met.
|
|
type Client_GRPCMultiError []error
|
|
|
|
// Error returns a concatenation of all the error messages it wraps.
|
|
func (m Client_GRPCMultiError) Error() string {
|
|
var msgs []string
|
|
for _, err := range m {
|
|
msgs = append(msgs, err.Error())
|
|
}
|
|
return strings.Join(msgs, "; ")
|
|
}
|
|
|
|
// AllErrors returns a list of validation violation errors.
|
|
func (m Client_GRPCMultiError) AllErrors() []error { return m }
|
|
|
|
// Client_GRPCValidationError is the validation error returned by
|
|
// Client_GRPC.Validate if the designated constraints aren't met.
|
|
type Client_GRPCValidationError struct {
|
|
field string
|
|
reason string
|
|
cause error
|
|
key bool
|
|
}
|
|
|
|
// Field function returns field value.
|
|
func (e Client_GRPCValidationError) Field() string { return e.field }
|
|
|
|
// Reason function returns reason value.
|
|
func (e Client_GRPCValidationError) Reason() string { return e.reason }
|
|
|
|
// Cause function returns cause value.
|
|
func (e Client_GRPCValidationError) Cause() error { return e.cause }
|
|
|
|
// Key function returns key value.
|
|
func (e Client_GRPCValidationError) Key() bool { return e.key }
|
|
|
|
// ErrorName returns error name.
|
|
func (e Client_GRPCValidationError) ErrorName() string { return "Client_GRPCValidationError" }
|
|
|
|
// Error satisfies the builtin error interface
|
|
func (e Client_GRPCValidationError) 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 %sClient_GRPC.%s: %s%s",
|
|
key,
|
|
e.field,
|
|
e.reason,
|
|
cause)
|
|
}
|
|
|
|
var _ error = Client_GRPCValidationError{}
|
|
|
|
var _ interface {
|
|
Field() string
|
|
Reason() string
|
|
Key() bool
|
|
Cause() error
|
|
ErrorName() string
|
|
} = Client_GRPCValidationError{}
|