This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
delete_function_responses.go
297 lines (230 loc) · 7.84 KB
/
delete_function_responses.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
292
293
294
295
296
297
///////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
///////////////////////////////////////////////////////////////////////
// Code generated by go-swagger; DO NOT EDIT.
package store
// 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"
"github.com/go-openapi/runtime"
"github.com/vmware/dispatch/pkg/api/v1"
)
// DeleteFunctionOKCode is the HTTP code returned for type DeleteFunctionOK
const DeleteFunctionOKCode int = 200
/*DeleteFunctionOK Successful operation
swagger:response deleteFunctionOK
*/
type DeleteFunctionOK struct {
/*
In: Body
*/
Payload *v1.Function `json:"body,omitempty"`
}
// NewDeleteFunctionOK creates DeleteFunctionOK with default headers values
func NewDeleteFunctionOK() *DeleteFunctionOK {
return &DeleteFunctionOK{}
}
// WithPayload adds the payload to the delete function o k response
func (o *DeleteFunctionOK) WithPayload(payload *v1.Function) *DeleteFunctionOK {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function o k response
func (o *DeleteFunctionOK) SetPayload(payload *v1.Function) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(200)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// DeleteFunctionBadRequestCode is the HTTP code returned for type DeleteFunctionBadRequest
const DeleteFunctionBadRequestCode int = 400
/*DeleteFunctionBadRequest Invalid Name supplied
swagger:response deleteFunctionBadRequest
*/
type DeleteFunctionBadRequest struct {
/*
In: Body
*/
Payload *v1.Error `json:"body,omitempty"`
}
// NewDeleteFunctionBadRequest creates DeleteFunctionBadRequest with default headers values
func NewDeleteFunctionBadRequest() *DeleteFunctionBadRequest {
return &DeleteFunctionBadRequest{}
}
// WithPayload adds the payload to the delete function bad request response
func (o *DeleteFunctionBadRequest) WithPayload(payload *v1.Error) *DeleteFunctionBadRequest {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function bad request response
func (o *DeleteFunctionBadRequest) SetPayload(payload *v1.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(400)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// DeleteFunctionUnauthorizedCode is the HTTP code returned for type DeleteFunctionUnauthorized
const DeleteFunctionUnauthorizedCode int = 401
/*DeleteFunctionUnauthorized Unauthorized Request
swagger:response deleteFunctionUnauthorized
*/
type DeleteFunctionUnauthorized struct {
/*
In: Body
*/
Payload *v1.Error `json:"body,omitempty"`
}
// NewDeleteFunctionUnauthorized creates DeleteFunctionUnauthorized with default headers values
func NewDeleteFunctionUnauthorized() *DeleteFunctionUnauthorized {
return &DeleteFunctionUnauthorized{}
}
// WithPayload adds the payload to the delete function unauthorized response
func (o *DeleteFunctionUnauthorized) WithPayload(payload *v1.Error) *DeleteFunctionUnauthorized {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function unauthorized response
func (o *DeleteFunctionUnauthorized) SetPayload(payload *v1.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(401)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// DeleteFunctionForbiddenCode is the HTTP code returned for type DeleteFunctionForbidden
const DeleteFunctionForbiddenCode int = 403
/*DeleteFunctionForbidden access to this resource is forbidden
swagger:response deleteFunctionForbidden
*/
type DeleteFunctionForbidden struct {
/*
In: Body
*/
Payload *v1.Error `json:"body,omitempty"`
}
// NewDeleteFunctionForbidden creates DeleteFunctionForbidden with default headers values
func NewDeleteFunctionForbidden() *DeleteFunctionForbidden {
return &DeleteFunctionForbidden{}
}
// WithPayload adds the payload to the delete function forbidden response
func (o *DeleteFunctionForbidden) WithPayload(payload *v1.Error) *DeleteFunctionForbidden {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function forbidden response
func (o *DeleteFunctionForbidden) SetPayload(payload *v1.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionForbidden) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(403)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// DeleteFunctionNotFoundCode is the HTTP code returned for type DeleteFunctionNotFound
const DeleteFunctionNotFoundCode int = 404
/*DeleteFunctionNotFound Function not found
swagger:response deleteFunctionNotFound
*/
type DeleteFunctionNotFound struct {
/*
In: Body
*/
Payload *v1.Error `json:"body,omitempty"`
}
// NewDeleteFunctionNotFound creates DeleteFunctionNotFound with default headers values
func NewDeleteFunctionNotFound() *DeleteFunctionNotFound {
return &DeleteFunctionNotFound{}
}
// WithPayload adds the payload to the delete function not found response
func (o *DeleteFunctionNotFound) WithPayload(payload *v1.Error) *DeleteFunctionNotFound {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function not found response
func (o *DeleteFunctionNotFound) SetPayload(payload *v1.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(404)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
/*DeleteFunctionDefault Unknown error
swagger:response deleteFunctionDefault
*/
type DeleteFunctionDefault struct {
_statusCode int
/*
In: Body
*/
Payload *v1.Error `json:"body,omitempty"`
}
// NewDeleteFunctionDefault creates DeleteFunctionDefault with default headers values
func NewDeleteFunctionDefault(code int) *DeleteFunctionDefault {
if code <= 0 {
code = 500
}
return &DeleteFunctionDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the delete function default response
func (o *DeleteFunctionDefault) WithStatusCode(code int) *DeleteFunctionDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the delete function default response
func (o *DeleteFunctionDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithPayload adds the payload to the delete function default response
func (o *DeleteFunctionDefault) WithPayload(payload *v1.Error) *DeleteFunctionDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete function default response
func (o *DeleteFunctionDefault) SetPayload(payload *v1.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteFunctionDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(o._statusCode)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}