-
Notifications
You must be signed in to change notification settings - Fork 125
/
registry_client.go
304 lines (268 loc) · 8.29 KB
/
registry_client.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
298
299
300
301
302
303
304
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.
package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1
import (
"context"
"net/http"
"net/url"
"time"
"github.com/openshift-online/ocm-sdk-go/errors"
"github.com/openshift-online/ocm-sdk-go/helpers"
)
// RegistryClient is the client of the 'registry' resource.
//
// Manages a specific registry.
type RegistryClient struct {
transport http.RoundTripper
path string
metric string
}
// NewRegistryClient creates a new client for the 'registry'
// resource using the given transport to send the requests and receive the
// responses.
func NewRegistryClient(transport http.RoundTripper, path string, metric string) *RegistryClient {
return &RegistryClient{
transport: transport,
path: path,
metric: metric,
}
}
// Get creates a request for the 'get' method.
//
// Retrieves the details of the registry.
func (c *RegistryClient) Get() *RegistryGetRequest {
return &RegistryGetRequest{
transport: c.transport,
path: c.path,
metric: c.metric,
}
}
// RegistryPollRequest is the request for the Poll method.
type RegistryPollRequest struct {
request *RegistryGetRequest
interval time.Duration
statuses []int
predicates []func(interface{}) bool
}
// Parameter adds a query parameter to all the requests that will be used to retrieve the object.
func (r *RegistryPollRequest) Parameter(name string, value interface{}) *RegistryPollRequest {
r.request.Parameter(name, value)
return r
}
// Header adds a request header to all the requests that will be used to retrieve the object.
func (r *RegistryPollRequest) Header(name string, value interface{}) *RegistryPollRequest {
r.request.Header(name, value)
return r
}
// Interval sets the polling interval. This parameter is mandatory and must be greater than zero.
func (r *RegistryPollRequest) Interval(value time.Duration) *RegistryPollRequest {
r.interval = value
return r
}
// Status set the expected status of the response. Multiple values can be set calling this method
// multiple times. The response will be considered successful if the status is any of those values.
func (r *RegistryPollRequest) Status(value int) *RegistryPollRequest {
r.statuses = append(r.statuses, value)
return r
}
// Predicate adds a predicate that the response should satisfy be considered successful. Multiple
// predicates can be set calling this method multiple times. The response will be considered successful
// if all the predicates are satisfied.
func (r *RegistryPollRequest) Predicate(value func(*RegistryGetResponse) bool) *RegistryPollRequest {
r.predicates = append(r.predicates, func(response interface{}) bool {
return value(response.(*RegistryGetResponse))
})
return r
}
// StartContext starts the polling loop. Responses will be considered successful if the status is one of
// the values specified with the Status method and if all the predicates specified with the Predicate
// method return nil.
//
// The context must have a timeout or deadline, otherwise this method will immediately return an error.
func (r *RegistryPollRequest) StartContext(ctx context.Context) (response *RegistryPollResponse, err error) {
result, err := helpers.PollContext(ctx, r.interval, r.statuses, r.predicates, r.task)
if result != nil {
response = &RegistryPollResponse{
response: result.(*RegistryGetResponse),
}
}
return
}
// task adapts the types of the request/response types so that they can be used with the generic
// polling function from the helpers package.
func (r *RegistryPollRequest) task(ctx context.Context) (status int, result interface{}, err error) {
response, err := r.request.SendContext(ctx)
if response != nil {
status = response.Status()
result = response
}
return
}
// RegistryPollResponse is the response for the Poll method.
type RegistryPollResponse struct {
response *RegistryGetResponse
}
// Status returns the response status code.
func (r *RegistryPollResponse) Status() int {
if r == nil {
return 0
}
return r.response.Status()
}
// Header returns header of the response.
func (r *RegistryPollResponse) Header() http.Header {
if r == nil {
return nil
}
return r.response.Header()
}
// Error returns the response error.
func (r *RegistryPollResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.response.Error()
}
// Body returns the value of the 'body' parameter.
//
//
func (r *RegistryPollResponse) Body() *Registry {
return r.response.Body()
}
// GetBody returns the value of the 'body' parameter and
// a flag indicating if the parameter has a value.
//
//
func (r *RegistryPollResponse) GetBody() (value *Registry, ok bool) {
return r.response.GetBody()
}
// Poll creates a request to repeatedly retrieve the object till the response has one of a given set
// of states and satisfies a set of predicates.
func (c *RegistryClient) Poll() *RegistryPollRequest {
return &RegistryPollRequest{
request: c.Get(),
}
}
// RegistryGetRequest is the request for the 'get' method.
type RegistryGetRequest struct {
transport http.RoundTripper
path string
metric string
query url.Values
header http.Header
}
// Parameter adds a query parameter.
func (r *RegistryGetRequest) Parameter(name string, value interface{}) *RegistryGetRequest {
helpers.AddValue(&r.query, name, value)
return r
}
// Header adds a request header.
func (r *RegistryGetRequest) Header(name string, value interface{}) *RegistryGetRequest {
helpers.AddHeader(&r.header, name, value)
return r
}
// Send sends this request, waits for the response, and returns it.
//
// This is a potentially lengthy operation, as it requires network communication.
// Consider using a context and the SendContext method.
func (r *RegistryGetRequest) Send() (result *RegistryGetResponse, err error) {
return r.SendContext(context.Background())
}
// SendContext sends this request, waits for the response, and returns it.
func (r *RegistryGetRequest) SendContext(ctx context.Context) (result *RegistryGetResponse, err error) {
query := helpers.CopyQuery(r.query)
header := helpers.SetHeader(r.header, r.metric)
uri := &url.URL{
Path: r.path,
RawQuery: query.Encode(),
}
request := &http.Request{
Method: "GET",
URL: uri,
Header: header,
}
if ctx != nil {
request = request.WithContext(ctx)
}
response, err := r.transport.RoundTrip(request)
if err != nil {
return
}
defer response.Body.Close()
result = &RegistryGetResponse{}
result.status = response.StatusCode
result.header = response.Header
if result.status >= 400 {
result.err, err = errors.UnmarshalError(response.Body)
if err != nil {
return
}
err = result.err
return
}
err = readRegistryGetResponse(result, response.Body)
if err != nil {
return
}
return
}
// RegistryGetResponse is the response for the 'get' method.
type RegistryGetResponse struct {
status int
header http.Header
err *errors.Error
body *Registry
}
// Status returns the response status code.
func (r *RegistryGetResponse) Status() int {
if r == nil {
return 0
}
return r.status
}
// Header returns header of the response.
func (r *RegistryGetResponse) Header() http.Header {
if r == nil {
return nil
}
return r.header
}
// Error returns the response error.
func (r *RegistryGetResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.err
}
// Body returns the value of the 'body' parameter.
//
//
func (r *RegistryGetResponse) Body() *Registry {
if r == nil {
return nil
}
return r.body
}
// GetBody returns the value of the 'body' parameter and
// a flag indicating if the parameter has a value.
//
//
func (r *RegistryGetResponse) GetBody() (value *Registry, ok bool) {
ok = r != nil && r.body != nil
if ok {
value = r.body
}
return
}