-
Notifications
You must be signed in to change notification settings - Fork 1
/
plan_assignment_request_change.pb.validate.go
140 lines (132 loc) · 4.36 KB
/
plan_assignment_request_change.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
// Code generated by protoc-gen-goten-validate
// File: edgelq/limits/proto/v1alpha2/plan_assignment_request_change.proto
// DO NOT EDIT!!!
package plan_assignment_request
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 (
iam_organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/project"
field_mask "google.golang.org/genproto/protobuf/field_mask"
)
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 (
_ = &iam_organization.Organization{}
_ = &iam_project.Project{}
_ = &field_mask.FieldMask{}
)
func (obj *PlanAssignmentRequestChange) GotenValidate() error {
if obj == nil {
return nil
}
switch opt := obj.ChangeType.(type) {
case *PlanAssignmentRequestChange_Added_:
if subobj, ok := interface{}(opt.Added).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("PlanAssignmentRequestChange", "added", opt.Added, "nested object validation failed", err)
}
}
case *PlanAssignmentRequestChange_Modified_:
if subobj, ok := interface{}(opt.Modified).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("PlanAssignmentRequestChange", "modified", opt.Modified, "nested object validation failed", err)
}
}
case *PlanAssignmentRequestChange_Current_:
if subobj, ok := interface{}(opt.Current).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("PlanAssignmentRequestChange", "current", opt.Current, "nested object validation failed", err)
}
}
case *PlanAssignmentRequestChange_Removed_:
if subobj, ok := interface{}(opt.Removed).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("PlanAssignmentRequestChange", "removed", opt.Removed, "nested object validation failed", err)
}
}
default:
_ = opt
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *PlanAssignmentRequestChange_Added) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.PlanAssignmentRequest).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Added", "planAssignmentRequest", obj.PlanAssignmentRequest, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *PlanAssignmentRequestChange_Modified) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.PlanAssignmentRequest).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Modified", "planAssignmentRequest", obj.PlanAssignmentRequest, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *PlanAssignmentRequestChange_Current) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.PlanAssignmentRequest).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Current", "planAssignmentRequest", obj.PlanAssignmentRequest, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *PlanAssignmentRequestChange_Removed) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}