-
Notifications
You must be signed in to change notification settings - Fork 125
/
permission_client.go
424 lines (376 loc) · 11.7 KB
/
permission_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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
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 (
"bufio"
"context"
"io"
"net/http"
"net/url"
"time"
"github.com/openshift-online/ocm-sdk-go/errors"
"github.com/openshift-online/ocm-sdk-go/helpers"
)
// PermissionClient is the client of the 'permission' resource.
//
// Manages a specific permission.
type PermissionClient struct {
transport http.RoundTripper
path string
}
// NewPermissionClient creates a new client for the 'permission'
// resource using the given transport to send the requests and receive the
// responses.
func NewPermissionClient(transport http.RoundTripper, path string) *PermissionClient {
return &PermissionClient{
transport: transport,
path: path,
}
}
// Delete creates a request for the 'delete' method.
//
// Deletes the permission.
func (c *PermissionClient) Delete() *PermissionDeleteRequest {
return &PermissionDeleteRequest{
transport: c.transport,
path: c.path,
}
}
// Get creates a request for the 'get' method.
//
// Retrieves the details of the permission.
func (c *PermissionClient) Get() *PermissionGetRequest {
return &PermissionGetRequest{
transport: c.transport,
path: c.path,
}
}
// PermissionPollRequest is the request for the Poll method.
type PermissionPollRequest struct {
request *PermissionGetRequest
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 *PermissionPollRequest) Parameter(name string, value interface{}) *PermissionPollRequest {
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 *PermissionPollRequest) Header(name string, value interface{}) *PermissionPollRequest {
r.request.Header(name, value)
return r
}
// Interval sets the polling interval. This parameter is mandatory and must be greater than zero.
func (r *PermissionPollRequest) Interval(value time.Duration) *PermissionPollRequest {
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 *PermissionPollRequest) Status(value int) *PermissionPollRequest {
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 *PermissionPollRequest) Predicate(value func(*PermissionGetResponse) bool) *PermissionPollRequest {
r.predicates = append(r.predicates, func(response interface{}) bool {
return value(response.(*PermissionGetResponse))
})
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 *PermissionPollRequest) StartContext(ctx context.Context) (response *PermissionPollResponse, err error) {
result, err := helpers.PollContext(ctx, r.interval, r.statuses, r.predicates, r.task)
if result != nil {
response = &PermissionPollResponse{
response: result.(*PermissionGetResponse),
}
}
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 *PermissionPollRequest) 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
}
// PermissionPollResponse is the response for the Poll method.
type PermissionPollResponse struct {
response *PermissionGetResponse
}
// Status returns the response status code.
func (r *PermissionPollResponse) Status() int {
if r == nil {
return 0
}
return r.response.Status()
}
// Header returns header of the response.
func (r *PermissionPollResponse) Header() http.Header {
if r == nil {
return nil
}
return r.response.Header()
}
// Error returns the response error.
func (r *PermissionPollResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.response.Error()
}
// Body returns the value of the 'body' parameter.
func (r *PermissionPollResponse) Body() *Permission {
return r.response.Body()
}
// GetBody returns the value of the 'body' parameter and
// a flag indicating if the parameter has a value.
func (r *PermissionPollResponse) GetBody() (value *Permission, 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 *PermissionClient) Poll() *PermissionPollRequest {
return &PermissionPollRequest{
request: c.Get(),
}
}
// PermissionDeleteRequest is the request for the 'delete' method.
type PermissionDeleteRequest struct {
transport http.RoundTripper
path string
query url.Values
header http.Header
}
// Parameter adds a query parameter.
func (r *PermissionDeleteRequest) Parameter(name string, value interface{}) *PermissionDeleteRequest {
helpers.AddValue(&r.query, name, value)
return r
}
// Header adds a request header.
func (r *PermissionDeleteRequest) Header(name string, value interface{}) *PermissionDeleteRequest {
helpers.AddHeader(&r.header, name, value)
return r
}
// Impersonate wraps requests on behalf of another user.
// Note: Services that do not support this feature may silently ignore this call.
func (r *PermissionDeleteRequest) Impersonate(user string) *PermissionDeleteRequest {
helpers.AddImpersonationHeader(&r.header, user)
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 *PermissionDeleteRequest) Send() (result *PermissionDeleteResponse, err error) {
return r.SendContext(context.Background())
}
// SendContext sends this request, waits for the response, and returns it.
func (r *PermissionDeleteRequest) SendContext(ctx context.Context) (result *PermissionDeleteResponse, err error) {
query := helpers.CopyQuery(r.query)
header := helpers.CopyHeader(r.header)
uri := &url.URL{
Path: r.path,
RawQuery: query.Encode(),
}
request := &http.Request{
Method: "DELETE",
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 = &PermissionDeleteResponse{}
result.status = response.StatusCode
result.header = response.Header
reader := bufio.NewReader(response.Body)
_, err = reader.Peek(1)
if err == io.EOF {
err = nil
return
}
if result.status >= 400 {
result.err, err = errors.UnmarshalErrorStatus(reader, result.status)
if err != nil {
return
}
err = result.err
return
}
return
}
// PermissionDeleteResponse is the response for the 'delete' method.
type PermissionDeleteResponse struct {
status int
header http.Header
err *errors.Error
}
// Status returns the response status code.
func (r *PermissionDeleteResponse) Status() int {
if r == nil {
return 0
}
return r.status
}
// Header returns header of the response.
func (r *PermissionDeleteResponse) Header() http.Header {
if r == nil {
return nil
}
return r.header
}
// Error returns the response error.
func (r *PermissionDeleteResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.err
}
// PermissionGetRequest is the request for the 'get' method.
type PermissionGetRequest struct {
transport http.RoundTripper
path string
query url.Values
header http.Header
}
// Parameter adds a query parameter.
func (r *PermissionGetRequest) Parameter(name string, value interface{}) *PermissionGetRequest {
helpers.AddValue(&r.query, name, value)
return r
}
// Header adds a request header.
func (r *PermissionGetRequest) Header(name string, value interface{}) *PermissionGetRequest {
helpers.AddHeader(&r.header, name, value)
return r
}
// Impersonate wraps requests on behalf of another user.
// Note: Services that do not support this feature may silently ignore this call.
func (r *PermissionGetRequest) Impersonate(user string) *PermissionGetRequest {
helpers.AddImpersonationHeader(&r.header, user)
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 *PermissionGetRequest) Send() (result *PermissionGetResponse, err error) {
return r.SendContext(context.Background())
}
// SendContext sends this request, waits for the response, and returns it.
func (r *PermissionGetRequest) SendContext(ctx context.Context) (result *PermissionGetResponse, err error) {
query := helpers.CopyQuery(r.query)
header := helpers.CopyHeader(r.header)
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 = &PermissionGetResponse{}
result.status = response.StatusCode
result.header = response.Header
reader := bufio.NewReader(response.Body)
_, err = reader.Peek(1)
if err == io.EOF {
err = nil
return
}
if result.status >= 400 {
result.err, err = errors.UnmarshalErrorStatus(reader, result.status)
if err != nil {
return
}
err = result.err
return
}
err = readPermissionGetResponse(result, reader)
if err != nil {
return
}
return
}
// PermissionGetResponse is the response for the 'get' method.
type PermissionGetResponse struct {
status int
header http.Header
err *errors.Error
body *Permission
}
// Status returns the response status code.
func (r *PermissionGetResponse) Status() int {
if r == nil {
return 0
}
return r.status
}
// Header returns header of the response.
func (r *PermissionGetResponse) Header() http.Header {
if r == nil {
return nil
}
return r.header
}
// Error returns the response error.
func (r *PermissionGetResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.err
}
// Body returns the value of the 'body' parameter.
func (r *PermissionGetResponse) Body() *Permission {
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 *PermissionGetResponse) GetBody() (value *Permission, ok bool) {
ok = r != nil && r.body != nil
if ok {
value = r.body
}
return
}