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>
144 lines
3.0 KiB
Go
144 lines
3.0 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"
|
|
)
|
|
|
|
// Drive drive
|
|
// swagger:model Drive
|
|
type Drive struct {
|
|
|
|
// drive id
|
|
// Required: true
|
|
DriveID *string `json:"drive_id"`
|
|
|
|
// is read only
|
|
// Required: true
|
|
IsReadOnly *bool `json:"is_read_only"`
|
|
|
|
// is root device
|
|
// Required: true
|
|
IsRootDevice *bool `json:"is_root_device"`
|
|
|
|
// Represents the unique id of the boot partition of this device. It is optional and it will be taken into account only if the is_root_device field is true.
|
|
Partuuid string `json:"partuuid,omitempty"`
|
|
|
|
// Host level path for the guest drive
|
|
// Required: true
|
|
PathOnHost *string `json:"path_on_host"`
|
|
|
|
// rate limiter
|
|
RateLimiter *RateLimiter `json:"rate_limiter,omitempty"`
|
|
}
|
|
|
|
// Validate validates this drive
|
|
func (m *Drive) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateDriveID(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateIsReadOnly(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateIsRootDevice(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validatePathOnHost(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateRateLimiter(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Drive) validateDriveID(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("drive_id", "body", m.DriveID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Drive) validateIsReadOnly(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("is_read_only", "body", m.IsReadOnly); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Drive) validateIsRootDevice(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("is_root_device", "body", m.IsRootDevice); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Drive) validatePathOnHost(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("path_on_host", "body", m.PathOnHost); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Drive) validateRateLimiter(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.RateLimiter) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.RateLimiter != nil {
|
|
if err := m.RateLimiter.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("rate_limiter")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Drive) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Drive) UnmarshalBinary(b []byte) error {
|
|
var res Drive
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|