• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

zalando-incubator / cluster-lifecycle-manager / 20751880611

06 Jan 2026 02:47PM UTC coverage: 23.236% (-0.07%) from 23.306%
20751880611

push

github

web-flow
build(deps): bump the all-go-mod-patch-and-minor group with 14 updates (#899)

* build(deps): bump the all-go-mod-patch-and-minor group with 14 updates

Bumps the all-go-mod-patch-and-minor group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |
| [github.com/go-openapi/errors](https://github.com/go-openapi/errors) | `0.22.1` | `0.22.6` |
| [github.com/go-openapi/runtime](https://github.com/go-openapi/runtime) | `0.28.0` | `0.29.2` |
| [github.com/go-openapi/strfmt](https://github.com/go-openapi/strfmt) | `0.23.0` | `0.25.0` |
| [github.com/go-openapi/validate](https://github.com/go-openapi/validate) | `0.24.0` | `0.25.1` |
| [github.com/go-swagger/go-swagger](https://github.com/go-swagger/go-swagger) | `0.32.3` | `0.33.1` |
| [github.com/zalando-incubator/kube-ingress-aws-controller](https://github.com/zalando-incubator/kube-ingress-aws-controller) | `0.17.5` | `0.18.13` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.34.0` |
| [github.com/aws/aws-sdk-go-v2/service/acm](https://github.com/aws/aws-sdk-go-v2) | `1.31.3` | `1.37.4` |
| [github.com/aws/aws-sdk-go-v2/service/autoscaling](https://github.com/aws/aws-sdk-go-v2) | `1.52.3` | `1.59.1` |
| [github.com/aws/aws-sdk-go-v2/service/cloudformation](https://github.com/aws/aws-sdk-go-v2) | `1.59.2` | `1.66.2` |
| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.274.0` | `1.279.0` |
| [github.com/aws/aws-sdk-go-v2/service/iam](https://github.com/aws/aws-sdk-go-v2) | `1.41.1` | `1.47.5` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.51.0` | `1.52.0` |


Updates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG_PENDING.md)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8)

Upda... (continued)

0 of 148 new or added lines in 26 files covered. (0.0%)

32 existing lines in 12 files now uncovered.

3233 of 13914 relevant lines covered (23.24%)

6.47 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/pkg/cluster-registry/client/node_pools/update_node_pool_responses.go
1
// Code generated by go-swagger; DO NOT EDIT.
2

3
package node_pools
4

5
import (
6
        "encoding/json"
7
        stderrors "errors"
8
        "fmt"
9
        "io"
10

11
        "github.com/go-openapi/runtime"
12
        "github.com/go-openapi/strfmt"
13

14
        "github.com/zalando-incubator/cluster-lifecycle-manager/pkg/cluster-registry/models"
15
)
16

17
// UpdateNodePoolReader is a Reader for the UpdateNodePool structure.
18
type UpdateNodePoolReader struct {
19
        formats strfmt.Registry
20
}
21

22
// ReadResponse reads a server response into the received o.
NEW
23
func (o *UpdateNodePoolReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
×
24
        switch response.Code() {
×
25
        case 200:
×
26
                result := NewUpdateNodePoolOK()
×
27
                if err := result.readResponse(response, consumer, o.formats); err != nil {
×
28
                        return nil, err
×
29
                }
×
30
                return result, nil
×
31
        case 400:
×
32
                result := NewUpdateNodePoolBadRequest()
×
33
                if err := result.readResponse(response, consumer, o.formats); err != nil {
×
34
                        return nil, err
×
35
                }
×
36
                return nil, result
×
37
        case 401:
×
38
                result := NewUpdateNodePoolUnauthorized()
×
39
                if err := result.readResponse(response, consumer, o.formats); err != nil {
×
40
                        return nil, err
×
41
                }
×
42
                return nil, result
×
43
        case 403:
×
44
                result := NewUpdateNodePoolForbidden()
×
45
                if err := result.readResponse(response, consumer, o.formats); err != nil {
×
46
                        return nil, err
×
47
                }
×
48
                return nil, result
×
49
        case 500:
×
50
                result := NewUpdateNodePoolInternalServerError()
×
51
                if err := result.readResponse(response, consumer, o.formats); err != nil {
×
52
                        return nil, err
×
53
                }
×
54
                return nil, result
×
55
        default:
×
56
                return nil, runtime.NewAPIError("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}] updateNodePool", response, response.Code())
×
57
        }
58
}
59

60
// NewUpdateNodePoolOK creates a UpdateNodePoolOK with default headers values
61
func NewUpdateNodePoolOK() *UpdateNodePoolOK {
×
62
        return &UpdateNodePoolOK{}
×
63
}
×
64

65
/*
66
UpdateNodePoolOK describes a response with status code 200, with default header values.
67

68
The node pool update request is accepted.
69
*/
70
type UpdateNodePoolOK struct {
71
        Payload *models.NodePool
72
}
73

74
// IsSuccess returns true when this update node pool o k response has a 2xx status code
75
func (o *UpdateNodePoolOK) IsSuccess() bool {
×
76
        return true
×
77
}
×
78

79
// IsRedirect returns true when this update node pool o k response has a 3xx status code
80
func (o *UpdateNodePoolOK) IsRedirect() bool {
×
81
        return false
×
82
}
×
83

84
// IsClientError returns true when this update node pool o k response has a 4xx status code
85
func (o *UpdateNodePoolOK) IsClientError() bool {
×
86
        return false
×
87
}
×
88

89
// IsServerError returns true when this update node pool o k response has a 5xx status code
90
func (o *UpdateNodePoolOK) IsServerError() bool {
×
91
        return false
×
92
}
×
93

94
// IsCode returns true when this update node pool o k response a status code equal to that given
95
func (o *UpdateNodePoolOK) IsCode(code int) bool {
×
96
        return code == 200
×
97
}
×
98

99
// Code gets the status code for the update node pool o k response
100
func (o *UpdateNodePoolOK) Code() int {
×
101
        return 200
×
102
}
×
103

104
func (o *UpdateNodePoolOK) Error() string {
×
105
        payload, _ := json.Marshal(o.Payload)
×
106
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolOK %s", 200, payload)
×
107
}
×
108

109
func (o *UpdateNodePoolOK) String() string {
×
110
        payload, _ := json.Marshal(o.Payload)
×
111
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolOK %s", 200, payload)
×
112
}
×
113

114
func (o *UpdateNodePoolOK) GetPayload() *models.NodePool {
×
115
        return o.Payload
×
116
}
×
117

118
func (o *UpdateNodePoolOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
×
119

×
120
        o.Payload = new(models.NodePool)
×
121

×
122
        // response payload
×
NEW
123
        if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
×
124
                return err
×
125
        }
×
126

127
        return nil
×
128
}
129

130
// NewUpdateNodePoolBadRequest creates a UpdateNodePoolBadRequest with default headers values
131
func NewUpdateNodePoolBadRequest() *UpdateNodePoolBadRequest {
×
132
        return &UpdateNodePoolBadRequest{}
×
133
}
×
134

135
/*
136
UpdateNodePoolBadRequest describes a response with status code 400, with default header values.
137

138
Invalid request
139
*/
140
type UpdateNodePoolBadRequest struct {
141
        Payload *models.Error
142
}
143

144
// IsSuccess returns true when this update node pool bad request response has a 2xx status code
145
func (o *UpdateNodePoolBadRequest) IsSuccess() bool {
×
146
        return false
×
147
}
×
148

149
// IsRedirect returns true when this update node pool bad request response has a 3xx status code
150
func (o *UpdateNodePoolBadRequest) IsRedirect() bool {
×
151
        return false
×
152
}
×
153

154
// IsClientError returns true when this update node pool bad request response has a 4xx status code
155
func (o *UpdateNodePoolBadRequest) IsClientError() bool {
×
156
        return true
×
157
}
×
158

159
// IsServerError returns true when this update node pool bad request response has a 5xx status code
160
func (o *UpdateNodePoolBadRequest) IsServerError() bool {
×
161
        return false
×
162
}
×
163

164
// IsCode returns true when this update node pool bad request response a status code equal to that given
165
func (o *UpdateNodePoolBadRequest) IsCode(code int) bool {
×
166
        return code == 400
×
167
}
×
168

169
// Code gets the status code for the update node pool bad request response
170
func (o *UpdateNodePoolBadRequest) Code() int {
×
171
        return 400
×
172
}
×
173

174
func (o *UpdateNodePoolBadRequest) Error() string {
×
175
        payload, _ := json.Marshal(o.Payload)
×
176
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolBadRequest %s", 400, payload)
×
177
}
×
178

179
func (o *UpdateNodePoolBadRequest) String() string {
×
180
        payload, _ := json.Marshal(o.Payload)
×
181
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolBadRequest %s", 400, payload)
×
182
}
×
183

184
func (o *UpdateNodePoolBadRequest) GetPayload() *models.Error {
×
185
        return o.Payload
×
186
}
×
187

188
func (o *UpdateNodePoolBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
×
189

×
190
        o.Payload = new(models.Error)
×
191

×
192
        // response payload
×
NEW
193
        if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
×
194
                return err
×
195
        }
×
196

197
        return nil
×
198
}
199

200
// NewUpdateNodePoolUnauthorized creates a UpdateNodePoolUnauthorized with default headers values
201
func NewUpdateNodePoolUnauthorized() *UpdateNodePoolUnauthorized {
×
202
        return &UpdateNodePoolUnauthorized{}
×
203
}
×
204

205
/*
206
UpdateNodePoolUnauthorized describes a response with status code 401, with default header values.
207

208
Unauthorized
209
*/
210
type UpdateNodePoolUnauthorized struct {
211
}
212

213
// IsSuccess returns true when this update node pool unauthorized response has a 2xx status code
214
func (o *UpdateNodePoolUnauthorized) IsSuccess() bool {
×
215
        return false
×
216
}
×
217

218
// IsRedirect returns true when this update node pool unauthorized response has a 3xx status code
219
func (o *UpdateNodePoolUnauthorized) IsRedirect() bool {
×
220
        return false
×
221
}
×
222

223
// IsClientError returns true when this update node pool unauthorized response has a 4xx status code
224
func (o *UpdateNodePoolUnauthorized) IsClientError() bool {
×
225
        return true
×
226
}
×
227

228
// IsServerError returns true when this update node pool unauthorized response has a 5xx status code
229
func (o *UpdateNodePoolUnauthorized) IsServerError() bool {
×
230
        return false
×
231
}
×
232

233
// IsCode returns true when this update node pool unauthorized response a status code equal to that given
234
func (o *UpdateNodePoolUnauthorized) IsCode(code int) bool {
×
235
        return code == 401
×
236
}
×
237

238
// Code gets the status code for the update node pool unauthorized response
239
func (o *UpdateNodePoolUnauthorized) Code() int {
×
240
        return 401
×
241
}
×
242

243
func (o *UpdateNodePoolUnauthorized) Error() string {
×
244
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolUnauthorized", 401)
×
245
}
×
246

247
func (o *UpdateNodePoolUnauthorized) String() string {
×
248
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolUnauthorized", 401)
×
249
}
×
250

251
func (o *UpdateNodePoolUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
×
252

×
253
        return nil
×
254
}
×
255

256
// NewUpdateNodePoolForbidden creates a UpdateNodePoolForbidden with default headers values
257
func NewUpdateNodePoolForbidden() *UpdateNodePoolForbidden {
×
258
        return &UpdateNodePoolForbidden{}
×
259
}
×
260

261
/*
262
UpdateNodePoolForbidden describes a response with status code 403, with default header values.
263

264
Forbidden
265
*/
266
type UpdateNodePoolForbidden struct {
267
}
268

269
// IsSuccess returns true when this update node pool forbidden response has a 2xx status code
270
func (o *UpdateNodePoolForbidden) IsSuccess() bool {
×
271
        return false
×
272
}
×
273

274
// IsRedirect returns true when this update node pool forbidden response has a 3xx status code
275
func (o *UpdateNodePoolForbidden) IsRedirect() bool {
×
276
        return false
×
277
}
×
278

279
// IsClientError returns true when this update node pool forbidden response has a 4xx status code
280
func (o *UpdateNodePoolForbidden) IsClientError() bool {
×
281
        return true
×
282
}
×
283

284
// IsServerError returns true when this update node pool forbidden response has a 5xx status code
285
func (o *UpdateNodePoolForbidden) IsServerError() bool {
×
286
        return false
×
287
}
×
288

289
// IsCode returns true when this update node pool forbidden response a status code equal to that given
290
func (o *UpdateNodePoolForbidden) IsCode(code int) bool {
×
291
        return code == 403
×
292
}
×
293

294
// Code gets the status code for the update node pool forbidden response
295
func (o *UpdateNodePoolForbidden) Code() int {
×
296
        return 403
×
297
}
×
298

299
func (o *UpdateNodePoolForbidden) Error() string {
×
300
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolForbidden", 403)
×
301
}
×
302

303
func (o *UpdateNodePoolForbidden) String() string {
×
304
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolForbidden", 403)
×
305
}
×
306

307
func (o *UpdateNodePoolForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
×
308

×
309
        return nil
×
310
}
×
311

312
// NewUpdateNodePoolInternalServerError creates a UpdateNodePoolInternalServerError with default headers values
313
func NewUpdateNodePoolInternalServerError() *UpdateNodePoolInternalServerError {
×
314
        return &UpdateNodePoolInternalServerError{}
×
315
}
×
316

317
/*
318
UpdateNodePoolInternalServerError describes a response with status code 500, with default header values.
319

320
Unexpected error
321
*/
322
type UpdateNodePoolInternalServerError struct {
323
        Payload *models.Error
324
}
325

326
// IsSuccess returns true when this update node pool internal server error response has a 2xx status code
327
func (o *UpdateNodePoolInternalServerError) IsSuccess() bool {
×
328
        return false
×
329
}
×
330

331
// IsRedirect returns true when this update node pool internal server error response has a 3xx status code
332
func (o *UpdateNodePoolInternalServerError) IsRedirect() bool {
×
333
        return false
×
334
}
×
335

336
// IsClientError returns true when this update node pool internal server error response has a 4xx status code
337
func (o *UpdateNodePoolInternalServerError) IsClientError() bool {
×
338
        return false
×
339
}
×
340

341
// IsServerError returns true when this update node pool internal server error response has a 5xx status code
342
func (o *UpdateNodePoolInternalServerError) IsServerError() bool {
×
343
        return true
×
344
}
×
345

346
// IsCode returns true when this update node pool internal server error response a status code equal to that given
347
func (o *UpdateNodePoolInternalServerError) IsCode(code int) bool {
×
348
        return code == 500
×
349
}
×
350

351
// Code gets the status code for the update node pool internal server error response
352
func (o *UpdateNodePoolInternalServerError) Code() int {
×
353
        return 500
×
354
}
×
355

356
func (o *UpdateNodePoolInternalServerError) Error() string {
×
357
        payload, _ := json.Marshal(o.Payload)
×
358
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolInternalServerError %s", 500, payload)
×
359
}
×
360

361
func (o *UpdateNodePoolInternalServerError) String() string {
×
362
        payload, _ := json.Marshal(o.Payload)
×
363
        return fmt.Sprintf("[PATCH /kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}][%d] updateNodePoolInternalServerError %s", 500, payload)
×
364
}
×
365

366
func (o *UpdateNodePoolInternalServerError) GetPayload() *models.Error {
×
367
        return o.Payload
×
368
}
×
369

370
func (o *UpdateNodePoolInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
×
371

×
372
        o.Payload = new(models.Error)
×
373

×
374
        // response payload
×
NEW
375
        if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
×
376
                return err
×
377
        }
×
378

379
        return nil
×
380
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc