blob: 539df8183ba236118f8a9db79048d4fef70f8ecf [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"
)
// Rack rack
// swagger:model Rack
type Rack struct {
// Comments
Comments string `json:"comments,omitempty"`
// Created
// Read Only: true
Created strfmt.Date `json:"created,omitempty"`
// Custom fields
CustomFields interface{} `json:"custom_fields,omitempty"`
// Descending units
//
// Units are numbered top-to-bottom
DescUnits bool `json:"desc_units,omitempty"`
// Display name
// Read Only: true
DisplayName string `json:"display_name,omitempty"`
// Facility ID
// Required: true
// Max Length: 50
FacilityID *string `json:"facility_id"`
// group
// Required: true
Group *NestedRackGroup `json:"group"`
// ID
// Read Only: true
ID int64 `json:"id,omitempty"`
// Last updated
// Read Only: true
LastUpdated strfmt.DateTime `json:"last_updated,omitempty"`
// Name
// Required: true
// Max Length: 50
Name *string `json:"name"`
// role
// Required: true
Role *NestedRackRole `json:"role"`
// Serial number
// Max Length: 50
Serial string `json:"serial,omitempty"`
// site
// Required: true
Site *NestedSite `json:"site"`
// tenant
// Required: true
Tenant *NestedTenant `json:"tenant"`
// type
// Required: true
Type *RackType `json:"type"`
// Height (U)
// Maximum: 100
// Minimum: 1
UHeight int64 `json:"u_height,omitempty"`
// width
// Required: true
Width *RackWidth `json:"width"`
}
// Validate validates this rack
func (m *Rack) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateFacilityID(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateGroup(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateName(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateRole(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateSerial(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateSite(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateTenant(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateType(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateUHeight(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateWidth(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Rack) validateFacilityID(formats strfmt.Registry) error {
if err := validate.Required("facility_id", "body", m.FacilityID); err != nil {
return err
}
if err := validate.MaxLength("facility_id", "body", string(*m.FacilityID), 50); err != nil {
return err
}
return nil
}
func (m *Rack) validateGroup(formats strfmt.Registry) error {
if err := validate.Required("group", "body", m.Group); err != nil {
return err
}
if m.Group != nil {
if err := m.Group.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("group")
}
return err
}
}
return nil
}
func (m *Rack) 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), 50); err != nil {
return err
}
return nil
}
func (m *Rack) 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 *Rack) validateSerial(formats strfmt.Registry) error {
if swag.IsZero(m.Serial) { // not required
return nil
}
if err := validate.MaxLength("serial", "body", string(m.Serial), 50); err != nil {
return err
}
return nil
}
func (m *Rack) validateSite(formats strfmt.Registry) error {
if err := validate.Required("site", "body", m.Site); err != nil {
return err
}
if m.Site != nil {
if err := m.Site.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("site")
}
return err
}
}
return nil
}
func (m *Rack) 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 *Rack) validateType(formats strfmt.Registry) error {
if err := validate.Required("type", "body", m.Type); err != nil {
return err
}
if m.Type != nil {
if err := m.Type.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("type")
}
return err
}
}
return nil
}
func (m *Rack) validateUHeight(formats strfmt.Registry) error {
if swag.IsZero(m.UHeight) { // not required
return nil
}
if err := validate.MinimumInt("u_height", "body", int64(m.UHeight), 1, false); err != nil {
return err
}
if err := validate.MaximumInt("u_height", "body", int64(m.UHeight), 100, false); err != nil {
return err
}
return nil
}
func (m *Rack) validateWidth(formats strfmt.Registry) error {
if err := validate.Required("width", "body", m.Width); err != nil {
return err
}
if m.Width != nil {
if err := m.Width.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("width")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *Rack) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Rack) UnmarshalBinary(b []byte) error {
var res Rack
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}