blob: 4ba7fe767675b7d79b0b874e538b539b436489c2 [file] [log] [blame]
// Code generated by go-swagger; DO NOT EDIT.
// Copyright 2018 The go-netbox Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
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 (
"encoding/json"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// WritableVirtualMachine writable virtual machine
// swagger:model WritableVirtualMachine
type WritableVirtualMachine struct {
// Cluster
// Required: true
Cluster *int64 `json:"cluster"`
// Comments
Comments string `json:"comments,omitempty"`
// Created
// Read Only: true
Created strfmt.Date `json:"created,omitempty"`
// Custom fields
CustomFields interface{} `json:"custom_fields,omitempty"`
// Disk (GB)
// Maximum: 2.147483647e+09
// Minimum: 0
Disk *int64 `json:"disk,omitempty"`
// ID
// Read Only: true
ID int64 `json:"id,omitempty"`
// Last updated
// Read Only: true
LastUpdated strfmt.DateTime `json:"last_updated,omitempty"`
// Memory (MB)
// Maximum: 2.147483647e+09
// Minimum: 0
Memory *int64 `json:"memory,omitempty"`
// Name
// Required: true
// Max Length: 64
Name *string `json:"name"`
// Platform
Platform int64 `json:"platform,omitempty"`
// Primary IPv4
PrimaryIp4 int64 `json:"primary_ip4,omitempty"`
// Primary IPv6
PrimaryIp6 int64 `json:"primary_ip6,omitempty"`
// Role
Role int64 `json:"role,omitempty"`
// Status
Status int64 `json:"status,omitempty"`
// Tenant
Tenant int64 `json:"tenant,omitempty"`
// VCPUs
// Maximum: 32767
// Minimum: 0
Vcpus *int64 `json:"vcpus,omitempty"`
}
// Validate validates this writable virtual machine
func (m *WritableVirtualMachine) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateCluster(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateDisk(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateMemory(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateName(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateStatus(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateVcpus(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *WritableVirtualMachine) validateCluster(formats strfmt.Registry) error {
if err := validate.Required("cluster", "body", m.Cluster); err != nil {
return err
}
return nil
}
func (m *WritableVirtualMachine) validateDisk(formats strfmt.Registry) error {
if swag.IsZero(m.Disk) { // not required
return nil
}
if err := validate.MinimumInt("disk", "body", int64(*m.Disk), 0, false); err != nil {
return err
}
if err := validate.MaximumInt("disk", "body", int64(*m.Disk), 2.147483647e+09, false); err != nil {
return err
}
return nil
}
func (m *WritableVirtualMachine) validateMemory(formats strfmt.Registry) error {
if swag.IsZero(m.Memory) { // not required
return nil
}
if err := validate.MinimumInt("memory", "body", int64(*m.Memory), 0, false); err != nil {
return err
}
if err := validate.MaximumInt("memory", "body", int64(*m.Memory), 2.147483647e+09, false); err != nil {
return err
}
return nil
}
func (m *WritableVirtualMachine) validateName(formats strfmt.Registry) error {
if err := validate.Required("name", "body", m.Name); err != nil {
return err
}
if err := validate.MaxLength("name", "body", string(*m.Name), 64); err != nil {
return err
}
return nil
}
var writableVirtualMachineTypeStatusPropEnum []interface{}
func init() {
var res []int64
if err := json.Unmarshal([]byte(`[1,0,3]`), &res); err != nil {
panic(err)
}
for _, v := range res {
writableVirtualMachineTypeStatusPropEnum = append(writableVirtualMachineTypeStatusPropEnum, v)
}
}
// prop value enum
func (m *WritableVirtualMachine) validateStatusEnum(path, location string, value int64) error {
if err := validate.Enum(path, location, value, writableVirtualMachineTypeStatusPropEnum); err != nil {
return err
}
return nil
}
func (m *WritableVirtualMachine) validateStatus(formats strfmt.Registry) error {
if swag.IsZero(m.Status) { // not required
return nil
}
// value enum
if err := m.validateStatusEnum("status", "body", m.Status); err != nil {
return err
}
return nil
}
func (m *WritableVirtualMachine) validateVcpus(formats strfmt.Registry) error {
if swag.IsZero(m.Vcpus) { // not required
return nil
}
if err := validate.MinimumInt("vcpus", "body", int64(*m.Vcpus), 0, false); err != nil {
return err
}
if err := validate.MaximumInt("vcpus", "body", int64(*m.Vcpus), 32767, false); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *WritableVirtualMachine) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *WritableVirtualMachine) UnmarshalBinary(b []byte) error {
var res WritableVirtualMachine
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}