forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.validator.pb.go
116 lines (112 loc) · 3.58 KB
/
install.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
108
109
110
111
112
113
114
115
116
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: install.proto
package install
import github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (this *InstallConfig) Validate() error {
for _, item := range this.CheckResults {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("CheckResults", err)
}
}
}
if this.ProxyConfig != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.ProxyConfig); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("ProxyConfig", err)
}
}
return nil
}
func (this *ProxyConfig) Validate() error {
if oneOfNester, ok := this.GetTLSConfig().(*ProxyConfig_SelfSigned); ok {
if oneOfNester.SelfSigned != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(oneOfNester.SelfSigned); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("SelfSigned", err)
}
}
}
if oneOfNester, ok := this.GetTLSConfig().(*ProxyConfig_LetsEncrypt); ok {
if oneOfNester.LetsEncrypt != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(oneOfNester.LetsEncrypt); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("LetsEncrypt", err)
}
}
}
if oneOfNester, ok := this.GetTLSConfig().(*ProxyConfig_Certificate); ok {
if oneOfNester.Certificate != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(oneOfNester.Certificate); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Certificate", err)
}
}
}
return nil
}
func (this *TLSSelfSigned) Validate() error {
return nil
}
func (this *TLSLetsEncrypt) Validate() error {
return nil
}
func (this *TLSCertificate) Validate() error {
return nil
}
func (this *CheckResult) Validate() error {
return nil
}
func (this *PerformCheckRequest) Validate() error {
if this.Config != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Config); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Config", err)
}
}
return nil
}
func (this *PerformCheckResponse) Validate() error {
if this.Result != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Result); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Result", err)
}
}
return nil
}
func (this *GetDefaultsRequest) Validate() error {
return nil
}
func (this *GetDefaultsResponse) Validate() error {
if this.Config != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Config); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Config", err)
}
}
return nil
}
func (this *GetAgreementRequest) Validate() error {
return nil
}
func (this *GetAgreementResponse) Validate() error {
return nil
}
func (this *InstallRequest) Validate() error {
if this.Config != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Config); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Config", err)
}
}
return nil
}
func (this *InstallResponse) Validate() error {
return nil
}
func (this *InstallEventsRequest) Validate() error {
return nil
}
func (this *InstallEventsResponse) Validate() error {
return nil
}