// 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 ( "context" "github.com/go-openapi/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" "github.com/go-openapi/validate" ) // MetricsDetailItem MetricsDetailItem // // swagger:model MetricsDetailItem type MetricsDetailItem struct { // labels of the metric Labels MetricsLabels `json:"labels,omitempty"` // name of the metric // Required: true // Max Length: 255 Name *string `json:"name"` // unit of the metric // Required: true // Max Length: 255 Unit *string `json:"unit"` // value of the metric // Required: true Value *float64 `json:"value"` } // Validate validates this metrics detail item func (m *MetricsDetailItem) Validate(formats strfmt.Registry) error { var res []error if err := m.validateLabels(formats); err != nil { res = append(res, err) } if err := m.validateName(formats); err != nil { res = append(res, err) } if err := m.validateUnit(formats); err != nil { res = append(res, err) } if err := m.validateValue(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *MetricsDetailItem) validateLabels(formats strfmt.Registry) error { if swag.IsZero(m.Labels) { // not required return nil } if m.Labels != nil { if err := m.Labels.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("labels") } else if ce, ok := err.(*errors.CompositeError); ok { return ce.ValidateName("labels") } return err } } return nil } func (m *MetricsDetailItem) validateName(formats strfmt.Registry) error { if err := validate.Required("name", "body", m.Name); err != nil { return err } if err := validate.MaxLength("name", "body", *m.Name, 255); err != nil { return err } return nil } func (m *MetricsDetailItem) validateUnit(formats strfmt.Registry) error { if err := validate.Required("unit", "body", m.Unit); err != nil { return err } if err := validate.MaxLength("unit", "body", *m.Unit, 255); err != nil { return err } return nil } func (m *MetricsDetailItem) validateValue(formats strfmt.Registry) error { if err := validate.Required("value", "body", m.Value); err != nil { return err } return nil } // ContextValidate validate this metrics detail item based on the context it is used func (m *MetricsDetailItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error { var res []error if err := m.contextValidateLabels(ctx, formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *MetricsDetailItem) contextValidateLabels(ctx context.Context, formats strfmt.Registry) error { if swag.IsZero(m.Labels) { // not required return nil } if err := m.Labels.ContextValidate(ctx, formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("labels") } else if ce, ok := err.(*errors.CompositeError); ok { return ce.ValidateName("labels") } return err } return nil } // MarshalBinary interface implementation func (m *MetricsDetailItem) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *MetricsDetailItem) UnmarshalBinary(b []byte) error { var res MetricsDetailItem if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }