mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-03 06:24:21 +01:00
``` swagger generate model -f ./firecracker-experimental.yaml --model-package=client/models --client-package=client swagger generate client -f ./firecracker-experimental.yaml --model-package=client/models --client-package=client ``` Signed-off-by: Manohar Castelino <manohar.r.castelino@intel.com>
87 lines
1.7 KiB
Go
87 lines
1.7 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 (
|
|
strfmt "github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// Vsock vsock
|
|
// swagger:model Vsock
|
|
type Vsock struct {
|
|
|
|
// Guest Vsock CID
|
|
// Required: true
|
|
// Minimum: 3
|
|
GuestCid *int64 `json:"guest_cid"`
|
|
|
|
// id
|
|
// Required: true
|
|
ID *string `json:"id"`
|
|
}
|
|
|
|
// Validate validates this vsock
|
|
func (m *Vsock) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateGuestCid(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateID(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Vsock) validateGuestCid(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("guest_cid", "body", m.GuestCid); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MinimumInt("guest_cid", "body", int64(*m.GuestCid), 3, false); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Vsock) validateID(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("id", "body", m.ID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Vsock) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Vsock) UnmarshalBinary(b []byte) error {
|
|
var res Vsock
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|