-
Notifications
You must be signed in to change notification settings - Fork 1
/
accepted_plan.pb.validate.go
109 lines (102 loc) · 3.19 KB
/
accepted_plan.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
// Code generated by protoc-gen-goten-validate
// File: edgelq/limits/proto/v1/accepted_plan.proto
// DO NOT EDIT!!!
package accepted_plan
import (
"bytes"
"errors"
"fmt"
"net"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
gotenvalidate "github.com/cloudwan/goten-sdk/runtime/validate"
)
// proto imports
import (
iam_organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1/organization"
iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project"
common "github.com/cloudwan/edgelq-sdk/limits/resources/v1/common"
plan "github.com/cloudwan/edgelq-sdk/limits/resources/v1/plan"
meta_service "github.com/cloudwan/goten-sdk/meta-service/resources/v1/service"
meta "github.com/cloudwan/goten-sdk/types/meta"
)
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 (
_ = &iam_organization.Organization{}
_ = &iam_project.Project{}
_ = &common.RegionalPlanAssignment{}
_ = &plan.Plan{}
_ = &meta_service.Service{}
_ = &meta.Meta{}
)
func (obj *AcceptedPlan) GotenValidate() error {
if obj == nil {
return nil
}
if subobj, ok := interface{}(obj.Metadata).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("AcceptedPlan", "metadata", obj.Metadata, "nested object validation failed", err)
}
}
for idx, elem := range obj.RegionalPlanOverrides {
if subobj, ok := interface{}(elem).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("AcceptedPlan", "regionalPlanOverrides", obj.RegionalPlanOverrides[idx], "nested object validation failed", err)
}
}
}
for idx, elem := range obj.Extensions {
if subobj, ok := interface{}(elem).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("AcceptedPlan", "extensions", obj.Extensions[idx], "nested object validation failed", err)
}
}
}
for idx, elem := range obj.Allowances {
if subobj, ok := interface{}(elem).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("AcceptedPlan", "allowances", obj.Allowances[idx], "nested object validation failed", err)
}
}
}
if subobj, ok := interface{}(obj.Assignee).(gotenvalidate.Validator); ok {
if err := subobj.GotenValidate(); err != nil {
return gotenvalidate.NewValidationError("AcceptedPlan", "assignee", obj.Assignee, "nested object validation failed", err)
}
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *AcceptedPlan_Assignee) GotenValidate() error {
if obj == nil {
return nil
}
switch opt := obj.Assignee.(type) {
case *AcceptedPlan_Assignee_ProjectAssignee:
case *AcceptedPlan_Assignee_OrganizationAssignee:
case *AcceptedPlan_Assignee_ServiceAssignee:
default:
_ = opt
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}