2022-04-11 09:35:06 +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 (
|
|
|
|
"context"
|
|
|
|
|
2022-04-11 11:18:26 +00:00
|
|
|
"github.com/go-openapi/errors"
|
2022-04-11 09:35:06 +00:00
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
2022-04-11 11:18:26 +00:00
|
|
|
"github.com/go-openapi/validate"
|
2022-04-11 09:35:06 +00:00
|
|
|
)
|
|
|
|
|
2022-07-20 15:16:30 +00:00
|
|
|
// Attribute Attribute is a pair of strings that can be attached to a container or an object.
|
|
|
|
// Example: {"key":"User-Defined-Tag","value":"tag value"}
|
2022-04-11 09:35:06 +00:00
|
|
|
//
|
|
|
|
// swagger:model Attribute
|
|
|
|
type Attribute struct {
|
|
|
|
|
|
|
|
// key
|
2022-04-11 11:18:26 +00:00
|
|
|
// Required: true
|
|
|
|
Key *string `json:"key"`
|
2022-04-11 09:35:06 +00:00
|
|
|
|
|
|
|
// value
|
2022-04-11 11:18:26 +00:00
|
|
|
// Required: true
|
|
|
|
Value *string `json:"value"`
|
2022-04-11 09:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this attribute
|
|
|
|
func (m *Attribute) Validate(formats strfmt.Registry) error {
|
2022-04-11 11:18:26 +00:00
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.validateKey(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 *Attribute) validateKey(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("key", "body", m.Key); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Attribute) validateValue(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("value", "body", m.Value); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-11 09:35:06 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validates this attribute based on context it is used
|
|
|
|
func (m *Attribute) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *Attribute) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *Attribute) UnmarshalBinary(b []byte) error {
|
|
|
|
var res Attribute
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|