/api/mesh/v1alpha1/health_check.pb.validate.go
https://github.com/Kong/kuma · Go · 291 lines · 213 code · 52 blank · 26 comment · 39 complexity · 93e396e2730996d0e6ad27094280b797 MD5 · raw file
- // Code generated by protoc-gen-validate. DO NOT EDIT.
- // source: mesh/v1alpha1/health_check.proto
- package v1alpha1
- import (
- "bytes"
- "errors"
- "fmt"
- "net"
- "net/mail"
- "net/url"
- "regexp"
- "strings"
- "time"
- "unicode/utf8"
- "github.com/golang/protobuf/ptypes"
- )
- // ensure the imports are used
- var (
- _ = bytes.MinRead
- _ = errors.New("")
- _ = fmt.Print
- _ = utf8.UTFMax
- _ = (*regexp.Regexp)(nil)
- _ = (*strings.Reader)(nil)
- _ = net.IPv4len
- _ = time.Duration(0)
- _ = (*url.URL)(nil)
- _ = (*mail.Address)(nil)
- _ = ptypes.DynamicAny{}
- )
- // define the regex for a UUID once up-front
- var _health_check_uuidPattern = regexp.MustCompile("^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$")
- // Validate checks the field values on HealthCheck with the rules defined in
- // the proto definition for this message. If any rules are violated, an error
- // is returned.
- func (m *HealthCheck) Validate() error {
- if m == nil {
- return nil
- }
- if len(m.GetSources()) < 1 {
- return HealthCheckValidationError{
- field: "Sources",
- reason: "value must contain at least 1 item(s)",
- }
- }
- for idx, item := range m.GetSources() {
- _, _ = idx, item
- if v, ok := interface{}(item).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return HealthCheckValidationError{
- field: fmt.Sprintf("Sources[%v]", idx),
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- }
- if len(m.GetDestinations()) < 1 {
- return HealthCheckValidationError{
- field: "Destinations",
- reason: "value must contain at least 1 item(s)",
- }
- }
- for idx, item := range m.GetDestinations() {
- _, _ = idx, item
- if v, ok := interface{}(item).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return HealthCheckValidationError{
- field: fmt.Sprintf("Destinations[%v]", idx),
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- }
- if v, ok := interface{}(m.GetConf()).(interface{ Validate() error }); ok {
- if err := v.Validate(); err != nil {
- return HealthCheckValidationError{
- field: "Conf",
- reason: "embedded message failed validation",
- cause: err,
- }
- }
- }
- return nil
- }
- // HealthCheckValidationError is the validation error returned by
- // HealthCheck.Validate if the designated constraints aren't met.
- type HealthCheckValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e HealthCheckValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e HealthCheckValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e HealthCheckValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e HealthCheckValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e HealthCheckValidationError) ErrorName() string { return "HealthCheckValidationError" }
- // Error satisfies the builtin error interface
- func (e HealthCheckValidationError) Error() string {
- cause := ""
- if e.cause != nil {
- cause = fmt.Sprintf(" | caused by: %v", e.cause)
- }
- key := ""
- if e.key {
- key = "key for "
- }
- return fmt.Sprintf(
- "invalid %sHealthCheck.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = HealthCheckValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = HealthCheckValidationError{}
- // Validate checks the field values on HealthCheck_Conf with the rules defined
- // in the proto definition for this message. If any rules are violated, an
- // error is returned.
- func (m *HealthCheck_Conf) Validate() error {
- if m == nil {
- return nil
- }
- if m.GetInterval() == nil {
- return HealthCheck_ConfValidationError{
- field: "Interval",
- reason: "value is required",
- }
- }
- if d := m.GetInterval(); d != nil {
- dur, err := ptypes.Duration(d)
- if err != nil {
- return HealthCheck_ConfValidationError{
- field: "Interval",
- reason: "value is not a valid duration",
- cause: err,
- }
- }
- gt := time.Duration(0*time.Second + 0*time.Nanosecond)
- if dur <= gt {
- return HealthCheck_ConfValidationError{
- field: "Interval",
- reason: "value must be greater than 0s",
- }
- }
- }
- if m.GetTimeout() == nil {
- return HealthCheck_ConfValidationError{
- field: "Timeout",
- reason: "value is required",
- }
- }
- if d := m.GetTimeout(); d != nil {
- dur, err := ptypes.Duration(d)
- if err != nil {
- return HealthCheck_ConfValidationError{
- field: "Timeout",
- reason: "value is not a valid duration",
- cause: err,
- }
- }
- gt := time.Duration(0*time.Second + 0*time.Nanosecond)
- if dur <= gt {
- return HealthCheck_ConfValidationError{
- field: "Timeout",
- reason: "value must be greater than 0s",
- }
- }
- }
- if m.GetUnhealthyThreshold() <= 0 {
- return HealthCheck_ConfValidationError{
- field: "UnhealthyThreshold",
- reason: "value must be greater than 0",
- }
- }
- if m.GetHealthyThreshold() <= 0 {
- return HealthCheck_ConfValidationError{
- field: "HealthyThreshold",
- reason: "value must be greater than 0",
- }
- }
- return nil
- }
- // HealthCheck_ConfValidationError is the validation error returned by
- // HealthCheck_Conf.Validate if the designated constraints aren't met.
- type HealthCheck_ConfValidationError struct {
- field string
- reason string
- cause error
- key bool
- }
- // Field function returns field value.
- func (e HealthCheck_ConfValidationError) Field() string { return e.field }
- // Reason function returns reason value.
- func (e HealthCheck_ConfValidationError) Reason() string { return e.reason }
- // Cause function returns cause value.
- func (e HealthCheck_ConfValidationError) Cause() error { return e.cause }
- // Key function returns key value.
- func (e HealthCheck_ConfValidationError) Key() bool { return e.key }
- // ErrorName returns error name.
- func (e HealthCheck_ConfValidationError) ErrorName() string { return "HealthCheck_ConfValidationError" }
- // Error satisfies the builtin error interface
- func (e HealthCheck_ConfValidationError) Error() string {
- cause := ""
- if e.cause != nil {
- cause = fmt.Sprintf(" | caused by: %v", e.cause)
- }
- key := ""
- if e.key {
- key = "key for "
- }
- return fmt.Sprintf(
- "invalid %sHealthCheck_Conf.%s: %s%s",
- key,
- e.field,
- e.reason,
- cause)
- }
- var _ error = HealthCheck_ConfValidationError{}
- var _ interface {
- Field() string
- Reason() string
- Key() bool
- Cause() error
- ErrorName() string
- } = HealthCheck_ConfValidationError{}