-
Notifications
You must be signed in to change notification settings - Fork 1
/
discovery_v2.validator.pb.go
107 lines (102 loc) · 3.63 KB
/
discovery_v2.validator.pb.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
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: discovery_v2.proto
package instance_relation
import (
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
_ "github.com/gogo/protobuf/types"
_ "github.com/mwitkow/go-proto-validators"
github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
_ "github.com/easyopsapis/easyops-api-go/protorepo-models/easyops/model/cmdb"
math "math"
regexp "regexp"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _regex_DiscoveryV2Request_RelationId = regexp.MustCompile(`^[a-zA-Z_][0-9a-zA-Z_]*$`)
func (this *DiscoveryV2Request) Validate() error {
if !_regex_DiscoveryV2Request_RelationId.MatchString(this.RelationId) {
return github_com_mwitkow_go_proto_validators.FieldError("RelationId", fmt.Errorf(`value '%v' must be a string conforming to regex "^[a-zA-Z_][0-9a-zA-Z_]*$"`, this.RelationId))
}
if this.Match != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Match); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Match", err)
}
}
for _, item := range this.Data {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Data", err)
}
}
}
return nil
}
func (this *DiscoveryV2Request_Match) Validate() error {
return nil
}
func (this *DiscoveryV2Request_Data) Validate() error {
if this.LeftInstance != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.LeftInstance); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("LeftInstance", err)
}
}
if this.RightInstance != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.RightInstance); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("RightInstance", err)
}
}
return nil
}
func (this *DiscoveryV2Response) Validate() error {
for _, item := range this.Data {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Data", err)
}
}
}
return nil
}
func (this *DiscoveryV2Response_Data) Validate() error {
for _, item := range this.ConnectSuccess {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("ConnectSuccess", err)
}
}
}
for _, item := range this.ConnectFail {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("ConnectFail", err)
}
}
}
for _, item := range this.DisconnectSuccess {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("DisconnectSuccess", err)
}
}
}
for _, item := range this.DisconnectFail {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("DisconnectFail", err)
}
}
}
return nil
}
func (this *DiscoveryV2ResponseWrapper) Validate() error {
if this.Data != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Data); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Data", err)
}
}
return nil
}