-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathobject.validator.pb.go
63 lines (59 loc) · 1.92 KB
/
object.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
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: object.proto
package object
import fmt "fmt"
import github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
import proto "github.com/golang/protobuf/proto"
import math "math"
import _ "github.com/mwitkow/go-proto-validators"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (this *CleanResourcesRequest) Validate() error {
return nil
}
func (this *CleanResourcesResponse) Validate() error {
return nil
}
func (this *DataSource) Validate() error {
if !(len(this.Name) < 34) {
return github_com_mwitkow_go_proto_validators.FieldError("Name", fmt.Errorf(`value '%v' must length be less than '34'`, this.Name))
}
// Validation of proto3 map<> fields is unsupported.
return nil
}
func (this *MinioConfig) Validate() error {
// Validation of proto3 map<> fields is unsupported.
return nil
}
func (this *DataSourceEvent) 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 *GetMinioConfigRequest) Validate() error {
return nil
}
func (this *GetMinioConfigResponse) Validate() error {
if this.MinioConfig != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.MinioConfig); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("MinioConfig", err)
}
}
return nil
}
func (this *GetDataSourceConfigRequest) Validate() error {
return nil
}
func (this *GetDataSourceConfigResponse) Validate() error {
if this.DataSource != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.DataSource); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("DataSource", err)
}
}
return nil
}