-
Notifications
You must be signed in to change notification settings - Fork 124
/
quota_summary_server.go
243 lines (219 loc) · 6.97 KB
/
quota_summary_server.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
/*
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"
"github.com/golang/glog"
"github.com/openshift-online/ocm-sdk-go/errors"
)
// QuotaSummaryServer represents the interface the manages the 'quota_summary' resource.
type QuotaSummaryServer interface {
// List handles a request for the 'list' method.
//
// Retrieves the Quota summary.
List(ctx context.Context, request *QuotaSummaryListServerRequest, response *QuotaSummaryListServerResponse) error
}
// QuotaSummaryListServerRequest is the request for the 'list' method.
type QuotaSummaryListServerRequest struct {
page *int
search *string
size *int
}
// Page returns the value of the 'page' parameter.
//
// Index of the requested page, where one corresponds to the first page.
func (r *QuotaSummaryListServerRequest) 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.
//
// Index of the requested page, where one corresponds to the first page.
func (r *QuotaSummaryListServerRequest) GetPage() (value int, ok bool) {
ok = r != nil && r.page != nil
if ok {
value = *r.page
}
return
}
// Search returns the value of the 'search' parameter.
//
// Search criteria.
//
// The syntax of this parameter is similar to the syntax of the _where_ clause
// of an SQL statement, but using the names of the attributes of the quota
// summary instead of the names of the columns of a table. For example, in order
// to retrieve the quota summary for clusters that run in multiple availability
// zones:
//
// [source,sql]
// ----
// availability_zone_type = 'multi'
// ----
//
// If the parameter isn't provided, or if the value is empty, then all the
// items that the user has permission to see will be returned.
func (r *QuotaSummaryListServerRequest) Search() string {
if r != nil && r.search != nil {
return *r.search
}
return ""
}
// GetSearch returns the value of the 'search' parameter and
// a flag indicating if the parameter has a value.
//
// Search criteria.
//
// The syntax of this parameter is similar to the syntax of the _where_ clause
// of an SQL statement, but using the names of the attributes of the quota
// summary instead of the names of the columns of a table. For example, in order
// to retrieve the quota summary for clusters that run in multiple availability
// zones:
//
// [source,sql]
// ----
// availability_zone_type = 'multi'
// ----
//
// If the parameter isn't provided, or if the value is empty, then all the
// items that the user has permission to see will be returned.
func (r *QuotaSummaryListServerRequest) GetSearch() (value string, ok bool) {
ok = r != nil && r.search != nil
if ok {
value = *r.search
}
return
}
// Size returns the value of the 'size' parameter.
//
// Maximum number of items that will be contained in the returned page.
func (r *QuotaSummaryListServerRequest) 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.
//
// Maximum number of items that will be contained in the returned page.
func (r *QuotaSummaryListServerRequest) GetSize() (value int, ok bool) {
ok = r != nil && r.size != nil
if ok {
value = *r.size
}
return
}
// QuotaSummaryListServerResponse is the response for the 'list' method.
type QuotaSummaryListServerResponse struct {
status int
err *errors.Error
items *QuotaSummaryList
page *int
size *int
total *int
}
// Items sets the value of the 'items' parameter.
//
// Retrieved quota summary items.
func (r *QuotaSummaryListServerResponse) Items(value *QuotaSummaryList) *QuotaSummaryListServerResponse {
r.items = value
return r
}
// Page sets the value of the 'page' parameter.
//
// Index of the requested page, where one corresponds to the first page.
func (r *QuotaSummaryListServerResponse) Page(value int) *QuotaSummaryListServerResponse {
r.page = &value
return r
}
// Size sets the value of the 'size' parameter.
//
// Maximum number of items that will be contained in the returned page.
func (r *QuotaSummaryListServerResponse) Size(value int) *QuotaSummaryListServerResponse {
r.size = &value
return r
}
// Total sets the value of the 'total' parameter.
//
// Total number of items of the collection that match the search criteria,
// regardless of the size of the page.
func (r *QuotaSummaryListServerResponse) Total(value int) *QuotaSummaryListServerResponse {
r.total = &value
return r
}
// Status sets the status code.
func (r *QuotaSummaryListServerResponse) Status(value int) *QuotaSummaryListServerResponse {
r.status = value
return r
}
// dispatchQuotaSummary navigates the servers tree rooted at the given server
// till it finds one that matches the given set of path segments, and then invokes
// the corresponding server.
func dispatchQuotaSummary(w http.ResponseWriter, r *http.Request, server QuotaSummaryServer, segments []string) {
if len(segments) == 0 {
switch r.Method {
case "GET":
adaptQuotaSummaryListRequest(w, r, server)
return
default:
errors.SendMethodNotAllowed(w, r)
return
}
}
switch segments[0] {
default:
errors.SendNotFound(w, r)
return
}
}
// adaptQuotaSummaryListRequest translates the given HTTP request into a call to
// the corresponding method of the given server. Then it translates the
// results returned by that method into an HTTP response.
func adaptQuotaSummaryListRequest(w http.ResponseWriter, r *http.Request, server QuotaSummaryServer) {
request := &QuotaSummaryListServerRequest{}
err := readQuotaSummaryListRequest(request, r)
if err != nil {
glog.Errorf(
"Can't read request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
response := &QuotaSummaryListServerResponse{}
response.status = 200
err = server.List(r.Context(), request, response)
if err != nil {
glog.Errorf(
"Can't process request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
err = writeQuotaSummaryListResponse(response, w)
if err != nil {
glog.Errorf(
"Can't write response for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
return
}
}