github.com/hxx258456/ccgo@v0.0.5-0.20230213014102-48b35f46f66f/go-control-plane/envoy/extensions/stat_sinks/wasm/v3/wasm.pb.validate.go (about) 1 // Code generated by protoc-gen-validate. DO NOT EDIT. 2 // source: envoy/extensions/stat_sinks/wasm/v3/wasm.proto 3 4 package envoy_extensions_stat_sinks_wasm_v3 5 6 import ( 7 "bytes" 8 "errors" 9 "fmt" 10 "net" 11 "net/mail" 12 "net/url" 13 "regexp" 14 "strings" 15 "time" 16 "unicode/utf8" 17 18 "google.golang.org/protobuf/types/known/anypb" 19 ) 20 21 // ensure the imports are used 22 var ( 23 _ = bytes.MinRead 24 _ = errors.New("") 25 _ = fmt.Print 26 _ = utf8.UTFMax 27 _ = (*regexp.Regexp)(nil) 28 _ = (*strings.Reader)(nil) 29 _ = net.IPv4len 30 _ = time.Duration(0) 31 _ = (*url.URL)(nil) 32 _ = (*mail.Address)(nil) 33 _ = anypb.Any{} 34 ) 35 36 // Validate checks the field values on Wasm with the rules defined in the proto 37 // definition for this message. If any rules are violated, an error is returned. 38 func (m *Wasm) Validate() error { 39 if m == nil { 40 return nil 41 } 42 43 if v, ok := interface{}(m.GetConfig()).(interface{ Validate() error }); ok { 44 if err := v.Validate(); err != nil { 45 return WasmValidationError{ 46 field: "Config", 47 reason: "embedded message failed validation", 48 cause: err, 49 } 50 } 51 } 52 53 return nil 54 } 55 56 // WasmValidationError is the validation error returned by Wasm.Validate if the 57 // designated constraints aren't met. 58 type WasmValidationError struct { 59 field string 60 reason string 61 cause error 62 key bool 63 } 64 65 // Field function returns field value. 66 func (e WasmValidationError) Field() string { return e.field } 67 68 // Reason function returns reason value. 69 func (e WasmValidationError) Reason() string { return e.reason } 70 71 // Cause function returns cause value. 72 func (e WasmValidationError) Cause() error { return e.cause } 73 74 // Key function returns key value. 75 func (e WasmValidationError) Key() bool { return e.key } 76 77 // ErrorName returns error name. 78 func (e WasmValidationError) ErrorName() string { return "WasmValidationError" } 79 80 // Error satisfies the builtin error interface 81 func (e WasmValidationError) Error() string { 82 cause := "" 83 if e.cause != nil { 84 cause = fmt.Sprintf(" | caused by: %v", e.cause) 85 } 86 87 key := "" 88 if e.key { 89 key = "key for " 90 } 91 92 return fmt.Sprintf( 93 "invalid %sWasm.%s: %s%s", 94 key, 95 e.field, 96 e.reason, 97 cause) 98 } 99 100 var _ error = WasmValidationError{} 101 102 var _ interface { 103 Field() string 104 Reason() string 105 Key() bool 106 Cause() error 107 ErrorName() string 108 } = WasmValidationError{}