blob: b3a8d28836261b93a68c8af20ccedd5cc65db02f [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"
)
// WritableRack writable rack
// swagger:model WritableRack
type WritableRack 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"`
// Facility ID
// Max Length: 50
FacilityID string `json:"facility_id,omitempty"`
// Group
Group int64 `json:"group,omitempty"`
// 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
Role int64 `json:"role,omitempty"`
// Serial number
// Max Length: 50
Serial string `json:"serial,omitempty"`
// Site
// Required: true
Site *int64 `json:"site"`
// Tenant
Tenant int64 `json:"tenant,omitempty"`
// Type
Type int64 `json:"type,omitempty"`
// Height (U)
// Maximum: 100
// Minimum: 1
UHeight int64 `json:"u_height,omitempty"`
// Width
//
// Rail-to-rail width
Width int64 `json:"width,omitempty"`
}
// Validate validates this writable rack
func (m *WritableRack) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateFacilityID(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateName(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.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 *WritableRack) validateFacilityID(formats strfmt.Registry) error {
if swag.IsZero(m.FacilityID) { // not required
return nil
}
if err := validate.MaxLength("facility_id", "body", string(m.FacilityID), 50); err != nil {
return err
}
return nil
}
func (m *WritableRack) 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 *WritableRack) 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 *WritableRack) validateSite(formats strfmt.Registry) error {
if err := validate.Required("site", "body", m.Site); err != nil {
return err
}
return nil
}
var writableRackTypeTypePropEnum []interface{}
func init() {
var res []int64
if err := json.Unmarshal([]byte(`[100,200,300,1000,1100]`), &res); err != nil {
panic(err)
}
for _, v := range res {
writableRackTypeTypePropEnum = append(writableRackTypeTypePropEnum, v)
}
}
// prop value enum
func (m *WritableRack) validateTypeEnum(path, location string, value int64) error {
if err := validate.Enum(path, location, value, writableRackTypeTypePropEnum); err != nil {
return err
}
return nil
}
func (m *WritableRack) validateType(formats strfmt.Registry) error {
if swag.IsZero(m.Type) { // not required
return nil
}
// value enum
if err := m.validateTypeEnum("type", "body", m.Type); err != nil {
return err
}
return nil
}
func (m *WritableRack) 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
}
var writableRackTypeWidthPropEnum []interface{}
func init() {
var res []int64
if err := json.Unmarshal([]byte(`[19,23]`), &res); err != nil {
panic(err)
}
for _, v := range res {
writableRackTypeWidthPropEnum = append(writableRackTypeWidthPropEnum, v)
}
}
// prop value enum
func (m *WritableRack) validateWidthEnum(path, location string, value int64) error {
if err := validate.Enum(path, location, value, writableRackTypeWidthPropEnum); err != nil {
return err
}
return nil
}
func (m *WritableRack) validateWidth(formats strfmt.Registry) error {
if swag.IsZero(m.Width) { // not required
return nil
}
// value enum
if err := m.validateWidthEnum("width", "body", m.Width); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *WritableRack) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *WritableRack) UnmarshalBinary(b []byte) error {
var res WritableRack
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}