| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| package models |
|
|
| |
| |
|
|
| import ( |
| "context" |
| "encoding/json" |
| "strconv" |
|
|
| "github.com/go-openapi/errors" |
| "github.com/go-openapi/strfmt" |
| "github.com/go-openapi/swag" |
| "github.com/go-openapi/validate" |
| ) |
|
|
| |
| |
| |
| type NodeStatus struct { |
|
|
| |
| BatchStats *BatchStats `json:"batchStats,omitempty"` |
|
|
| |
| GitHash string `json:"gitHash,omitempty"` |
|
|
| |
| Name string `json:"name,omitempty"` |
|
|
| |
| Shards []*NodeShardStatus `json:"shards"` |
|
|
| |
| Stats *NodeStats `json:"stats,omitempty"` |
|
|
| |
| |
| Status *string `json:"status,omitempty"` |
|
|
| |
| Version string `json:"version,omitempty"` |
| } |
|
|
| |
| func (m *NodeStatus) Validate(formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.validateBatchStats(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateShards(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateStats(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 *NodeStatus) validateBatchStats(formats strfmt.Registry) error { |
| if swag.IsZero(m.BatchStats) { |
| return nil |
| } |
|
|
| if m.BatchStats != nil { |
| if err := m.BatchStats.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("batchStats") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("batchStats") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *NodeStatus) validateShards(formats strfmt.Registry) error { |
| if swag.IsZero(m.Shards) { |
| return nil |
| } |
|
|
| for i := 0; i < len(m.Shards); i++ { |
| if swag.IsZero(m.Shards[i]) { |
| continue |
| } |
|
|
| if m.Shards[i] != nil { |
| if err := m.Shards[i].Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("shards" + "." + strconv.Itoa(i)) |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("shards" + "." + strconv.Itoa(i)) |
| } |
| return err |
| } |
| } |
|
|
| } |
|
|
| return nil |
| } |
|
|
| func (m *NodeStatus) validateStats(formats strfmt.Registry) error { |
| if swag.IsZero(m.Stats) { |
| return nil |
| } |
|
|
| if m.Stats != nil { |
| if err := m.Stats.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("stats") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("stats") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| var nodeStatusTypeStatusPropEnum []interface{} |
|
|
| func init() { |
| var res []string |
| if err := json.Unmarshal([]byte(`["HEALTHY","UNHEALTHY","UNAVAILABLE","TIMEOUT"]`), &res); err != nil { |
| panic(err) |
| } |
| for _, v := range res { |
| nodeStatusTypeStatusPropEnum = append(nodeStatusTypeStatusPropEnum, v) |
| } |
| } |
|
|
| const ( |
|
|
| |
| NodeStatusStatusHEALTHY string = "HEALTHY" |
|
|
| |
| NodeStatusStatusUNHEALTHY string = "UNHEALTHY" |
|
|
| |
| NodeStatusStatusUNAVAILABLE string = "UNAVAILABLE" |
|
|
| |
| NodeStatusStatusTIMEOUT string = "TIMEOUT" |
| ) |
|
|
| |
| func (m *NodeStatus) validateStatusEnum(path, location string, value string) error { |
| if err := validate.EnumCase(path, location, value, nodeStatusTypeStatusPropEnum, true); err != nil { |
| return err |
| } |
| return nil |
| } |
|
|
| func (m *NodeStatus) validateStatus(formats strfmt.Registry) error { |
| if swag.IsZero(m.Status) { |
| return nil |
| } |
|
|
| |
| if err := m.validateStatusEnum("status", "body", *m.Status); err != nil { |
| return err |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *NodeStatus) ContextValidate(ctx context.Context, formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.contextValidateBatchStats(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.contextValidateShards(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.contextValidateStats(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| func (m *NodeStatus) contextValidateBatchStats(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.BatchStats != nil { |
| if err := m.BatchStats.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("batchStats") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("batchStats") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *NodeStatus) contextValidateShards(ctx context.Context, formats strfmt.Registry) error { |
|
|
| for i := 0; i < len(m.Shards); i++ { |
|
|
| if m.Shards[i] != nil { |
| if err := m.Shards[i].ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("shards" + "." + strconv.Itoa(i)) |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("shards" + "." + strconv.Itoa(i)) |
| } |
| return err |
| } |
| } |
|
|
| } |
|
|
| return nil |
| } |
|
|
| func (m *NodeStatus) contextValidateStats(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.Stats != nil { |
| if err := m.Stats.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("stats") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("stats") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *NodeStatus) MarshalBinary() ([]byte, error) { |
| if m == nil { |
| return nil, nil |
| } |
| return swag.WriteJSON(m) |
| } |
|
|
| |
| func (m *NodeStatus) UnmarshalBinary(b []byte) error { |
| var res NodeStatus |
| if err := swag.ReadJSON(b, &res); err != nil { |
| return err |
| } |
| *m = res |
| return nil |
| } |
|
|