This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
get_deployer_usage_parameters.go
291 lines (236 loc) · 6.94 KB
/
get_deployer_usage_parameters.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Code generated by go-swagger; DO NOT EDIT.
package v1usages
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"time"
"golang.org/x/net/context"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/swag"
strfmt "github.com/go-openapi/strfmt"
)
// NewGetDeployerUsageParams creates a new GetDeployerUsageParams object
// with the default values initialized.
func NewGetDeployerUsageParams() *GetDeployerUsageParams {
var ()
return &GetDeployerUsageParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetDeployerUsageParamsWithTimeout creates a new GetDeployerUsageParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetDeployerUsageParamsWithTimeout(timeout time.Duration) *GetDeployerUsageParams {
var ()
return &GetDeployerUsageParams{
timeout: timeout,
}
}
// NewGetDeployerUsageParamsWithContext creates a new GetDeployerUsageParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetDeployerUsageParamsWithContext(ctx context.Context) *GetDeployerUsageParams {
var ()
return &GetDeployerUsageParams{
Context: ctx,
}
}
// NewGetDeployerUsageParamsWithHTTPClient creates a new GetDeployerUsageParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetDeployerUsageParamsWithHTTPClient(client *http.Client) *GetDeployerUsageParams {
var ()
return &GetDeployerUsageParams{
HTTPClient: client,
}
}
/*GetDeployerUsageParams contains all the parameters to send to the API endpoint
for the get deployer usage operation typically these are written to a http.Request
*/
type GetDeployerUsageParams struct {
/*Account*/
Account *string
/*Cloud*/
Cloud *string
/*Filterenddate*/
Filterenddate *int64
/*Since*/
Since *int64
/*User*/
User *string
/*Zone*/
Zone *string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get deployer usage params
func (o *GetDeployerUsageParams) WithTimeout(timeout time.Duration) *GetDeployerUsageParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get deployer usage params
func (o *GetDeployerUsageParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get deployer usage params
func (o *GetDeployerUsageParams) WithContext(ctx context.Context) *GetDeployerUsageParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get deployer usage params
func (o *GetDeployerUsageParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get deployer usage params
func (o *GetDeployerUsageParams) WithHTTPClient(client *http.Client) *GetDeployerUsageParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get deployer usage params
func (o *GetDeployerUsageParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithAccount adds the account to the get deployer usage params
func (o *GetDeployerUsageParams) WithAccount(account *string) *GetDeployerUsageParams {
o.SetAccount(account)
return o
}
// SetAccount adds the account to the get deployer usage params
func (o *GetDeployerUsageParams) SetAccount(account *string) {
o.Account = account
}
// WithCloud adds the cloud to the get deployer usage params
func (o *GetDeployerUsageParams) WithCloud(cloud *string) *GetDeployerUsageParams {
o.SetCloud(cloud)
return o
}
// SetCloud adds the cloud to the get deployer usage params
func (o *GetDeployerUsageParams) SetCloud(cloud *string) {
o.Cloud = cloud
}
// WithFilterenddate adds the filterenddate to the get deployer usage params
func (o *GetDeployerUsageParams) WithFilterenddate(filterenddate *int64) *GetDeployerUsageParams {
o.SetFilterenddate(filterenddate)
return o
}
// SetFilterenddate adds the filterenddate to the get deployer usage params
func (o *GetDeployerUsageParams) SetFilterenddate(filterenddate *int64) {
o.Filterenddate = filterenddate
}
// WithSince adds the since to the get deployer usage params
func (o *GetDeployerUsageParams) WithSince(since *int64) *GetDeployerUsageParams {
o.SetSince(since)
return o
}
// SetSince adds the since to the get deployer usage params
func (o *GetDeployerUsageParams) SetSince(since *int64) {
o.Since = since
}
// WithUser adds the user to the get deployer usage params
func (o *GetDeployerUsageParams) WithUser(user *string) *GetDeployerUsageParams {
o.SetUser(user)
return o
}
// SetUser adds the user to the get deployer usage params
func (o *GetDeployerUsageParams) SetUser(user *string) {
o.User = user
}
// WithZone adds the zone to the get deployer usage params
func (o *GetDeployerUsageParams) WithZone(zone *string) *GetDeployerUsageParams {
o.SetZone(zone)
return o
}
// SetZone adds the zone to the get deployer usage params
func (o *GetDeployerUsageParams) SetZone(zone *string) {
o.Zone = zone
}
// WriteToRequest writes these params to a swagger request
func (o *GetDeployerUsageParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Account != nil {
// query param account
var qrAccount string
if o.Account != nil {
qrAccount = *o.Account
}
qAccount := qrAccount
if qAccount != "" {
if err := r.SetQueryParam("account", qAccount); err != nil {
return err
}
}
}
if o.Cloud != nil {
// query param cloud
var qrCloud string
if o.Cloud != nil {
qrCloud = *o.Cloud
}
qCloud := qrCloud
if qCloud != "" {
if err := r.SetQueryParam("cloud", qCloud); err != nil {
return err
}
}
}
if o.Filterenddate != nil {
// query param filterenddate
var qrFilterenddate int64
if o.Filterenddate != nil {
qrFilterenddate = *o.Filterenddate
}
qFilterenddate := swag.FormatInt64(qrFilterenddate)
if qFilterenddate != "" {
if err := r.SetQueryParam("filterenddate", qFilterenddate); err != nil {
return err
}
}
}
if o.Since != nil {
// query param since
var qrSince int64
if o.Since != nil {
qrSince = *o.Since
}
qSince := swag.FormatInt64(qrSince)
if qSince != "" {
if err := r.SetQueryParam("since", qSince); err != nil {
return err
}
}
}
if o.User != nil {
// query param user
var qrUser string
if o.User != nil {
qrUser = *o.User
}
qUser := qrUser
if qUser != "" {
if err := r.SetQueryParam("user", qUser); err != nil {
return err
}
}
}
if o.Zone != nil {
// query param zone
var qrZone string
if o.Zone != nil {
qrZone = *o.Zone
}
qZone := qrZone
if qZone != "" {
if err := r.SetQueryParam("zone", qZone); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}