blob: b850193add4cbf0c12ee4eb8b7be9618c65c2232 [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 (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// VirtualMachine virtual machine
// swagger:model VirtualMachine
type VirtualMachine struct {
// cluster
// Required: true
Cluster *NestedCluster `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
// Required: true
Platform *NestedPlatform `json:"platform"`
// primary ip
// Required: true
PrimaryIP *VirtualMachineIPAddress `json:"primary_ip"`
// primary ip4
// Required: true
PrimaryIp4 *VirtualMachineIPAddress `json:"primary_ip4"`
// primary ip6
// Required: true
PrimaryIp6 *VirtualMachineIPAddress `json:"primary_ip6"`
// role
// Required: true
Role *NestedDeviceRole `json:"role"`
// status
// Required: true
Status *VirtualMachineStatus `json:"status"`
// tenant
// Required: true
Tenant *NestedTenant `json:"tenant"`
// VCPUs
// Maximum: 32767
// Minimum: 0
Vcpus *int64 `json:"vcpus,omitempty"`
}
// Validate validates this virtual machine
func (m *VirtualMachine) 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.validatePlatform(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validatePrimaryIP(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validatePrimaryIp4(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validatePrimaryIp6(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateRole(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateStatus(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateTenant(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 *VirtualMachine) validateCluster(formats strfmt.Registry) error {
if err := validate.Required("cluster", "body", m.Cluster); err != nil {
return err
}
if m.Cluster != nil {
if err := m.Cluster.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("cluster")
}
return err
}
}
return nil
}
func (m *VirtualMachine) 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 *VirtualMachine) 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 *VirtualMachine) 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
}
func (m *VirtualMachine) validatePlatform(formats strfmt.Registry) error {
if err := validate.Required("platform", "body", m.Platform); err != nil {
return err
}
if m.Platform != nil {
if err := m.Platform.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("platform")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validatePrimaryIP(formats strfmt.Registry) error {
if err := validate.Required("primary_ip", "body", m.PrimaryIP); err != nil {
return err
}
if m.PrimaryIP != nil {
if err := m.PrimaryIP.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("primary_ip")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validatePrimaryIp4(formats strfmt.Registry) error {
if err := validate.Required("primary_ip4", "body", m.PrimaryIp4); err != nil {
return err
}
if m.PrimaryIp4 != nil {
if err := m.PrimaryIp4.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("primary_ip4")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validatePrimaryIp6(formats strfmt.Registry) error {
if err := validate.Required("primary_ip6", "body", m.PrimaryIp6); err != nil {
return err
}
if m.PrimaryIp6 != nil {
if err := m.PrimaryIp6.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("primary_ip6")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validateRole(formats strfmt.Registry) error {
if err := validate.Required("role", "body", m.Role); err != nil {
return err
}
if m.Role != nil {
if err := m.Role.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("role")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validateStatus(formats strfmt.Registry) error {
if err := validate.Required("status", "body", m.Status); err != nil {
return err
}
if m.Status != nil {
if err := m.Status.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("status")
}
return err
}
}
return nil
}
func (m *VirtualMachine) validateTenant(formats strfmt.Registry) error {
if err := validate.Required("tenant", "body", m.Tenant); err != nil {
return err
}
if m.Tenant != nil {
if err := m.Tenant.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("tenant")
}
return err
}
}
return nil
}
func (m *VirtualMachine) 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 *VirtualMachine) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *VirtualMachine) UnmarshalBinary(b []byte) error {
var res VirtualMachine
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}