-
Notifications
You must be signed in to change notification settings - Fork 1
/
meta.pb.validate.go
147 lines (138 loc) · 3.75 KB
/
meta.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
// Code generated by protoc-gen-goten-validate
// File: edgelq/common/types/meta.proto
// DO NOT EDIT!!!
package ntt_meta
import (
"bytes"
"errors"
"fmt"
"net"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
"google.golang.org/protobuf/types/known/durationpb"
"google.golang.org/protobuf/types/known/timestamppb"
gotenvalidate "github.com/cloudwan/goten-sdk/runtime/validate"
)
// proto imports
import (
timestamp "github.com/golang/protobuf/ptypes/timestamp"
)
var (
_ = bytes.Equal
_ = errors.New
_ = fmt.Errorf
_ = net.ParseIP
_ = regexp.Match
_ = strings.Split
_ = time.Now
_ = utf8.RuneCountInString
_ = url.Parse
_ = durationpb.Duration{}
_ = timestamppb.Timestamp{}
_ = gotenvalidate.NewValidationError
)
// make sure we're using proto imports
var (
_ = ×tamp.Timestamp{}
)
func (obj *Meta) GotenValidate() error {
if obj == nil {
return nil
}
if len(obj.Tags) > 32 {
return gotenvalidate.NewValidationError("Meta", "tags", obj.Tags, "field must have at most 32 items", nil)
}
if len(obj.Tags) > 1 {
values := make(map[string]struct{})
for _, v := range obj.Tags {
if _, ok := values[v]; ok {
return gotenvalidate.NewValidationError("Meta", "tags", obj.Tags, "field must contain unique items", nil)
}
values[v] = struct{}{}
}
}
for _, el := range obj.Tags {
{
rlen := utf8.RuneCountInString(el)
if rlen < 1 {
return gotenvalidate.NewValidationError("Meta", "tags", el, "field must contain at least 1 characters", nil)
}
}
}
for idx, elem := range obj.OwnerReferences {
if subobj, ok := interface{}(elem).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Meta", "ownerReferences", obj.OwnerReferences[idx], "nested object validation failed", err)
}
}
}
if subobj, ok := interface{}(obj.Syncing).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Meta", "syncing", obj.Syncing, "nested object validation failed", err)
}
}
if subobj, ok := interface{}(obj.Lifecycle).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Meta", "lifecycle", obj.Lifecycle, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *LabelSelector) GotenValidate() error {
if obj == nil {
return nil
}
for idx, elem := range obj.MatchExpressions {
if subobj, ok := interface{}(elem).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("LabelSelector", "matchExpressions", obj.MatchExpressions[idx], "nested object validation failed", err)
}
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *LabelSelectorRequirement) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *OwnerReference) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *SyncingMeta) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *Lifecycle) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}