-
Notifications
You must be signed in to change notification settings - Fork 1
/
os_image_profile_change.pb.validate.go
133 lines (126 loc) · 3.91 KB
/
os_image_profile_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
// Code generated by protoc-gen-goten-validate
// File: edgelq/devices/proto/v1alpha2/os_image_profile_change.proto
// DO NOT EDIT!!!
package os_image_profile
import (
"bytes"
"errors"
"fmt"
"net"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
gotenvalidate "github.com/cloudwan/goten-sdk/runtime/validate"
)
// proto imports
import (
project "github.com/cloudwan/edgelq-sdk/devices/resources/v1alpha2/project"
fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
)
var (
_ = bytes.Equal
_ = errors.New
_ = fmt.Errorf
_ = net.ParseIP
_ = regexp.Match
_ = strings.Split
_ = time.Now
_ = utf8.RuneCountInString
_ = url.Parse
_ = gotenvalidate.NewValidationError
)
// make sure we're using proto imports
var (
_ = &project.Project{}
_ = &fieldmaskpb.FieldMask{}
)
func (obj *OsImageProfileChange) GotenValidate() error {
if obj == nil {
return nil
}
switch opt := obj.ChangeType.(type) {
case *OsImageProfileChange_Added_:
if subobj, ok := interface{}(opt.Added).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("OsImageProfileChange", "added", opt.Added, "nested object validation failed", err)
}
}
case *OsImageProfileChange_Modified_:
if subobj, ok := interface{}(opt.Modified).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("OsImageProfileChange", "modified", opt.Modified, "nested object validation failed", err)
}
}
case *OsImageProfileChange_Current_:
if subobj, ok := interface{}(opt.Current).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("OsImageProfileChange", "current", opt.Current, "nested object validation failed", err)
}
}
case *OsImageProfileChange_Removed_:
if subobj, ok := interface{}(opt.Removed).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("OsImageProfileChange", "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 *OsImageProfileChange_Added) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.OsImageProfile).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Added", "osImageProfile", obj.OsImageProfile, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *OsImageProfileChange_Modified) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.OsImageProfile).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Modified", "osImageProfile", obj.OsImageProfile, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *OsImageProfileChange_Current) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.OsImageProfile).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("Current", "osImageProfile", obj.OsImageProfile, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *OsImageProfileChange_Removed) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}