-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete_consul_responses.go
158 lines (121 loc) · 4.11 KB
/
delete_consul_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
// Code generated by go-swagger; DO NOT EDIT.
package service_discovery
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"io"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/haproxytech/client-native/v3/models"
)
// DeleteConsulReader is a Reader for the DeleteConsul structure.
type DeleteConsulReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *DeleteConsulReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 204:
result := NewDeleteConsulNoContent()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 404:
result := NewDeleteConsulNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
result := NewDeleteConsulDefault(response.Code())
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
if response.Code()/100 == 2 {
return result, nil
}
return nil, result
}
}
// NewDeleteConsulNoContent creates a DeleteConsulNoContent with default headers values
func NewDeleteConsulNoContent() *DeleteConsulNoContent {
return &DeleteConsulNoContent{}
}
/*DeleteConsulNoContent handles this case with default header values.
Consul server deleted
*/
type DeleteConsulNoContent struct {
}
func (o *DeleteConsulNoContent) Error() string {
return fmt.Sprintf("[DELETE /service_discovery/consul/{id}][%d] deleteConsulNoContent ", 204)
}
func (o *DeleteConsulNoContent) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}
// NewDeleteConsulNotFound creates a DeleteConsulNotFound with default headers values
func NewDeleteConsulNotFound() *DeleteConsulNotFound {
return &DeleteConsulNotFound{}
}
/*DeleteConsulNotFound handles this case with default header values.
The specified resource was not found
*/
type DeleteConsulNotFound struct {
/*Configuration file version
*/
ConfigurationVersion string
Payload *models.Error
}
func (o *DeleteConsulNotFound) Error() string {
return fmt.Sprintf("[DELETE /service_discovery/consul/{id}][%d] deleteConsulNotFound %+v", 404, o.Payload)
}
func (o *DeleteConsulNotFound) GetPayload() *models.Error {
return o.Payload
}
func (o *DeleteConsulNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// response header Configuration-Version
o.ConfigurationVersion = response.GetHeader("Configuration-Version")
o.Payload = new(models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewDeleteConsulDefault creates a DeleteConsulDefault with default headers values
func NewDeleteConsulDefault(code int) *DeleteConsulDefault {
return &DeleteConsulDefault{
_statusCode: code,
}
}
/*DeleteConsulDefault handles this case with default header values.
General Error
*/
type DeleteConsulDefault struct {
_statusCode int
/*Configuration file version
*/
ConfigurationVersion string
Payload *models.Error
}
// Code gets the status code for the delete consul default response
func (o *DeleteConsulDefault) Code() int {
return o._statusCode
}
func (o *DeleteConsulDefault) Error() string {
return fmt.Sprintf("[DELETE /service_discovery/consul/{id}][%d] deleteConsul default %+v", o._statusCode, o.Payload)
}
func (o *DeleteConsulDefault) GetPayload() *models.Error {
return o.Payload
}
func (o *DeleteConsulDefault) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// response header Configuration-Version
o.ConfigurationVersion = response.GetHeader("Configuration-Version")
o.Payload = new(models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}