-
Notifications
You must be signed in to change notification settings - Fork 687
/
hds.pb.validate.go
730 lines (591 loc) · 18.1 KB
/
hds.pb.validate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
// Code generated by protoc-gen-validate. DO NOT EDIT.
// source: envoy/service/health/v3/hds.proto
package envoy_service_health_v3
import (
"bytes"
"errors"
"fmt"
"net"
"net/mail"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
"github.com/golang/protobuf/ptypes"
v3 "github.com/datawire/ambassador/pkg/api/envoy/config/core/v3"
)
// 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{}
_ = v3.HealthStatus(0)
)
// define the regex for a UUID once up-front
var _hds_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 Capability with the rules defined in the
// proto definition for this message. If any rules are violated, an error is returned.
func (m *Capability) Validate() error {
if m == nil {
return nil
}
return nil
}
// CapabilityValidationError is the validation error returned by
// Capability.Validate if the designated constraints aren't met.
type CapabilityValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e CapabilityValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e CapabilityValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e CapabilityValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e CapabilityValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e CapabilityValidationError) ErrorName() string { return "CapabilityValidationError" }
// Error satisfies the builtin error interface
func (e CapabilityValidationError) 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 %sCapability.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = CapabilityValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = CapabilityValidationError{}
// Validate checks the field values on HealthCheckRequest with the rules
// defined in the proto definition for this message. If any rules are
// violated, an error is returned.
func (m *HealthCheckRequest) Validate() error {
if m == nil {
return nil
}
if v, ok := interface{}(m.GetNode()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckRequestValidationError{
field: "Node",
reason: "embedded message failed validation",
cause: err,
}
}
}
if v, ok := interface{}(m.GetCapability()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckRequestValidationError{
field: "Capability",
reason: "embedded message failed validation",
cause: err,
}
}
}
return nil
}
// HealthCheckRequestValidationError is the validation error returned by
// HealthCheckRequest.Validate if the designated constraints aren't met.
type HealthCheckRequestValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e HealthCheckRequestValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e HealthCheckRequestValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e HealthCheckRequestValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e HealthCheckRequestValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e HealthCheckRequestValidationError) ErrorName() string {
return "HealthCheckRequestValidationError"
}
// Error satisfies the builtin error interface
func (e HealthCheckRequestValidationError) 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 %sHealthCheckRequest.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = HealthCheckRequestValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = HealthCheckRequestValidationError{}
// Validate checks the field values on EndpointHealth with the rules defined in
// the proto definition for this message. If any rules are violated, an error
// is returned.
func (m *EndpointHealth) Validate() error {
if m == nil {
return nil
}
if v, ok := interface{}(m.GetEndpoint()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return EndpointHealthValidationError{
field: "Endpoint",
reason: "embedded message failed validation",
cause: err,
}
}
}
// no validation rules for HealthStatus
return nil
}
// EndpointHealthValidationError is the validation error returned by
// EndpointHealth.Validate if the designated constraints aren't met.
type EndpointHealthValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e EndpointHealthValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e EndpointHealthValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e EndpointHealthValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e EndpointHealthValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e EndpointHealthValidationError) ErrorName() string { return "EndpointHealthValidationError" }
// Error satisfies the builtin error interface
func (e EndpointHealthValidationError) 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 %sEndpointHealth.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = EndpointHealthValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = EndpointHealthValidationError{}
// Validate checks the field values on EndpointHealthResponse with the rules
// defined in the proto definition for this message. If any rules are
// violated, an error is returned.
func (m *EndpointHealthResponse) Validate() error {
if m == nil {
return nil
}
for idx, item := range m.GetEndpointsHealth() {
_, _ = idx, item
if v, ok := interface{}(item).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return EndpointHealthResponseValidationError{
field: fmt.Sprintf("EndpointsHealth[%v]", idx),
reason: "embedded message failed validation",
cause: err,
}
}
}
}
return nil
}
// EndpointHealthResponseValidationError is the validation error returned by
// EndpointHealthResponse.Validate if the designated constraints aren't met.
type EndpointHealthResponseValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e EndpointHealthResponseValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e EndpointHealthResponseValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e EndpointHealthResponseValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e EndpointHealthResponseValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e EndpointHealthResponseValidationError) ErrorName() string {
return "EndpointHealthResponseValidationError"
}
// Error satisfies the builtin error interface
func (e EndpointHealthResponseValidationError) 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 %sEndpointHealthResponse.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = EndpointHealthResponseValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = EndpointHealthResponseValidationError{}
// Validate checks the field values on
// HealthCheckRequestOrEndpointHealthResponse with the rules defined in the
// proto definition for this message. If any rules are violated, an error is returned.
func (m *HealthCheckRequestOrEndpointHealthResponse) Validate() error {
if m == nil {
return nil
}
switch m.RequestType.(type) {
case *HealthCheckRequestOrEndpointHealthResponse_HealthCheckRequest:
if v, ok := interface{}(m.GetHealthCheckRequest()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckRequestOrEndpointHealthResponseValidationError{
field: "HealthCheckRequest",
reason: "embedded message failed validation",
cause: err,
}
}
}
case *HealthCheckRequestOrEndpointHealthResponse_EndpointHealthResponse:
if v, ok := interface{}(m.GetEndpointHealthResponse()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckRequestOrEndpointHealthResponseValidationError{
field: "EndpointHealthResponse",
reason: "embedded message failed validation",
cause: err,
}
}
}
}
return nil
}
// HealthCheckRequestOrEndpointHealthResponseValidationError is the validation
// error returned by HealthCheckRequestOrEndpointHealthResponse.Validate if
// the designated constraints aren't met.
type HealthCheckRequestOrEndpointHealthResponseValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) ErrorName() string {
return "HealthCheckRequestOrEndpointHealthResponseValidationError"
}
// Error satisfies the builtin error interface
func (e HealthCheckRequestOrEndpointHealthResponseValidationError) 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 %sHealthCheckRequestOrEndpointHealthResponse.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = HealthCheckRequestOrEndpointHealthResponseValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = HealthCheckRequestOrEndpointHealthResponseValidationError{}
// Validate checks the field values on LocalityEndpoints with the rules defined
// in the proto definition for this message. If any rules are violated, an
// error is returned.
func (m *LocalityEndpoints) Validate() error {
if m == nil {
return nil
}
if v, ok := interface{}(m.GetLocality()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return LocalityEndpointsValidationError{
field: "Locality",
reason: "embedded message failed validation",
cause: err,
}
}
}
for idx, item := range m.GetEndpoints() {
_, _ = idx, item
if v, ok := interface{}(item).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return LocalityEndpointsValidationError{
field: fmt.Sprintf("Endpoints[%v]", idx),
reason: "embedded message failed validation",
cause: err,
}
}
}
}
return nil
}
// LocalityEndpointsValidationError is the validation error returned by
// LocalityEndpoints.Validate if the designated constraints aren't met.
type LocalityEndpointsValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e LocalityEndpointsValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e LocalityEndpointsValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e LocalityEndpointsValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e LocalityEndpointsValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e LocalityEndpointsValidationError) ErrorName() string {
return "LocalityEndpointsValidationError"
}
// Error satisfies the builtin error interface
func (e LocalityEndpointsValidationError) 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 %sLocalityEndpoints.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = LocalityEndpointsValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = LocalityEndpointsValidationError{}
// Validate checks the field values on ClusterHealthCheck with the rules
// defined in the proto definition for this message. If any rules are
// violated, an error is returned.
func (m *ClusterHealthCheck) Validate() error {
if m == nil {
return nil
}
// no validation rules for ClusterName
for idx, item := range m.GetHealthChecks() {
_, _ = idx, item
if v, ok := interface{}(item).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return ClusterHealthCheckValidationError{
field: fmt.Sprintf("HealthChecks[%v]", idx),
reason: "embedded message failed validation",
cause: err,
}
}
}
}
for idx, item := range m.GetLocalityEndpoints() {
_, _ = idx, item
if v, ok := interface{}(item).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return ClusterHealthCheckValidationError{
field: fmt.Sprintf("LocalityEndpoints[%v]", idx),
reason: "embedded message failed validation",
cause: err,
}
}
}
}
return nil
}
// ClusterHealthCheckValidationError is the validation error returned by
// ClusterHealthCheck.Validate if the designated constraints aren't met.
type ClusterHealthCheckValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e ClusterHealthCheckValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e ClusterHealthCheckValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e ClusterHealthCheckValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e ClusterHealthCheckValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e ClusterHealthCheckValidationError) ErrorName() string {
return "ClusterHealthCheckValidationError"
}
// Error satisfies the builtin error interface
func (e ClusterHealthCheckValidationError) 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 %sClusterHealthCheck.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = ClusterHealthCheckValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = ClusterHealthCheckValidationError{}
// Validate checks the field values on HealthCheckSpecifier with the rules
// defined in the proto definition for this message. If any rules are
// violated, an error is returned.
func (m *HealthCheckSpecifier) Validate() error {
if m == nil {
return nil
}
for idx, item := range m.GetClusterHealthChecks() {
_, _ = idx, item
if v, ok := interface{}(item).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckSpecifierValidationError{
field: fmt.Sprintf("ClusterHealthChecks[%v]", idx),
reason: "embedded message failed validation",
cause: err,
}
}
}
}
if v, ok := interface{}(m.GetInterval()).(interface{ Validate() error }); ok {
if err := v.Validate(); err != nil {
return HealthCheckSpecifierValidationError{
field: "Interval",
reason: "embedded message failed validation",
cause: err,
}
}
}
return nil
}
// HealthCheckSpecifierValidationError is the validation error returned by
// HealthCheckSpecifier.Validate if the designated constraints aren't met.
type HealthCheckSpecifierValidationError struct {
field string
reason string
cause error
key bool
}
// Field function returns field value.
func (e HealthCheckSpecifierValidationError) Field() string { return e.field }
// Reason function returns reason value.
func (e HealthCheckSpecifierValidationError) Reason() string { return e.reason }
// Cause function returns cause value.
func (e HealthCheckSpecifierValidationError) Cause() error { return e.cause }
// Key function returns key value.
func (e HealthCheckSpecifierValidationError) Key() bool { return e.key }
// ErrorName returns error name.
func (e HealthCheckSpecifierValidationError) ErrorName() string {
return "HealthCheckSpecifierValidationError"
}
// Error satisfies the builtin error interface
func (e HealthCheckSpecifierValidationError) 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 %sHealthCheckSpecifier.%s: %s%s",
key,
e.field,
e.reason,
cause)
}
var _ error = HealthCheckSpecifierValidationError{}
var _ interface {
Field() string
Reason() string
Key() bool
Cause() error
ErrorName() string
} = HealthCheckSpecifierValidationError{}