blob: 5040b2a240bc009cf2f7647bb2142d0eee01948c [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// NewDcimVirtualChassisDeleteParams creates a new DcimVirtualChassisDeleteParams object
37// with the default values initialized.
38func NewDcimVirtualChassisDeleteParams() *DcimVirtualChassisDeleteParams {
39 var ()
40 return &DcimVirtualChassisDeleteParams{
41
42 timeout: cr.DefaultTimeout,
43 }
44}
45
46// NewDcimVirtualChassisDeleteParamsWithTimeout creates a new DcimVirtualChassisDeleteParams object
47// with the default values initialized, and the ability to set a timeout on a request
48func NewDcimVirtualChassisDeleteParamsWithTimeout(timeout time.Duration) *DcimVirtualChassisDeleteParams {
49 var ()
50 return &DcimVirtualChassisDeleteParams{
51
52 timeout: timeout,
53 }
54}
55
56// NewDcimVirtualChassisDeleteParamsWithContext creates a new DcimVirtualChassisDeleteParams object
57// with the default values initialized, and the ability to set a context for a request
58func NewDcimVirtualChassisDeleteParamsWithContext(ctx context.Context) *DcimVirtualChassisDeleteParams {
59 var ()
60 return &DcimVirtualChassisDeleteParams{
61
62 Context: ctx,
63 }
64}
65
66// NewDcimVirtualChassisDeleteParamsWithHTTPClient creates a new DcimVirtualChassisDeleteParams object
67// with the default values initialized, and the ability to set a custom HTTPClient for a request
68func NewDcimVirtualChassisDeleteParamsWithHTTPClient(client *http.Client) *DcimVirtualChassisDeleteParams {
69 var ()
70 return &DcimVirtualChassisDeleteParams{
71 HTTPClient: client,
72 }
73}
74
75/*DcimVirtualChassisDeleteParams contains all the parameters to send to the API endpoint
76for the dcim virtual chassis delete operation typically these are written to a http.Request
77*/
78type DcimVirtualChassisDeleteParams struct {
79
80 /*ID
81 A unique integer value identifying this virtual chassis.
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 virtual chassis delete params
92func (o *DcimVirtualChassisDeleteParams) WithTimeout(timeout time.Duration) *DcimVirtualChassisDeleteParams {
93 o.SetTimeout(timeout)
94 return o
95}
96
97// SetTimeout adds the timeout to the dcim virtual chassis delete params
98func (o *DcimVirtualChassisDeleteParams) SetTimeout(timeout time.Duration) {
99 o.timeout = timeout
100}
101
102// WithContext adds the context to the dcim virtual chassis delete params
103func (o *DcimVirtualChassisDeleteParams) WithContext(ctx context.Context) *DcimVirtualChassisDeleteParams {
104 o.SetContext(ctx)
105 return o
106}
107
108// SetContext adds the context to the dcim virtual chassis delete params
109func (o *DcimVirtualChassisDeleteParams) SetContext(ctx context.Context) {
110 o.Context = ctx
111}
112
113// WithHTTPClient adds the HTTPClient to the dcim virtual chassis delete params
114func (o *DcimVirtualChassisDeleteParams) WithHTTPClient(client *http.Client) *DcimVirtualChassisDeleteParams {
115 o.SetHTTPClient(client)
116 return o
117}
118
119// SetHTTPClient adds the HTTPClient to the dcim virtual chassis delete params
120func (o *DcimVirtualChassisDeleteParams) SetHTTPClient(client *http.Client) {
121 o.HTTPClient = client
122}
123
124// WithID adds the id to the dcim virtual chassis delete params
125func (o *DcimVirtualChassisDeleteParams) WithID(id int64) *DcimVirtualChassisDeleteParams {
126 o.SetID(id)
127 return o
128}
129
130// SetID adds the id to the dcim virtual chassis delete params
131func (o *DcimVirtualChassisDeleteParams) SetID(id int64) {
132 o.ID = id
133}
134
135// WriteToRequest writes these params to a swagger request
136func (o *DcimVirtualChassisDeleteParams) 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}