@@ -147,6 +147,18 @@ const (
147
147
RegionEUDCCRating1 Region = "eu-dcc-rating-1"
148
148
// RegionEUDCCRating2 represents the dedicated region for Rating2
149
149
RegionEUDCCRating2 Region = "eu-dcc-rating-2"
150
+
151
+ // OC16 REGIONS
152
+
153
+ // RegionUSWestJordan1 represents the region for west jordan (Utah)
154
+ RegionUSWestJordan1 Region = "us-westjordan-1"
155
+
156
+ // OC17 REGIONS
157
+
158
+ // RegionUSDCCPhoenix1 represents dedicated region 1 for Phoenix
159
+ RegionDCCPhoenix1 Region = "us-dcc-phoenix-1"
160
+ // RegionUSDCCPhoenix2 represents dedicated region 2 for Phoenix
161
+ RegionDCCPhoenix2 Region = "us-dcc-phoenix-2"
150
162
)
151
163
152
164
var realm = map [string ]string {
@@ -159,6 +171,8 @@ var realm = map[string]string{
159
171
"oc9" : "oraclecloud9.com" ,
160
172
"oc10" : "oraclecloud10.com" ,
161
173
"oc14" : "oraclecloud14.com" ,
174
+ "oc16" : "oraclecloud16.com" ,
175
+ "oc17" : "oraclecloud17.com" ,
162
176
}
163
177
164
178
var regionRealm = map [Region ]string {
@@ -222,6 +236,11 @@ var regionRealm = map[Region]string{
222
236
RegionEUDCCMilan2 : "oc14" ,
223
237
RegionEUDCCRating1 : "oc14" ,
224
238
RegionEUDCCRating2 : "oc14" ,
239
+
240
+ RegionUSWestJordan1 : "oc16" ,
241
+
242
+ RegionDCCPhoenix1 : "oc17" ,
243
+ RegionDCCPhoenix2 : "oc17" ,
225
244
}
226
245
227
246
var shortNameRegion = map [string ]Region {
@@ -279,6 +298,9 @@ var shortNameRegion = map[string]Region{
279
298
"mxp" : RegionEUDCCMilan2 ,
280
299
"dus" : RegionEUDCCRating1 ,
281
300
"dtm" : RegionEUDCCRating2 ,
301
+ "sgu" : RegionUSWestJordan1 ,
302
+ "ifp" : RegionDCCPhoenix1 ,
303
+ "gcn" : RegionDCCPhoenix2 ,
282
304
}
283
305
284
306
func (region Region ) secondLevelDomain () string {
0 commit comments