-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.pb.validate.go
61 lines (54 loc) · 1.09 KB
/
common.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
// Code generated by protoc-gen-goten-validate
// File: edgelq/limits/proto/v1alpha2/common.proto
// DO NOT EDIT!!!
package common
import (
"bytes"
"errors"
"fmt"
"net"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
gotenvalidate "github.com/cloudwan/goten-sdk/runtime/validate"
)
// proto imports
import (
meta_resource "github.com/cloudwan/edgelq-sdk/meta/resources/v1alpha2/resource"
)
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 (
_ = &meta_resource.Resource{}
)
func (obj *Allowance) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}
func (obj *RegionalDistribution) GotenValidate() error {
if obj == nil {
return nil
}
if cvobj, ok := interface{}(obj).(gotenvalidate.CustomValidator); ok {
return cvobj.GotenCustomValidate()
}
return nil
}