-
Notifications
You must be signed in to change notification settings - Fork 3k
/
put_service_id_responses.go
191 lines (139 loc) · 5.16 KB
/
put_service_id_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
// Code generated by go-swagger; DO NOT EDIT.
// Copyright 2017-2021 Authors of Cilium
// SPDX-License-Identifier: Apache-2.0
package service
// 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/cilium/cilium/api/v1/models"
)
// PutServiceIDOKCode is the HTTP code returned for type PutServiceIDOK
const PutServiceIDOKCode int = 200
/*PutServiceIDOK Updated
swagger:response putServiceIdOK
*/
type PutServiceIDOK struct {
}
// NewPutServiceIDOK creates PutServiceIDOK with default headers values
func NewPutServiceIDOK() *PutServiceIDOK {
return &PutServiceIDOK{}
}
// WriteResponse to the client
func (o *PutServiceIDOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(200)
}
// PutServiceIDCreatedCode is the HTTP code returned for type PutServiceIDCreated
const PutServiceIDCreatedCode int = 201
/*PutServiceIDCreated Created
swagger:response putServiceIdCreated
*/
type PutServiceIDCreated struct {
}
// NewPutServiceIDCreated creates PutServiceIDCreated with default headers values
func NewPutServiceIDCreated() *PutServiceIDCreated {
return &PutServiceIDCreated{}
}
// WriteResponse to the client
func (o *PutServiceIDCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(201)
}
// PutServiceIDInvalidFrontendCode is the HTTP code returned for type PutServiceIDInvalidFrontend
const PutServiceIDInvalidFrontendCode int = 460
/*PutServiceIDInvalidFrontend Invalid frontend in service configuration
swagger:response putServiceIdInvalidFrontend
*/
type PutServiceIDInvalidFrontend struct {
/*
In: Body
*/
Payload models.Error `json:"body,omitempty"`
}
// NewPutServiceIDInvalidFrontend creates PutServiceIDInvalidFrontend with default headers values
func NewPutServiceIDInvalidFrontend() *PutServiceIDInvalidFrontend {
return &PutServiceIDInvalidFrontend{}
}
// WithPayload adds the payload to the put service Id invalid frontend response
func (o *PutServiceIDInvalidFrontend) WithPayload(payload models.Error) *PutServiceIDInvalidFrontend {
o.Payload = payload
return o
}
// SetPayload sets the payload to the put service Id invalid frontend response
func (o *PutServiceIDInvalidFrontend) SetPayload(payload models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *PutServiceIDInvalidFrontend) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(460)
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
// PutServiceIDInvalidBackendCode is the HTTP code returned for type PutServiceIDInvalidBackend
const PutServiceIDInvalidBackendCode int = 461
/*PutServiceIDInvalidBackend Invalid backend in service configuration
swagger:response putServiceIdInvalidBackend
*/
type PutServiceIDInvalidBackend struct {
/*
In: Body
*/
Payload models.Error `json:"body,omitempty"`
}
// NewPutServiceIDInvalidBackend creates PutServiceIDInvalidBackend with default headers values
func NewPutServiceIDInvalidBackend() *PutServiceIDInvalidBackend {
return &PutServiceIDInvalidBackend{}
}
// WithPayload adds the payload to the put service Id invalid backend response
func (o *PutServiceIDInvalidBackend) WithPayload(payload models.Error) *PutServiceIDInvalidBackend {
o.Payload = payload
return o
}
// SetPayload sets the payload to the put service Id invalid backend response
func (o *PutServiceIDInvalidBackend) SetPayload(payload models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *PutServiceIDInvalidBackend) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(461)
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
// PutServiceIDFailureCode is the HTTP code returned for type PutServiceIDFailure
const PutServiceIDFailureCode int = 500
/*PutServiceIDFailure Error while creating service
swagger:response putServiceIdFailure
*/
type PutServiceIDFailure struct {
/*
In: Body
*/
Payload models.Error `json:"body,omitempty"`
}
// NewPutServiceIDFailure creates PutServiceIDFailure with default headers values
func NewPutServiceIDFailure() *PutServiceIDFailure {
return &PutServiceIDFailure{}
}
// WithPayload adds the payload to the put service Id failure response
func (o *PutServiceIDFailure) WithPayload(payload models.Error) *PutServiceIDFailure {
o.Payload = payload
return o
}
// SetPayload sets the payload to the put service Id failure response
func (o *PutServiceIDFailure) SetPayload(payload models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *PutServiceIDFailure) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(500)
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}