-
Notifications
You must be signed in to change notification settings - Fork 82
/
list_labels_request_response.go
330 lines (270 loc) · 13.4 KB
/
list_labels_request_response.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
// Copyright (c) 2016, 2018, 2022, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
package loganalytics
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"net/http"
"strings"
)
// ListLabelsRequest wrapper for the ListLabels operation
//
// See also
//
// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLabels.go.html to see an example of how to use ListLabelsRequest.
type ListLabelsRequest struct {
// The Logging Analytics namespace used for the request.
NamespaceName *string `mandatory:"true" contributesTo:"path" name:"namespaceName"`
// The label name used for filtering. Only items with, or associated with, the
// specified label name will be returned.
LabelName *string `mandatory:"false" contributesTo:"query" name:"labelName"`
// The label display text used for filtering. Only labels with the specified name or
// description will be returned.
LabelDisplayText *string `mandatory:"false" contributesTo:"query" name:"labelDisplayText"`
// The system value used for filtering. Only items with the specified system value
// will be returned. Valid values are built in, custom (for user defined items), or
// all (for all items, regardless of system value).
IsSystem ListLabelsIsSystemEnum `mandatory:"false" contributesTo:"query" name:"isSystem" omitEmpty:"true"`
// The label priority used for filtering. Only labels with the specified
// priority will be returned.
LabelPriority ListLabelsLabelPriorityEnum `mandatory:"false" contributesTo:"query" name:"labelPriority" omitEmpty:"true"`
// A flag indicating whether or not to count the label usage per source and per rule.
IsCountPop *bool `mandatory:"false" contributesTo:"query" name:"isCountPop"`
// A flag indicating whether or not return the aliases used by each label.
IsAliasPop *bool `mandatory:"false" contributesTo:"query" name:"isAliasPop"`
// The maximum number of items to return.
Limit *int `mandatory:"false" contributesTo:"query" name:"limit"`
// The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.
Page *string `mandatory:"false" contributesTo:"query" name:"page"`
// The sort order to use, either ascending (`ASC`) or descending (`DESC`).
SortOrder ListLabelsSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"`
// The attribute used to sort the returned labels
LabelSortBy ListLabelsLabelSortByEnum `mandatory:"false" contributesTo:"query" name:"labelSortBy" omitEmpty:"true"`
// The client request ID for tracing.
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
// Metadata about the request. This information will not be transmitted to the service, but
// represents information that the SDK will consume to drive retry behavior.
RequestMetadata common.RequestMetadata
}
func (request ListLabelsRequest) String() string {
return common.PointerString(request)
}
// HTTPRequest implements the OCIRequest interface
func (request ListLabelsRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) {
_, err := request.ValidateEnumValue()
if err != nil {
return http.Request{}, err
}
return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders)
}
// BinaryRequestBody implements the OCIRequest interface
func (request ListLabelsRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) {
return nil, false
}
// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (request ListLabelsRequest) RetryPolicy() *common.RetryPolicy {
return request.RequestMetadata.RetryPolicy
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (request ListLabelsRequest) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingListLabelsIsSystemEnum(string(request.IsSystem)); !ok && request.IsSystem != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for IsSystem: %s. Supported values are: %s.", request.IsSystem, strings.Join(GetListLabelsIsSystemEnumStringValues(), ",")))
}
if _, ok := GetMappingListLabelsLabelPriorityEnum(string(request.LabelPriority)); !ok && request.LabelPriority != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LabelPriority: %s. Supported values are: %s.", request.LabelPriority, strings.Join(GetListLabelsLabelPriorityEnumStringValues(), ",")))
}
if _, ok := GetMappingListLabelsSortOrderEnum(string(request.SortOrder)); !ok && request.SortOrder != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SortOrder: %s. Supported values are: %s.", request.SortOrder, strings.Join(GetListLabelsSortOrderEnumStringValues(), ",")))
}
if _, ok := GetMappingListLabelsLabelSortByEnum(string(request.LabelSortBy)); !ok && request.LabelSortBy != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LabelSortBy: %s. Supported values are: %s.", request.LabelSortBy, strings.Join(GetListLabelsLabelSortByEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// ListLabelsResponse wrapper for the ListLabels operation
type ListLabelsResponse struct {
// The underlying http response
RawResponse *http.Response
// A list of LogAnalyticsLabelCollection instances
LogAnalyticsLabelCollection `presentIn:"body"`
// For pagination of a list of items. When paging through a list, if this header appears in the response,
// then additional items may be available on the previous page of the list. Include this value as the `page` parameter for the
// subsequent request to get the previous batch of items.
OpcPrevPage *string `presentIn:"header" name:"opc-prev-page"`
// For pagination of a list of items. When paging through a list, if this header appears in the response,
// then additional items may be available on the next page of the list. Include this value as the `page` parameter for the
// subsequent request to get the next batch of items.
OpcNextPage *string `presentIn:"header" name:"opc-next-page"`
// Unique Oracle-assigned identifier for the request. When you contact Oracle about a specific request, provide the request ID.
OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
}
func (response ListLabelsResponse) String() string {
return common.PointerString(response)
}
// HTTPResponse implements the OCIResponse interface
func (response ListLabelsResponse) HTTPResponse() *http.Response {
return response.RawResponse
}
// ListLabelsIsSystemEnum Enum with underlying type: string
type ListLabelsIsSystemEnum string
// Set of constants representing the allowable values for ListLabelsIsSystemEnum
const (
ListLabelsIsSystemAll ListLabelsIsSystemEnum = "ALL"
ListLabelsIsSystemCustom ListLabelsIsSystemEnum = "CUSTOM"
ListLabelsIsSystemBuiltIn ListLabelsIsSystemEnum = "BUILT_IN"
)
var mappingListLabelsIsSystemEnum = map[string]ListLabelsIsSystemEnum{
"ALL": ListLabelsIsSystemAll,
"CUSTOM": ListLabelsIsSystemCustom,
"BUILT_IN": ListLabelsIsSystemBuiltIn,
}
var mappingListLabelsIsSystemEnumLowerCase = map[string]ListLabelsIsSystemEnum{
"all": ListLabelsIsSystemAll,
"custom": ListLabelsIsSystemCustom,
"built_in": ListLabelsIsSystemBuiltIn,
}
// GetListLabelsIsSystemEnumValues Enumerates the set of values for ListLabelsIsSystemEnum
func GetListLabelsIsSystemEnumValues() []ListLabelsIsSystemEnum {
values := make([]ListLabelsIsSystemEnum, 0)
for _, v := range mappingListLabelsIsSystemEnum {
values = append(values, v)
}
return values
}
// GetListLabelsIsSystemEnumStringValues Enumerates the set of values in String for ListLabelsIsSystemEnum
func GetListLabelsIsSystemEnumStringValues() []string {
return []string{
"ALL",
"CUSTOM",
"BUILT_IN",
}
}
// GetMappingListLabelsIsSystemEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingListLabelsIsSystemEnum(val string) (ListLabelsIsSystemEnum, bool) {
enum, ok := mappingListLabelsIsSystemEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// ListLabelsLabelPriorityEnum Enum with underlying type: string
type ListLabelsLabelPriorityEnum string
// Set of constants representing the allowable values for ListLabelsLabelPriorityEnum
const (
ListLabelsLabelPriorityNone ListLabelsLabelPriorityEnum = "NONE"
ListLabelsLabelPriorityLow ListLabelsLabelPriorityEnum = "LOW"
ListLabelsLabelPriorityMedium ListLabelsLabelPriorityEnum = "MEDIUM"
ListLabelsLabelPriorityHigh ListLabelsLabelPriorityEnum = "HIGH"
)
var mappingListLabelsLabelPriorityEnum = map[string]ListLabelsLabelPriorityEnum{
"NONE": ListLabelsLabelPriorityNone,
"LOW": ListLabelsLabelPriorityLow,
"MEDIUM": ListLabelsLabelPriorityMedium,
"HIGH": ListLabelsLabelPriorityHigh,
}
var mappingListLabelsLabelPriorityEnumLowerCase = map[string]ListLabelsLabelPriorityEnum{
"none": ListLabelsLabelPriorityNone,
"low": ListLabelsLabelPriorityLow,
"medium": ListLabelsLabelPriorityMedium,
"high": ListLabelsLabelPriorityHigh,
}
// GetListLabelsLabelPriorityEnumValues Enumerates the set of values for ListLabelsLabelPriorityEnum
func GetListLabelsLabelPriorityEnumValues() []ListLabelsLabelPriorityEnum {
values := make([]ListLabelsLabelPriorityEnum, 0)
for _, v := range mappingListLabelsLabelPriorityEnum {
values = append(values, v)
}
return values
}
// GetListLabelsLabelPriorityEnumStringValues Enumerates the set of values in String for ListLabelsLabelPriorityEnum
func GetListLabelsLabelPriorityEnumStringValues() []string {
return []string{
"NONE",
"LOW",
"MEDIUM",
"HIGH",
}
}
// GetMappingListLabelsLabelPriorityEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingListLabelsLabelPriorityEnum(val string) (ListLabelsLabelPriorityEnum, bool) {
enum, ok := mappingListLabelsLabelPriorityEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// ListLabelsSortOrderEnum Enum with underlying type: string
type ListLabelsSortOrderEnum string
// Set of constants representing the allowable values for ListLabelsSortOrderEnum
const (
ListLabelsSortOrderAsc ListLabelsSortOrderEnum = "ASC"
ListLabelsSortOrderDesc ListLabelsSortOrderEnum = "DESC"
)
var mappingListLabelsSortOrderEnum = map[string]ListLabelsSortOrderEnum{
"ASC": ListLabelsSortOrderAsc,
"DESC": ListLabelsSortOrderDesc,
}
var mappingListLabelsSortOrderEnumLowerCase = map[string]ListLabelsSortOrderEnum{
"asc": ListLabelsSortOrderAsc,
"desc": ListLabelsSortOrderDesc,
}
// GetListLabelsSortOrderEnumValues Enumerates the set of values for ListLabelsSortOrderEnum
func GetListLabelsSortOrderEnumValues() []ListLabelsSortOrderEnum {
values := make([]ListLabelsSortOrderEnum, 0)
for _, v := range mappingListLabelsSortOrderEnum {
values = append(values, v)
}
return values
}
// GetListLabelsSortOrderEnumStringValues Enumerates the set of values in String for ListLabelsSortOrderEnum
func GetListLabelsSortOrderEnumStringValues() []string {
return []string{
"ASC",
"DESC",
}
}
// GetMappingListLabelsSortOrderEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingListLabelsSortOrderEnum(val string) (ListLabelsSortOrderEnum, bool) {
enum, ok := mappingListLabelsSortOrderEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// ListLabelsLabelSortByEnum Enum with underlying type: string
type ListLabelsLabelSortByEnum string
// Set of constants representing the allowable values for ListLabelsLabelSortByEnum
const (
ListLabelsLabelSortByName ListLabelsLabelSortByEnum = "name"
ListLabelsLabelSortByPriority ListLabelsLabelSortByEnum = "priority"
ListLabelsLabelSortBySourceusing ListLabelsLabelSortByEnum = "sourceUsing"
)
var mappingListLabelsLabelSortByEnum = map[string]ListLabelsLabelSortByEnum{
"name": ListLabelsLabelSortByName,
"priority": ListLabelsLabelSortByPriority,
"sourceUsing": ListLabelsLabelSortBySourceusing,
}
var mappingListLabelsLabelSortByEnumLowerCase = map[string]ListLabelsLabelSortByEnum{
"name": ListLabelsLabelSortByName,
"priority": ListLabelsLabelSortByPriority,
"sourceusing": ListLabelsLabelSortBySourceusing,
}
// GetListLabelsLabelSortByEnumValues Enumerates the set of values for ListLabelsLabelSortByEnum
func GetListLabelsLabelSortByEnumValues() []ListLabelsLabelSortByEnum {
values := make([]ListLabelsLabelSortByEnum, 0)
for _, v := range mappingListLabelsLabelSortByEnum {
values = append(values, v)
}
return values
}
// GetListLabelsLabelSortByEnumStringValues Enumerates the set of values in String for ListLabelsLabelSortByEnum
func GetListLabelsLabelSortByEnumStringValues() []string {
return []string{
"name",
"priority",
"sourceUsing",
}
}
// GetMappingListLabelsLabelSortByEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingListLabelsLabelSortByEnum(val string) (ListLabelsLabelSortByEnum, bool) {
enum, ok := mappingListLabelsLabelSortByEnumLowerCase[strings.ToLower(val)]
return enum, ok
}