// Code generated by protoc-gen-validate. DO NOT EDIT. // source: registry.proto package registry import ( "bytes" "errors" "fmt" "net" "net/mail" "net/url" "regexp" "sort" "strings" "time" "unicode/utf8" "google.golang.org/protobuf/types/known/anypb" ) // 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) _ = anypb.Any{} _ = sort.Sort ) // Validate checks the field values on Service with the rules defined in the // proto definition for this message. If any rules are violated, the first // error encountered is returned, or nil if there are no violations. func (m *Service) Validate() error { return m.validate(false) } // ValidateAll checks the field values on Service with the rules defined in the // proto definition for this message. If any rules are violated, the result is // a list of violation errors wrapped in ServiceMultiError, or nil if none found. func (m *Service) ValidateAll() error { return m.validate(true) } func (m *Service) validate(all bool) error { if m == nil { return nil } var errors []error if _, ok := _Service_Kind_NotInLookup[m.GetKind()]; ok { err := ServiceValidationError{ field: "Kind", reason: "value must not be in list [UNDEFINED_DO_NOT_USE]", } if !all { return err } errors = append(errors, err) } if uri, err := url.Parse(m.GetEndpoint()); err != nil { err = ServiceValidationError{ field: "Endpoint", reason: "value must be a valid URI", cause: err, } if !all { return err } errors = append(errors, err) } else if !uri.IsAbs() { err := ServiceValidationError{ field: "Endpoint", reason: "value must be absolute", } if !all { return err } errors = append(errors, err) } if len(errors) > 0 { return ServiceMultiError(errors) } return nil } // ServiceMultiError is an error wrapping multiple validation errors returned // by Service.ValidateAll() if the designated constraints aren't met. type ServiceMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m ServiceMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m ServiceMultiError) AllErrors() []error { return m } // ServiceValidationError is the validation error returned by Service.Validate // if the designated constraints aren't met. type ServiceValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e ServiceValidationError) Field() string { return e.field } // Reason function returns reason value. func (e ServiceValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e ServiceValidationError) Cause() error { return e.cause } // Key function returns key value. func (e ServiceValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e ServiceValidationError) ErrorName() string { return "ServiceValidationError" } // Error satisfies the builtin error interface func (e ServiceValidationError) 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 %sService.%s: %s%s", key, e.field, e.reason, cause) } var _ error = ServiceValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = ServiceValidationError{} var _Service_Kind_NotInLookup = map[ServiceKind]struct{}{ 0: {}, } // Validate checks the field values on RegisterRequest with the rules defined // in the proto definition for this message. If any rules are violated, the // first error encountered is returned, or nil if there are no violations. func (m *RegisterRequest) Validate() error { return m.validate(false) } // ValidateAll checks the field values on RegisterRequest with the rules // defined in the proto definition for this message. If any rules are // violated, the result is a list of violation errors wrapped in // RegisterRequestMultiError, or nil if none found. func (m *RegisterRequest) ValidateAll() error { return m.validate(true) } func (m *RegisterRequest) validate(all bool) error { if m == nil { return nil } var errors []error if len(m.GetServices()) < 1 { err := RegisterRequestValidationError{ field: "Services", reason: "value must contain at least 1 item(s)", } if !all { return err } errors = append(errors, err) } for idx, item := range m.GetServices() { _, _ = idx, item if all { switch v := interface{}(item).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, RegisterRequestValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, RegisterRequestValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(item).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return RegisterRequestValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, } } } } { sorted_keys := make([]string, len(m.GetMetadata())) i := 0 for key := range m.GetMetadata() { sorted_keys[i] = key i++ } sort.Slice(sorted_keys, func(i, j int) bool { return sorted_keys[i] < sorted_keys[j] }) for _, key := range sorted_keys { val := m.GetMetadata()[key] _ = val // no validation rules for Metadata[key] if all { switch v := interface{}(val).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, RegisterRequestValidationError{ field: fmt.Sprintf("Metadata[%v]", key), reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, RegisterRequestValidationError{ field: fmt.Sprintf("Metadata[%v]", key), reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(val).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return RegisterRequestValidationError{ field: fmt.Sprintf("Metadata[%v]", key), reason: "embedded message failed validation", cause: err, } } } } } if len(errors) > 0 { return RegisterRequestMultiError(errors) } return nil } // RegisterRequestMultiError is an error wrapping multiple validation errors // returned by RegisterRequest.ValidateAll() if the designated constraints // aren't met. type RegisterRequestMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m RegisterRequestMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m RegisterRequestMultiError) AllErrors() []error { return m } // RegisterRequestValidationError is the validation error returned by // RegisterRequest.Validate if the designated constraints aren't met. type RegisterRequestValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e RegisterRequestValidationError) Field() string { return e.field } // Reason function returns reason value. func (e RegisterRequestValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e RegisterRequestValidationError) Cause() error { return e.cause } // Key function returns key value. func (e RegisterRequestValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e RegisterRequestValidationError) ErrorName() string { return "RegisterRequestValidationError" } // Error satisfies the builtin error interface func (e RegisterRequestValidationError) 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 %sRegisterRequest.%s: %s%s", key, e.field, e.reason, cause) } var _ error = RegisterRequestValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = RegisterRequestValidationError{} // Validate checks the field values on RegisterResponse with the rules defined // in the proto definition for this message. If any rules are violated, the // first error encountered is returned, or nil if there are no violations. func (m *RegisterResponse) Validate() error { return m.validate(false) } // ValidateAll checks the field values on RegisterResponse with the rules // defined in the proto definition for this message. If any rules are // violated, the result is a list of violation errors wrapped in // RegisterResponseMultiError, or nil if none found. func (m *RegisterResponse) ValidateAll() error { return m.validate(true) } func (m *RegisterResponse) validate(all bool) error { if m == nil { return nil } var errors []error if all { switch v := interface{}(m.GetCallBackAfter()).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, RegisterResponseValidationError{ field: "CallBackAfter", reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, RegisterResponseValidationError{ field: "CallBackAfter", reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(m.GetCallBackAfter()).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return RegisterResponseValidationError{ field: "CallBackAfter", reason: "embedded message failed validation", cause: err, } } } if len(errors) > 0 { return RegisterResponseMultiError(errors) } return nil } // RegisterResponseMultiError is an error wrapping multiple validation errors // returned by RegisterResponse.ValidateAll() if the designated constraints // aren't met. type RegisterResponseMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m RegisterResponseMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m RegisterResponseMultiError) AllErrors() []error { return m } // RegisterResponseValidationError is the validation error returned by // RegisterResponse.Validate if the designated constraints aren't met. type RegisterResponseValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e RegisterResponseValidationError) Field() string { return e.field } // Reason function returns reason value. func (e RegisterResponseValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e RegisterResponseValidationError) Cause() error { return e.cause } // Key function returns key value. func (e RegisterResponseValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e RegisterResponseValidationError) ErrorName() string { return "RegisterResponseValidationError" } // Error satisfies the builtin error interface func (e RegisterResponseValidationError) 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 %sRegisterResponse.%s: %s%s", key, e.field, e.reason, cause) } var _ error = RegisterResponseValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = RegisterResponseValidationError{} // Validate checks the field values on ListRequest with the rules defined in // the proto definition for this message. If any rules are violated, the first // error encountered is returned, or nil if there are no violations. func (m *ListRequest) Validate() error { return m.validate(false) } // ValidateAll checks the field values on ListRequest with the rules defined in // the proto definition for this message. If any rules are violated, the // result is a list of violation errors wrapped in ListRequestMultiError, or // nil if none found. func (m *ListRequest) ValidateAll() error { return m.validate(true) } func (m *ListRequest) validate(all bool) error { if m == nil { return nil } var errors []error if len(errors) > 0 { return ListRequestMultiError(errors) } return nil } // ListRequestMultiError is an error wrapping multiple validation errors // returned by ListRequest.ValidateAll() if the designated constraints aren't met. type ListRequestMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m ListRequestMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m ListRequestMultiError) AllErrors() []error { return m } // ListRequestValidationError is the validation error returned by // ListRequest.Validate if the designated constraints aren't met. type ListRequestValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e ListRequestValidationError) Field() string { return e.field } // Reason function returns reason value. func (e ListRequestValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e ListRequestValidationError) Cause() error { return e.cause } // Key function returns key value. func (e ListRequestValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e ListRequestValidationError) ErrorName() string { return "ListRequestValidationError" } // Error satisfies the builtin error interface func (e ListRequestValidationError) 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 %sListRequest.%s: %s%s", key, e.field, e.reason, cause) } var _ error = ListRequestValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = ListRequestValidationError{} // Validate checks the field values on ServiceRegistration with the rules // defined in the proto definition for this message. If any rules are // violated, the first error encountered is returned, or nil if there are no violations. func (m *ServiceRegistration) Validate() error { return m.validate(false) } // ValidateAll checks the field values on ServiceRegistration with the rules // defined in the proto definition for this message. If any rules are // violated, the result is a list of violation errors wrapped in // ServiceRegistrationMultiError, or nil if none found. func (m *ServiceRegistration) ValidateAll() error { return m.validate(true) } func (m *ServiceRegistration) validate(all bool) error { if m == nil { return nil } var errors []error if all { switch v := interface{}(m.GetService()).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, ServiceRegistrationValidationError{ field: "Service", reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, ServiceRegistrationValidationError{ field: "Service", reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(m.GetService()).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return ServiceRegistrationValidationError{ field: "Service", reason: "embedded message failed validation", cause: err, } } } if all { switch v := interface{}(m.GetExpiresAt()).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, ServiceRegistrationValidationError{ field: "ExpiresAt", reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, ServiceRegistrationValidationError{ field: "ExpiresAt", reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(m.GetExpiresAt()).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return ServiceRegistrationValidationError{ field: "ExpiresAt", reason: "embedded message failed validation", cause: err, } } } if len(errors) > 0 { return ServiceRegistrationMultiError(errors) } return nil } // ServiceRegistrationMultiError is an error wrapping multiple validation // errors returned by ServiceRegistration.ValidateAll() if the designated // constraints aren't met. type ServiceRegistrationMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m ServiceRegistrationMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m ServiceRegistrationMultiError) AllErrors() []error { return m } // ServiceRegistrationValidationError is the validation error returned by // ServiceRegistration.Validate if the designated constraints aren't met. type ServiceRegistrationValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e ServiceRegistrationValidationError) Field() string { return e.field } // Reason function returns reason value. func (e ServiceRegistrationValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e ServiceRegistrationValidationError) Cause() error { return e.cause } // Key function returns key value. func (e ServiceRegistrationValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e ServiceRegistrationValidationError) ErrorName() string { return "ServiceRegistrationValidationError" } // Error satisfies the builtin error interface func (e ServiceRegistrationValidationError) 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 %sServiceRegistration.%s: %s%s", key, e.field, e.reason, cause) } var _ error = ServiceRegistrationValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = ServiceRegistrationValidationError{} // Validate checks the field values on ServiceList with the rules defined in // the proto definition for this message. If any rules are violated, the first // error encountered is returned, or nil if there are no violations. func (m *ServiceList) Validate() error { return m.validate(false) } // ValidateAll checks the field values on ServiceList with the rules defined in // the proto definition for this message. If any rules are violated, the // result is a list of violation errors wrapped in ServiceListMultiError, or // nil if none found. func (m *ServiceList) ValidateAll() error { return m.validate(true) } func (m *ServiceList) validate(all bool) error { if m == nil { return nil } var errors []error for idx, item := range m.GetServices() { _, _ = idx, item if all { switch v := interface{}(item).(type) { case interface{ ValidateAll() error }: if err := v.ValidateAll(); err != nil { errors = append(errors, ServiceListValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, }) } case interface{ Validate() error }: if err := v.Validate(); err != nil { errors = append(errors, ServiceListValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, }) } } } else if v, ok := interface{}(item).(interface{ Validate() error }); ok { if err := v.Validate(); err != nil { return ServiceListValidationError{ field: fmt.Sprintf("Services[%v]", idx), reason: "embedded message failed validation", cause: err, } } } } if len(errors) > 0 { return ServiceListMultiError(errors) } return nil } // ServiceListMultiError is an error wrapping multiple validation errors // returned by ServiceList.ValidateAll() if the designated constraints aren't met. type ServiceListMultiError []error // Error returns a concatenation of all the error messages it wraps. func (m ServiceListMultiError) Error() string { var msgs []string for _, err := range m { msgs = append(msgs, err.Error()) } return strings.Join(msgs, "; ") } // AllErrors returns a list of validation violation errors. func (m ServiceListMultiError) AllErrors() []error { return m } // ServiceListValidationError is the validation error returned by // ServiceList.Validate if the designated constraints aren't met. type ServiceListValidationError struct { field string reason string cause error key bool } // Field function returns field value. func (e ServiceListValidationError) Field() string { return e.field } // Reason function returns reason value. func (e ServiceListValidationError) Reason() string { return e.reason } // Cause function returns cause value. func (e ServiceListValidationError) Cause() error { return e.cause } // Key function returns key value. func (e ServiceListValidationError) Key() bool { return e.key } // ErrorName returns error name. func (e ServiceListValidationError) ErrorName() string { return "ServiceListValidationError" } // Error satisfies the builtin error interface func (e ServiceListValidationError) 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 %sServiceList.%s: %s%s", key, e.field, e.reason, cause) } var _ error = ServiceListValidationError{} var _ interface { Field() string Reason() string Key() bool Cause() error ErrorName() string } = ServiceListValidationError{}