-
Notifications
You must be signed in to change notification settings - Fork 82
/
operation_types.go
156 lines (146 loc) · 7.86 KB
/
operation_types.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
// 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.
// Big Data Service API
//
// REST API for Oracle Big Data Service. Use this API to build, deploy, and manage fully elastic Big Data Service clusters. Build on Hadoop, Spark and Data Science distributions, which can be fully integrated with existing enterprise data in Oracle Database and Oracle applications.
//
package bds
import (
"strings"
)
// OperationTypesEnum Enum with underlying type: string
type OperationTypesEnum string
// Set of constants representing the allowable values for OperationTypesEnum
const (
OperationTypesCreateBds OperationTypesEnum = "CREATE_BDS"
OperationTypesUpdateBds OperationTypesEnum = "UPDATE_BDS"
OperationTypesDeleteBds OperationTypesEnum = "DELETE_BDS"
OperationTypesAddBlockStorage OperationTypesEnum = "ADD_BLOCK_STORAGE"
OperationTypesAddWorkerNodes OperationTypesEnum = "ADD_WORKER_NODES"
OperationTypesAddCloudSql OperationTypesEnum = "ADD_CLOUD_SQL"
OperationTypesRemoveCloudSql OperationTypesEnum = "REMOVE_CLOUD_SQL"
OperationTypesChangeCompartmentForBds OperationTypesEnum = "CHANGE_COMPARTMENT_FOR_BDS"
OperationTypesChangeShape OperationTypesEnum = "CHANGE_SHAPE"
OperationTypesUpdateInfra OperationTypesEnum = "UPDATE_INFRA"
OperationTypesRestartNode OperationTypesEnum = "RESTART_NODE"
OperationTypesRemoveNode OperationTypesEnum = "REMOVE_NODE"
OperationTypesCreateAutoscaleConfig OperationTypesEnum = "CREATE_AUTOSCALE_CONFIG"
OperationTypesUpdateAutoscaleConfig OperationTypesEnum = "UPDATE_AUTOSCALE_CONFIG"
OperationTypesDeleteAutoscaleConfig OperationTypesEnum = "DELETE_AUTOSCALE_CONFIG"
OperationTypesAutoscaleConfig OperationTypesEnum = "AUTOSCALE_CONFIG"
OperationTypesAutoscaleRun OperationTypesEnum = "AUTOSCALE_RUN"
OperationTypesCreateApiKey OperationTypesEnum = "CREATE_API_KEY"
OperationTypesDeleteApiKey OperationTypesEnum = "DELETE_API_KEY"
OperationTypesTestObjectStoreConnection OperationTypesEnum = "TEST_OBJECT_STORE_CONNECTION"
OperationTypesCreateMetastoreConfig OperationTypesEnum = "CREATE_METASTORE_CONFIG"
OperationTypesDeleteMetastoreConfig OperationTypesEnum = "DELETE_METASTORE_CONFIG"
OperationTypesUpdateMetastoreConfig OperationTypesEnum = "UPDATE_METASTORE_CONFIG"
OperationTypesActivateMetastoreConfig OperationTypesEnum = "ACTIVATE_METASTORE_CONFIG"
OperationTypesTestMetastoreConfig OperationTypesEnum = "TEST_METASTORE_CONFIG"
OperationTypesPatchBds OperationTypesEnum = "PATCH_BDS"
OperationTypesPatchOdh OperationTypesEnum = "PATCH_ODH"
)
var mappingOperationTypesEnum = map[string]OperationTypesEnum{
"CREATE_BDS": OperationTypesCreateBds,
"UPDATE_BDS": OperationTypesUpdateBds,
"DELETE_BDS": OperationTypesDeleteBds,
"ADD_BLOCK_STORAGE": OperationTypesAddBlockStorage,
"ADD_WORKER_NODES": OperationTypesAddWorkerNodes,
"ADD_CLOUD_SQL": OperationTypesAddCloudSql,
"REMOVE_CLOUD_SQL": OperationTypesRemoveCloudSql,
"CHANGE_COMPARTMENT_FOR_BDS": OperationTypesChangeCompartmentForBds,
"CHANGE_SHAPE": OperationTypesChangeShape,
"UPDATE_INFRA": OperationTypesUpdateInfra,
"RESTART_NODE": OperationTypesRestartNode,
"REMOVE_NODE": OperationTypesRemoveNode,
"CREATE_AUTOSCALE_CONFIG": OperationTypesCreateAutoscaleConfig,
"UPDATE_AUTOSCALE_CONFIG": OperationTypesUpdateAutoscaleConfig,
"DELETE_AUTOSCALE_CONFIG": OperationTypesDeleteAutoscaleConfig,
"AUTOSCALE_CONFIG": OperationTypesAutoscaleConfig,
"AUTOSCALE_RUN": OperationTypesAutoscaleRun,
"CREATE_API_KEY": OperationTypesCreateApiKey,
"DELETE_API_KEY": OperationTypesDeleteApiKey,
"TEST_OBJECT_STORE_CONNECTION": OperationTypesTestObjectStoreConnection,
"CREATE_METASTORE_CONFIG": OperationTypesCreateMetastoreConfig,
"DELETE_METASTORE_CONFIG": OperationTypesDeleteMetastoreConfig,
"UPDATE_METASTORE_CONFIG": OperationTypesUpdateMetastoreConfig,
"ACTIVATE_METASTORE_CONFIG": OperationTypesActivateMetastoreConfig,
"TEST_METASTORE_CONFIG": OperationTypesTestMetastoreConfig,
"PATCH_BDS": OperationTypesPatchBds,
"PATCH_ODH": OperationTypesPatchOdh,
}
var mappingOperationTypesEnumLowerCase = map[string]OperationTypesEnum{
"create_bds": OperationTypesCreateBds,
"update_bds": OperationTypesUpdateBds,
"delete_bds": OperationTypesDeleteBds,
"add_block_storage": OperationTypesAddBlockStorage,
"add_worker_nodes": OperationTypesAddWorkerNodes,
"add_cloud_sql": OperationTypesAddCloudSql,
"remove_cloud_sql": OperationTypesRemoveCloudSql,
"change_compartment_for_bds": OperationTypesChangeCompartmentForBds,
"change_shape": OperationTypesChangeShape,
"update_infra": OperationTypesUpdateInfra,
"restart_node": OperationTypesRestartNode,
"remove_node": OperationTypesRemoveNode,
"create_autoscale_config": OperationTypesCreateAutoscaleConfig,
"update_autoscale_config": OperationTypesUpdateAutoscaleConfig,
"delete_autoscale_config": OperationTypesDeleteAutoscaleConfig,
"autoscale_config": OperationTypesAutoscaleConfig,
"autoscale_run": OperationTypesAutoscaleRun,
"create_api_key": OperationTypesCreateApiKey,
"delete_api_key": OperationTypesDeleteApiKey,
"test_object_store_connection": OperationTypesTestObjectStoreConnection,
"create_metastore_config": OperationTypesCreateMetastoreConfig,
"delete_metastore_config": OperationTypesDeleteMetastoreConfig,
"update_metastore_config": OperationTypesUpdateMetastoreConfig,
"activate_metastore_config": OperationTypesActivateMetastoreConfig,
"test_metastore_config": OperationTypesTestMetastoreConfig,
"patch_bds": OperationTypesPatchBds,
"patch_odh": OperationTypesPatchOdh,
}
// GetOperationTypesEnumValues Enumerates the set of values for OperationTypesEnum
func GetOperationTypesEnumValues() []OperationTypesEnum {
values := make([]OperationTypesEnum, 0)
for _, v := range mappingOperationTypesEnum {
values = append(values, v)
}
return values
}
// GetOperationTypesEnumStringValues Enumerates the set of values in String for OperationTypesEnum
func GetOperationTypesEnumStringValues() []string {
return []string{
"CREATE_BDS",
"UPDATE_BDS",
"DELETE_BDS",
"ADD_BLOCK_STORAGE",
"ADD_WORKER_NODES",
"ADD_CLOUD_SQL",
"REMOVE_CLOUD_SQL",
"CHANGE_COMPARTMENT_FOR_BDS",
"CHANGE_SHAPE",
"UPDATE_INFRA",
"RESTART_NODE",
"REMOVE_NODE",
"CREATE_AUTOSCALE_CONFIG",
"UPDATE_AUTOSCALE_CONFIG",
"DELETE_AUTOSCALE_CONFIG",
"AUTOSCALE_CONFIG",
"AUTOSCALE_RUN",
"CREATE_API_KEY",
"DELETE_API_KEY",
"TEST_OBJECT_STORE_CONNECTION",
"CREATE_METASTORE_CONFIG",
"DELETE_METASTORE_CONFIG",
"UPDATE_METASTORE_CONFIG",
"ACTIVATE_METASTORE_CONFIG",
"TEST_METASTORE_CONFIG",
"PATCH_BDS",
"PATCH_ODH",
}
}
// GetMappingOperationTypesEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingOperationTypesEnum(val string) (OperationTypesEnum, bool) {
enum, ok := mappingOperationTypesEnumLowerCase[strings.ToLower(val)]
return enum, ok
}