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