-
Notifications
You must be signed in to change notification settings - Fork 125
/
attachments_client.go
275 lines (244 loc) · 6.82 KB
/
attachments_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
/*
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/webrca/v1
import (
"bufio"
"context"
"io"
"net/http"
"net/url"
"path"
"github.com/openshift-online/ocm-sdk-go/errors"
"github.com/openshift-online/ocm-sdk-go/helpers"
)
// AttachmentsClient is the client of the 'attachments' resource.
//
// Manages the collection of attachments.
type AttachmentsClient struct {
transport http.RoundTripper
path string
}
// NewAttachmentsClient creates a new client for the 'attachments'
// resource using the given transport to send the requests and receive the
// responses.
func NewAttachmentsClient(transport http.RoundTripper, path string) *AttachmentsClient {
return &AttachmentsClient{
transport: transport,
path: path,
}
}
// List creates a request for the 'list' method.
//
// Retrieves the list of attachments
func (c *AttachmentsClient) List() *AttachmentsListRequest {
return &AttachmentsListRequest{
transport: c.transport,
path: c.path,
}
}
// Attachment returns the target 'attachment' resource for the given identifier.
func (c *AttachmentsClient) Attachment(id string) *AttachmentClient {
return NewAttachmentClient(
c.transport,
path.Join(c.path, id),
)
}
// AttachmentsListRequest is the request for the 'list' method.
type AttachmentsListRequest struct {
transport http.RoundTripper
path string
query url.Values
header http.Header
page *int
size *int
}
// Parameter adds a query parameter.
func (r *AttachmentsListRequest) Parameter(name string, value interface{}) *AttachmentsListRequest {
helpers.AddValue(&r.query, name, value)
return r
}
// Header adds a request header.
func (r *AttachmentsListRequest) Header(name string, value interface{}) *AttachmentsListRequest {
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 *AttachmentsListRequest) Impersonate(user string) *AttachmentsListRequest {
helpers.AddImpersonationHeader(&r.header, user)
return r
}
// Page sets the value of the 'page' parameter.
func (r *AttachmentsListRequest) Page(value int) *AttachmentsListRequest {
r.page = &value
return r
}
// Size sets the value of the 'size' parameter.
func (r *AttachmentsListRequest) Size(value int) *AttachmentsListRequest {
r.size = &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 *AttachmentsListRequest) Send() (result *AttachmentsListResponse, err error) {
return r.SendContext(context.Background())
}
// SendContext sends this request, waits for the response, and returns it.
func (r *AttachmentsListRequest) SendContext(ctx context.Context) (result *AttachmentsListResponse, err error) {
query := helpers.CopyQuery(r.query)
if r.page != nil {
helpers.AddValue(&query, "page", *r.page)
}
if r.size != nil {
helpers.AddValue(&query, "size", *r.size)
}
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 = &AttachmentsListResponse{}
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 = readAttachmentsListResponse(result, reader)
if err != nil {
return
}
return
}
// AttachmentsListResponse is the response for the 'list' method.
type AttachmentsListResponse struct {
status int
header http.Header
err *errors.Error
items *AttachmentList
page *int
size *int
total *int
}
// Status returns the response status code.
func (r *AttachmentsListResponse) Status() int {
if r == nil {
return 0
}
return r.status
}
// Header returns header of the response.
func (r *AttachmentsListResponse) Header() http.Header {
if r == nil {
return nil
}
return r.header
}
// Error returns the response error.
func (r *AttachmentsListResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.err
}
// Items returns the value of the 'items' parameter.
func (r *AttachmentsListResponse) Items() *AttachmentList {
if r == nil {
return nil
}
return r.items
}
// GetItems returns the value of the 'items' parameter and
// a flag indicating if the parameter has a value.
func (r *AttachmentsListResponse) GetItems() (value *AttachmentList, ok bool) {
ok = r != nil && r.items != nil
if ok {
value = r.items
}
return
}
// Page returns the value of the 'page' parameter.
func (r *AttachmentsListResponse) Page() int {
if r != nil && r.page != nil {
return *r.page
}
return 0
}
// GetPage returns the value of the 'page' parameter and
// a flag indicating if the parameter has a value.
func (r *AttachmentsListResponse) GetPage() (value int, ok bool) {
ok = r != nil && r.page != nil
if ok {
value = *r.page
}
return
}
// Size returns the value of the 'size' parameter.
func (r *AttachmentsListResponse) Size() int {
if r != nil && r.size != nil {
return *r.size
}
return 0
}
// GetSize returns the value of the 'size' parameter and
// a flag indicating if the parameter has a value.
func (r *AttachmentsListResponse) GetSize() (value int, ok bool) {
ok = r != nil && r.size != nil
if ok {
value = *r.size
}
return
}
// Total returns the value of the 'total' parameter.
func (r *AttachmentsListResponse) Total() int {
if r != nil && r.total != nil {
return *r.total
}
return 0
}
// GetTotal returns the value of the 'total' parameter and
// a flag indicating if the parameter has a value.
func (r *AttachmentsListResponse) GetTotal() (value int, ok bool) {
ok = r != nil && r.total != nil
if ok {
value = *r.total
}
return
}