2018-11-08 17:46:04 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
// This file was generated by the swagger tool.
|
|
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
|
|
|
|
import (
|
2019-01-25 17:36:31 +00:00
|
|
|
"encoding/json"
|
2018-11-08 17:46:04 +00:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
strfmt "github.com/go-openapi/strfmt"
|
|
|
|
|
|
|
|
"github.com/go-openapi/errors"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
"github.com/go-openapi/validate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ClusterStatus cluster status
|
|
|
|
// swagger:model clusterStatus
|
|
|
|
type ClusterStatus struct {
|
|
|
|
|
|
|
|
// name
|
|
|
|
// Required: true
|
|
|
|
Name *string `json:"name"`
|
|
|
|
|
|
|
|
// peers
|
|
|
|
// Required: true
|
|
|
|
// Minimum: 0
|
|
|
|
Peers []*PeerStatus `json:"peers"`
|
|
|
|
|
|
|
|
// status
|
|
|
|
// Required: true
|
2019-01-25 17:36:31 +00:00
|
|
|
// Enum: [ready settling disabled]
|
2018-11-08 17:46:04 +00:00
|
|
|
Status *string `json:"status"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this cluster status
|
|
|
|
func (m *ClusterStatus) Validate(formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.validateName(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validatePeers(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validateStatus(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClusterStatus) validateName(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("name", "body", m.Name); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ClusterStatus) validatePeers(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("peers", "body", m.Peers); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(m.Peers); i++ {
|
|
|
|
if swag.IsZero(m.Peers[i]) { // not required
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.Peers[i] != nil {
|
|
|
|
if err := m.Peers[i].Validate(formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName("peers" + "." + strconv.Itoa(i))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-25 17:36:31 +00:00
|
|
|
var clusterStatusTypeStatusPropEnum []interface{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
var res []string
|
|
|
|
if err := json.Unmarshal([]byte(`["ready","settling","disabled"]`), &res); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
for _, v := range res {
|
|
|
|
clusterStatusTypeStatusPropEnum = append(clusterStatusTypeStatusPropEnum, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
|
|
|
// ClusterStatusStatusReady captures enum value "ready"
|
|
|
|
ClusterStatusStatusReady string = "ready"
|
|
|
|
|
|
|
|
// ClusterStatusStatusSettling captures enum value "settling"
|
|
|
|
ClusterStatusStatusSettling string = "settling"
|
|
|
|
|
|
|
|
// ClusterStatusStatusDisabled captures enum value "disabled"
|
|
|
|
ClusterStatusStatusDisabled string = "disabled"
|
|
|
|
)
|
|
|
|
|
|
|
|
// prop value enum
|
|
|
|
func (m *ClusterStatus) validateStatusEnum(path, location string, value string) error {
|
|
|
|
if err := validate.Enum(path, location, value, clusterStatusTypeStatusPropEnum); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-08 17:46:04 +00:00
|
|
|
func (m *ClusterStatus) validateStatus(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("status", "body", m.Status); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-01-25 17:36:31 +00:00
|
|
|
// value enum
|
|
|
|
if err := m.validateStatusEnum("status", "body", *m.Status); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-11-08 17:46:04 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *ClusterStatus) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *ClusterStatus) UnmarshalBinary(b []byte) error {
|
|
|
|
var res ClusterStatus
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|