• 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_pool_config_items/node_pool_config_items_client.go
1
// Code generated by go-swagger; DO NOT EDIT.
2

3
package node_pool_config_items
4

5
import (
6
        "fmt"
7

8
        "github.com/go-openapi/runtime"
9
        httptransport "github.com/go-openapi/runtime/client"
10
        "github.com/go-openapi/strfmt"
11
)
12

13
// New creates a new node pool config items API client.
14
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService {
×
15
        return &Client{transport: transport, formats: formats}
×
16
}
×
17

18
// New creates a new node pool config items API client with basic auth credentials.
19
// It takes the following parameters:
20
// - host: http host (github.com).
21
// - basePath: any base path for the API client ("/v1", "/v3").
22
// - scheme: http scheme ("http", "https").
23
// - user: user for basic authentication header.
24
// - password: password for basic authentication header.
25
func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService {
×
26
        transport := httptransport.New(host, basePath, []string{scheme})
×
27
        transport.DefaultAuthentication = httptransport.BasicAuth(user, password)
×
28
        return &Client{transport: transport, formats: strfmt.Default}
×
29
}
×
30

31
// New creates a new node pool config items API client with a bearer token for authentication.
32
// It takes the following parameters:
33
// - host: http host (github.com).
34
// - basePath: any base path for the API client ("/v1", "/v3").
35
// - scheme: http scheme ("http", "https").
36
// - bearerToken: bearer token for Bearer authentication header.
37
func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService {
×
38
        transport := httptransport.New(host, basePath, []string{scheme})
×
39
        transport.DefaultAuthentication = httptransport.BearerToken(bearerToken)
×
40
        return &Client{transport: transport, formats: strfmt.Default}
×
41
}
×
42

43
/*
44
Client for node pool config items API
45
*/
46
type Client struct {
47
        transport runtime.ClientTransport
48
        formats   strfmt.Registry
49
}
50

51
// ClientOption may be used to customize the behavior of Client methods.
52
type ClientOption func(*runtime.ClientOperation)
53

54
// ClientService is the interface for Client methods
55
type ClientService interface {
56
        AddOrUpdateNodePoolConfigItem(params *AddOrUpdateNodePoolConfigItemParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*AddOrUpdateNodePoolConfigItemOK, error)
57

58
        DeleteNodePoolConfigItem(params *DeleteNodePoolConfigItemParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteNodePoolConfigItemNoContent, error)
59

60
        SetTransport(transport runtime.ClientTransport)
61
}
62

63
/*
64
AddOrUpdateNodePoolConfigItem adds update config item
65

66
Add/update a configuration item unique to the node pool.
67
*/
68
func (a *Client) AddOrUpdateNodePoolConfigItem(params *AddOrUpdateNodePoolConfigItemParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*AddOrUpdateNodePoolConfigItemOK, error) {
×
NEW
69
        // NOTE: parameters are not validated before sending
×
70
        if params == nil {
×
71
                params = NewAddOrUpdateNodePoolConfigItemParams()
×
72
        }
×
73
        op := &runtime.ClientOperation{
×
74
                ID:                 "addOrUpdateNodePoolConfigItem",
×
75
                Method:             "PUT",
×
76
                PathPattern:        "/kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}/config-items/{config_key}",
×
77
                ProducesMediaTypes: []string{"application/json"},
×
78
                ConsumesMediaTypes: []string{"application/json"},
×
79
                Schemes:            []string{"https"},
×
80
                Params:             params,
×
81
                Reader:             &AddOrUpdateNodePoolConfigItemReader{formats: a.formats},
×
82
                AuthInfo:           authInfo,
×
83
                Context:            params.Context,
×
84
                Client:             params.HTTPClient,
×
85
        }
×
86
        for _, opt := range opts {
×
87
                opt(op)
×
88
        }
×
UNCOV
89
        result, err := a.transport.Submit(op)
×
90
        if err != nil {
×
91
                return nil, err
×
92
        }
×
93

94
        // only one success response has to be checked
95
        success, ok := result.(*AddOrUpdateNodePoolConfigItemOK)
×
96
        if ok {
×
97
                return success, nil
×
98
        }
×
99

100
        // unexpected success response.
101

102
        // no default response is defined.
103
        //
104
        // safeguard: normally, in the absence of a default response, unknown success responses return an error above: so this is a codegen issue
105
        msg := fmt.Sprintf("unexpected success response for addOrUpdateNodePoolConfigItem: API contract not enforced by server. Client expected to get an error, but got: %T", result)
×
106
        panic(msg)
×
107
}
108

109
/*
110
DeleteNodePoolConfigItem deletes config item
111

112
Deletes config item.
113
*/
114
func (a *Client) DeleteNodePoolConfigItem(params *DeleteNodePoolConfigItemParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteNodePoolConfigItemNoContent, error) {
×
NEW
115
        // NOTE: parameters are not validated before sending
×
116
        if params == nil {
×
117
                params = NewDeleteNodePoolConfigItemParams()
×
118
        }
×
119
        op := &runtime.ClientOperation{
×
120
                ID:                 "deleteNodePoolConfigItem",
×
121
                Method:             "DELETE",
×
122
                PathPattern:        "/kubernetes-clusters/{cluster_id}/node-pools/{node_pool_name}/config-items/{config_key}",
×
123
                ProducesMediaTypes: []string{"application/json"},
×
124
                ConsumesMediaTypes: []string{"application/json"},
×
125
                Schemes:            []string{"https"},
×
126
                Params:             params,
×
127
                Reader:             &DeleteNodePoolConfigItemReader{formats: a.formats},
×
128
                AuthInfo:           authInfo,
×
129
                Context:            params.Context,
×
130
                Client:             params.HTTPClient,
×
131
        }
×
132
        for _, opt := range opts {
×
133
                opt(op)
×
134
        }
×
UNCOV
135
        result, err := a.transport.Submit(op)
×
136
        if err != nil {
×
137
                return nil, err
×
138
        }
×
139

140
        // only one success response has to be checked
141
        success, ok := result.(*DeleteNodePoolConfigItemNoContent)
×
142
        if ok {
×
143
                return success, nil
×
144
        }
×
145

146
        // unexpected success response.
147

148
        // no default response is defined.
149
        //
150
        // safeguard: normally, in the absence of a default response, unknown success responses return an error above: so this is a codegen issue
151
        msg := fmt.Sprintf("unexpected success response for deleteNodePoolConfigItem: API contract not enforced by server. Client expected to get an error, but got: %T", result)
×
152
        panic(msg)
×
153
}
154

155
// SetTransport changes the transport on the client
156
func (a *Client) SetTransport(transport runtime.ClientTransport) {
×
157
        a.transport = transport
×
158
}
×
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