blob: 834eab814853a5455f1fa1b5ad4e9d251b68bbcf [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// Code generated by go-swagger; DO NOT EDIT.
2
3// Copyright 2018 The go-netbox Authors.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
17package dcim
18
19// This file was generated by the swagger tool.
20// Editing this file might prove futile when you re-run the swagger generate command
21
22import (
23 "net/http"
24 "time"
25
26 "golang.org/x/net/context"
27
28 "github.com/go-openapi/errors"
29 "github.com/go-openapi/runtime"
30 cr "github.com/go-openapi/runtime/client"
31 "github.com/go-openapi/swag"
32
33 strfmt "github.com/go-openapi/strfmt"
34)
35
36// NewDcimDeviceBaysDeleteParams creates a new DcimDeviceBaysDeleteParams object
37// with the default values initialized.
38func NewDcimDeviceBaysDeleteParams() *DcimDeviceBaysDeleteParams {
39 var ()
40 return &DcimDeviceBaysDeleteParams{
41
42 timeout: cr.DefaultTimeout,
43 }
44}
45
46// NewDcimDeviceBaysDeleteParamsWithTimeout creates a new DcimDeviceBaysDeleteParams object
47// with the default values initialized, and the ability to set a timeout on a request
48func NewDcimDeviceBaysDeleteParamsWithTimeout(timeout time.Duration) *DcimDeviceBaysDeleteParams {
49 var ()
50 return &DcimDeviceBaysDeleteParams{
51
52 timeout: timeout,
53 }
54}
55
56// NewDcimDeviceBaysDeleteParamsWithContext creates a new DcimDeviceBaysDeleteParams object
57// with the default values initialized, and the ability to set a context for a request
58func NewDcimDeviceBaysDeleteParamsWithContext(ctx context.Context) *DcimDeviceBaysDeleteParams {
59 var ()
60 return &DcimDeviceBaysDeleteParams{
61
62 Context: ctx,
63 }
64}
65
66// NewDcimDeviceBaysDeleteParamsWithHTTPClient creates a new DcimDeviceBaysDeleteParams object
67// with the default values initialized, and the ability to set a custom HTTPClient for a request
68func NewDcimDeviceBaysDeleteParamsWithHTTPClient(client *http.Client) *DcimDeviceBaysDeleteParams {
69 var ()
70 return &DcimDeviceBaysDeleteParams{
71 HTTPClient: client,
72 }
73}
74
75/*DcimDeviceBaysDeleteParams contains all the parameters to send to the API endpoint
76for the dcim device bays delete operation typically these are written to a http.Request
77*/
78type DcimDeviceBaysDeleteParams struct {
79
80 /*ID
81 A unique integer value identifying this device bay.
82
83 */
84 ID int64
85
86 timeout time.Duration
87 Context context.Context
88 HTTPClient *http.Client
89}
90
91// WithTimeout adds the timeout to the dcim device bays delete params
92func (o *DcimDeviceBaysDeleteParams) WithTimeout(timeout time.Duration) *DcimDeviceBaysDeleteParams {
93 o.SetTimeout(timeout)
94 return o
95}
96
97// SetTimeout adds the timeout to the dcim device bays delete params
98func (o *DcimDeviceBaysDeleteParams) SetTimeout(timeout time.Duration) {
99 o.timeout = timeout
100}
101
102// WithContext adds the context to the dcim device bays delete params
103func (o *DcimDeviceBaysDeleteParams) WithContext(ctx context.Context) *DcimDeviceBaysDeleteParams {
104 o.SetContext(ctx)
105 return o
106}
107
108// SetContext adds the context to the dcim device bays delete params
109func (o *DcimDeviceBaysDeleteParams) SetContext(ctx context.Context) {
110 o.Context = ctx
111}
112
113// WithHTTPClient adds the HTTPClient to the dcim device bays delete params
114func (o *DcimDeviceBaysDeleteParams) WithHTTPClient(client *http.Client) *DcimDeviceBaysDeleteParams {
115 o.SetHTTPClient(client)
116 return o
117}
118
119// SetHTTPClient adds the HTTPClient to the dcim device bays delete params
120func (o *DcimDeviceBaysDeleteParams) SetHTTPClient(client *http.Client) {
121 o.HTTPClient = client
122}
123
124// WithID adds the id to the dcim device bays delete params
125func (o *DcimDeviceBaysDeleteParams) WithID(id int64) *DcimDeviceBaysDeleteParams {
126 o.SetID(id)
127 return o
128}
129
130// SetID adds the id to the dcim device bays delete params
131func (o *DcimDeviceBaysDeleteParams) SetID(id int64) {
132 o.ID = id
133}
134
135// WriteToRequest writes these params to a swagger request
136func (o *DcimDeviceBaysDeleteParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
137
138 if err := r.SetTimeout(o.timeout); err != nil {
139 return err
140 }
141 var res []error
142
143 // path param id
144 if err := r.SetPathParam("id", swag.FormatInt64(o.ID)); err != nil {
145 return err
146 }
147
148 if len(res) > 0 {
149 return errors.CompositeValidationError(res...)
150 }
151 return nil
152}