add more required fields in models
This commit is contained in:
parent
e36d2cb6b8
commit
12ce5e3fc1
2 changed files with 50 additions and 3 deletions
|
@ -1142,6 +1142,10 @@ definitions:
|
||||||
labels:
|
labels:
|
||||||
$ref: '#/definitions/MetricsLabels'
|
$ref: '#/definitions/MetricsLabels'
|
||||||
description: labels of the metric
|
description: labels of the metric
|
||||||
|
required:
|
||||||
|
- name
|
||||||
|
- value
|
||||||
|
- unit
|
||||||
MetricsMeta:
|
MetricsMeta:
|
||||||
title: MetricsMeta
|
title: MetricsMeta
|
||||||
type: object
|
type: object
|
||||||
|
|
|
@ -11,6 +11,7 @@ import (
|
||||||
"github.com/go-openapi/errors"
|
"github.com/go-openapi/errors"
|
||||||
"github.com/go-openapi/strfmt"
|
"github.com/go-openapi/strfmt"
|
||||||
"github.com/go-openapi/swag"
|
"github.com/go-openapi/swag"
|
||||||
|
"github.com/go-openapi/validate"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MetricsDetailItem MetricsDetailItem
|
// MetricsDetailItem MetricsDetailItem
|
||||||
|
@ -22,13 +23,16 @@ type MetricsDetailItem struct {
|
||||||
Labels MetricsLabels `json:"labels,omitempty"`
|
Labels MetricsLabels `json:"labels,omitempty"`
|
||||||
|
|
||||||
// name of the metric
|
// name of the metric
|
||||||
Name string `json:"name,omitempty"`
|
// Required: true
|
||||||
|
Name *string `json:"name"`
|
||||||
|
|
||||||
// unit of the metric
|
// unit of the metric
|
||||||
Unit string `json:"unit,omitempty"`
|
// Required: true
|
||||||
|
Unit *string `json:"unit"`
|
||||||
|
|
||||||
// value of the metric
|
// value of the metric
|
||||||
Value float64 `json:"value,omitempty"`
|
// Required: true
|
||||||
|
Value *float64 `json:"value"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate validates this metrics detail item
|
// Validate validates this metrics detail item
|
||||||
|
@ -39,6 +43,18 @@ func (m *MetricsDetailItem) Validate(formats strfmt.Registry) error {
|
||||||
res = append(res, err)
|
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 {
|
if len(res) > 0 {
|
||||||
return errors.CompositeValidationError(res...)
|
return errors.CompositeValidationError(res...)
|
||||||
}
|
}
|
||||||
|
@ -64,6 +80,33 @@ func (m *MetricsDetailItem) validateLabels(formats strfmt.Registry) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *MetricsDetailItem) validateName(formats strfmt.Registry) error {
|
||||||
|
|
||||||
|
if err := validate.Required("name", "body", m.Name); 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
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
// ContextValidate validate this metrics detail item based on the context it is used
|
||||||
func (m *MetricsDetailItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
func (m *MetricsDetailItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||||||
var res []error
|
var res []error
|
||||||
|
|
Loading…
Reference in a new issue