2019-06-07 12:10:43 +00:00
|
|
|
// Code generated by protoc-gen-validate. DO NOT EDIT.
|
2018-10-03 18:18:55 +00:00
|
|
|
// source: envoy/api/v2/discovery.proto
|
|
|
|
|
|
|
|
package v2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/mail"
|
|
|
|
"net/url"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
"unicode/utf8"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
_ = types.DynamicAny{}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Validate checks the field values on DiscoveryRequest with the rules defined
|
|
|
|
// in the proto definition for this message. If any rules are violated, an
|
|
|
|
// error is returned.
|
|
|
|
func (m *DiscoveryRequest) Validate() error {
|
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for VersionInfo
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetNode()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DiscoveryRequestValidationError{
|
|
|
|
field: "Node",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for TypeUrl
|
|
|
|
|
|
|
|
// no validation rules for ResponseNonce
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetErrorDetail()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DiscoveryRequestValidationError{
|
|
|
|
field: "ErrorDetail",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DiscoveryRequestValidationError is the validation error returned by
|
|
|
|
// DiscoveryRequest.Validate if the designated constraints aren't met.
|
|
|
|
type DiscoveryRequestValidationError struct {
|
2019-06-07 12:10:43 +00:00
|
|
|
field string
|
|
|
|
reason string
|
|
|
|
cause error
|
|
|
|
key bool
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// Field function returns field value.
|
|
|
|
func (e DiscoveryRequestValidationError) Field() string { return e.field }
|
|
|
|
|
|
|
|
// Reason function returns reason value.
|
|
|
|
func (e DiscoveryRequestValidationError) Reason() string { return e.reason }
|
|
|
|
|
|
|
|
// Cause function returns cause value.
|
|
|
|
func (e DiscoveryRequestValidationError) Cause() error { return e.cause }
|
|
|
|
|
|
|
|
// Key function returns key value.
|
|
|
|
func (e DiscoveryRequestValidationError) Key() bool { return e.key }
|
|
|
|
|
|
|
|
// ErrorName returns error name.
|
|
|
|
func (e DiscoveryRequestValidationError) ErrorName() string { return "DiscoveryRequestValidationError" }
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// Error satisfies the builtin error interface
|
|
|
|
func (e DiscoveryRequestValidationError) Error() string {
|
|
|
|
cause := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.cause != nil {
|
|
|
|
cause = fmt.Sprintf(" | caused by: %v", e.cause)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.key {
|
2018-10-03 18:18:55 +00:00
|
|
|
key = "key for "
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"invalid %sDiscoveryRequest.%s: %s%s",
|
|
|
|
key,
|
2019-06-07 12:10:43 +00:00
|
|
|
e.field,
|
|
|
|
e.reason,
|
2018-10-03 18:18:55 +00:00
|
|
|
cause)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ error = DiscoveryRequestValidationError{}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
var _ interface {
|
|
|
|
Field() string
|
|
|
|
Reason() string
|
|
|
|
Key() bool
|
|
|
|
Cause() error
|
|
|
|
ErrorName() string
|
|
|
|
} = DiscoveryRequestValidationError{}
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// Validate checks the field values on DiscoveryResponse with the rules defined
|
|
|
|
// in the proto definition for this message. If any rules are violated, an
|
|
|
|
// error is returned.
|
|
|
|
func (m *DiscoveryResponse) Validate() error {
|
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for VersionInfo
|
|
|
|
|
|
|
|
for idx, item := range m.GetResources() {
|
|
|
|
_, _ = idx, item
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := item
|
|
|
|
|
|
|
|
if v, ok := interface{}(&tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DiscoveryResponseValidationError{
|
|
|
|
field: fmt.Sprintf("Resources[%v]", idx),
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for Canary
|
|
|
|
|
|
|
|
// no validation rules for TypeUrl
|
|
|
|
|
|
|
|
// no validation rules for Nonce
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetControlPlane()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DiscoveryResponseValidationError{
|
|
|
|
field: "ControlPlane",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DiscoveryResponseValidationError is the validation error returned by
|
|
|
|
// DiscoveryResponse.Validate if the designated constraints aren't met.
|
|
|
|
type DiscoveryResponseValidationError struct {
|
2019-06-07 12:10:43 +00:00
|
|
|
field string
|
|
|
|
reason string
|
|
|
|
cause error
|
|
|
|
key bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field function returns field value.
|
|
|
|
func (e DiscoveryResponseValidationError) Field() string { return e.field }
|
|
|
|
|
|
|
|
// Reason function returns reason value.
|
|
|
|
func (e DiscoveryResponseValidationError) Reason() string { return e.reason }
|
|
|
|
|
|
|
|
// Cause function returns cause value.
|
|
|
|
func (e DiscoveryResponseValidationError) Cause() error { return e.cause }
|
|
|
|
|
|
|
|
// Key function returns key value.
|
|
|
|
func (e DiscoveryResponseValidationError) Key() bool { return e.key }
|
|
|
|
|
|
|
|
// ErrorName returns error name.
|
|
|
|
func (e DiscoveryResponseValidationError) ErrorName() string {
|
|
|
|
return "DiscoveryResponseValidationError"
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error satisfies the builtin error interface
|
|
|
|
func (e DiscoveryResponseValidationError) Error() string {
|
|
|
|
cause := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.cause != nil {
|
|
|
|
cause = fmt.Sprintf(" | caused by: %v", e.cause)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.key {
|
2018-10-03 18:18:55 +00:00
|
|
|
key = "key for "
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"invalid %sDiscoveryResponse.%s: %s%s",
|
|
|
|
key,
|
2019-06-07 12:10:43 +00:00
|
|
|
e.field,
|
|
|
|
e.reason,
|
2018-10-03 18:18:55 +00:00
|
|
|
cause)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ error = DiscoveryResponseValidationError{}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
var _ interface {
|
|
|
|
Field() string
|
|
|
|
Reason() string
|
|
|
|
Key() bool
|
|
|
|
Cause() error
|
|
|
|
ErrorName() string
|
|
|
|
} = DiscoveryResponseValidationError{}
|
|
|
|
|
|
|
|
// Validate checks the field values on DeltaDiscoveryRequest with the rules
|
|
|
|
// defined in the proto definition for this message. If any rules are
|
2018-10-03 18:18:55 +00:00
|
|
|
// violated, an error is returned.
|
2019-06-07 12:10:43 +00:00
|
|
|
func (m *DeltaDiscoveryRequest) Validate() error {
|
2018-10-03 18:18:55 +00:00
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetNode()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DeltaDiscoveryRequestValidationError{
|
|
|
|
field: "Node",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for TypeUrl
|
|
|
|
|
|
|
|
// no validation rules for InitialResourceVersions
|
|
|
|
|
|
|
|
// no validation rules for ResponseNonce
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetErrorDetail()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DeltaDiscoveryRequestValidationError{
|
|
|
|
field: "ErrorDetail",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// DeltaDiscoveryRequestValidationError is the validation error returned by
|
|
|
|
// DeltaDiscoveryRequest.Validate if the designated constraints aren't met.
|
|
|
|
type DeltaDiscoveryRequestValidationError struct {
|
|
|
|
field string
|
|
|
|
reason string
|
|
|
|
cause error
|
|
|
|
key bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field function returns field value.
|
|
|
|
func (e DeltaDiscoveryRequestValidationError) Field() string { return e.field }
|
|
|
|
|
|
|
|
// Reason function returns reason value.
|
|
|
|
func (e DeltaDiscoveryRequestValidationError) Reason() string { return e.reason }
|
|
|
|
|
|
|
|
// Cause function returns cause value.
|
|
|
|
func (e DeltaDiscoveryRequestValidationError) Cause() error { return e.cause }
|
|
|
|
|
|
|
|
// Key function returns key value.
|
|
|
|
func (e DeltaDiscoveryRequestValidationError) Key() bool { return e.key }
|
|
|
|
|
|
|
|
// ErrorName returns error name.
|
|
|
|
func (e DeltaDiscoveryRequestValidationError) ErrorName() string {
|
|
|
|
return "DeltaDiscoveryRequestValidationError"
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error satisfies the builtin error interface
|
2019-06-07 12:10:43 +00:00
|
|
|
func (e DeltaDiscoveryRequestValidationError) Error() string {
|
2018-10-03 18:18:55 +00:00
|
|
|
cause := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.cause != nil {
|
|
|
|
cause = fmt.Sprintf(" | caused by: %v", e.cause)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.key {
|
2018-10-03 18:18:55 +00:00
|
|
|
key = "key for "
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
2019-06-07 12:10:43 +00:00
|
|
|
"invalid %sDeltaDiscoveryRequest.%s: %s%s",
|
2018-10-03 18:18:55 +00:00
|
|
|
key,
|
2019-06-07 12:10:43 +00:00
|
|
|
e.field,
|
|
|
|
e.reason,
|
2018-10-03 18:18:55 +00:00
|
|
|
cause)
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
var _ error = DeltaDiscoveryRequestValidationError{}
|
|
|
|
|
|
|
|
var _ interface {
|
|
|
|
Field() string
|
|
|
|
Reason() string
|
|
|
|
Key() bool
|
|
|
|
Cause() error
|
|
|
|
ErrorName() string
|
|
|
|
} = DeltaDiscoveryRequestValidationError{}
|
2018-10-03 18:18:55 +00:00
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// Validate checks the field values on DeltaDiscoveryResponse with the rules
|
|
|
|
// defined in the proto definition for this message. If any rules are
|
2018-10-03 18:18:55 +00:00
|
|
|
// violated, an error is returned.
|
2019-06-07 12:10:43 +00:00
|
|
|
func (m *DeltaDiscoveryResponse) Validate() error {
|
2018-10-03 18:18:55 +00:00
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for SystemVersionInfo
|
|
|
|
|
|
|
|
for idx, item := range m.GetResources() {
|
|
|
|
_, _ = idx, item
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := item
|
|
|
|
|
|
|
|
if v, ok := interface{}(&tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return DeltaDiscoveryResponseValidationError{
|
|
|
|
field: fmt.Sprintf("Resources[%v]", idx),
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// no validation rules for Nonce
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// DeltaDiscoveryResponseValidationError is the validation error returned by
|
|
|
|
// DeltaDiscoveryResponse.Validate if the designated constraints aren't met.
|
|
|
|
type DeltaDiscoveryResponseValidationError struct {
|
|
|
|
field string
|
|
|
|
reason string
|
|
|
|
cause error
|
|
|
|
key bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Field function returns field value.
|
|
|
|
func (e DeltaDiscoveryResponseValidationError) Field() string { return e.field }
|
|
|
|
|
|
|
|
// Reason function returns reason value.
|
|
|
|
func (e DeltaDiscoveryResponseValidationError) Reason() string { return e.reason }
|
|
|
|
|
|
|
|
// Cause function returns cause value.
|
|
|
|
func (e DeltaDiscoveryResponseValidationError) Cause() error { return e.cause }
|
|
|
|
|
|
|
|
// Key function returns key value.
|
|
|
|
func (e DeltaDiscoveryResponseValidationError) Key() bool { return e.key }
|
|
|
|
|
|
|
|
// ErrorName returns error name.
|
|
|
|
func (e DeltaDiscoveryResponseValidationError) ErrorName() string {
|
|
|
|
return "DeltaDiscoveryResponseValidationError"
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error satisfies the builtin error interface
|
2019-06-07 12:10:43 +00:00
|
|
|
func (e DeltaDiscoveryResponseValidationError) Error() string {
|
2018-10-03 18:18:55 +00:00
|
|
|
cause := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.cause != nil {
|
|
|
|
cause = fmt.Sprintf(" | caused by: %v", e.cause)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.key {
|
2018-10-03 18:18:55 +00:00
|
|
|
key = "key for "
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
2019-06-07 12:10:43 +00:00
|
|
|
"invalid %sDeltaDiscoveryResponse.%s: %s%s",
|
2018-10-03 18:18:55 +00:00
|
|
|
key,
|
2019-06-07 12:10:43 +00:00
|
|
|
e.field,
|
|
|
|
e.reason,
|
2018-10-03 18:18:55 +00:00
|
|
|
cause)
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
var _ error = DeltaDiscoveryResponseValidationError{}
|
|
|
|
|
|
|
|
var _ interface {
|
|
|
|
Field() string
|
|
|
|
Reason() string
|
|
|
|
Key() bool
|
|
|
|
Cause() error
|
|
|
|
ErrorName() string
|
|
|
|
} = DeltaDiscoveryResponseValidationError{}
|
2018-10-03 18:18:55 +00:00
|
|
|
|
|
|
|
// Validate checks the field values on Resource with the rules defined in the
|
|
|
|
// proto definition for this message. If any rules are violated, an error is returned.
|
|
|
|
func (m *Resource) Validate() error {
|
|
|
|
if m == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// no validation rules for Name
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// no validation rules for Version
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
{
|
|
|
|
tmp := m.GetResource()
|
|
|
|
|
|
|
|
if v, ok := interface{}(tmp).(interface{ Validate() error }); ok {
|
|
|
|
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return ResourceValidationError{
|
|
|
|
field: "Resource",
|
|
|
|
reason: "embedded message failed validation",
|
|
|
|
cause: err,
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResourceValidationError is the validation error returned by
|
|
|
|
// Resource.Validate if the designated constraints aren't met.
|
|
|
|
type ResourceValidationError struct {
|
2019-06-07 12:10:43 +00:00
|
|
|
field string
|
|
|
|
reason string
|
|
|
|
cause error
|
|
|
|
key bool
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 12:10:43 +00:00
|
|
|
// Field function returns field value.
|
|
|
|
func (e ResourceValidationError) Field() string { return e.field }
|
|
|
|
|
|
|
|
// Reason function returns reason value.
|
|
|
|
func (e ResourceValidationError) Reason() string { return e.reason }
|
|
|
|
|
|
|
|
// Cause function returns cause value.
|
|
|
|
func (e ResourceValidationError) Cause() error { return e.cause }
|
|
|
|
|
|
|
|
// Key function returns key value.
|
|
|
|
func (e ResourceValidationError) Key() bool { return e.key }
|
|
|
|
|
|
|
|
// ErrorName returns error name.
|
|
|
|
func (e ResourceValidationError) ErrorName() string { return "ResourceValidationError" }
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// Error satisfies the builtin error interface
|
|
|
|
func (e ResourceValidationError) Error() string {
|
|
|
|
cause := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.cause != nil {
|
|
|
|
cause = fmt.Sprintf(" | caused by: %v", e.cause)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
key := ""
|
2019-06-07 12:10:43 +00:00
|
|
|
if e.key {
|
2018-10-03 18:18:55 +00:00
|
|
|
key = "key for "
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"invalid %sResource.%s: %s%s",
|
|
|
|
key,
|
2019-06-07 12:10:43 +00:00
|
|
|
e.field,
|
|
|
|
e.reason,
|
2018-10-03 18:18:55 +00:00
|
|
|
cause)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ error = ResourceValidationError{}
|
2019-06-07 12:10:43 +00:00
|
|
|
|
|
|
|
var _ interface {
|
|
|
|
Field() string
|
|
|
|
Reason() string
|
|
|
|
Key() bool
|
|
|
|
Cause() error
|
|
|
|
ErrorName() string
|
|
|
|
} = ResourceValidationError{}
|