b412af2e22
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
137 lines
3.3 KiB
Go
137 lines
3.3 KiB
Go
// 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"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// ObjectList List of objects.
|
|
// Example: {"objects":[{"address":{"containerId":"5HZTn5qkRnmgSz9gSrw22CEdPPk6nQhkwf2Mgzyvkikv","objectId":"8N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd"},"name":"/my/object/name"},{"address":{"containerId":"5HZTn5qkRnmgSz9gSrw22CEdPPk6nQhkwf2Mgzyvkikv","objectId":"3GbmMWusaWgMHokWui2zDunxMTzButuQMVLbtL3cDn8s"},"name":"/my/object/some/other/name"}],"size":2}
|
|
//
|
|
// swagger:model ObjectList
|
|
type ObjectList struct {
|
|
|
|
// objects
|
|
// Required: true
|
|
Objects []*ObjectBaseInfo `json:"objects"`
|
|
|
|
// size
|
|
// Required: true
|
|
Size *int64 `json:"size"`
|
|
}
|
|
|
|
// Validate validates this object list
|
|
func (m *ObjectList) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateObjects(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateSize(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ObjectList) validateObjects(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("objects", "body", m.Objects); err != nil {
|
|
return err
|
|
}
|
|
|
|
for i := 0; i < len(m.Objects); i++ {
|
|
if swag.IsZero(m.Objects[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Objects[i] != nil {
|
|
if err := m.Objects[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("objects" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("objects" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *ObjectList) validateSize(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("size", "body", m.Size); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this object list based on the context it is used
|
|
func (m *ObjectList) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateObjects(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ObjectList) contextValidateObjects(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Objects); i++ {
|
|
|
|
if m.Objects[i] != nil {
|
|
if err := m.Objects[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("objects" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("objects" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *ObjectList) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *ObjectList) UnmarshalBinary(b []byte) error {
|
|
var res ObjectList
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|