@@ -69,6 +69,16 @@ const (
69
69
RegionMEDubai1 Region = "me-dubai-1"
70
70
// RegionILJerusalem1 represents the region for Israel (Jerusalem).
71
71
RegionILJerusalem1 Region = "il-jerusalem-1"
72
+ // RegionAFJohannesburg represents the region for Johannesburg
73
+ RegionAFJohannesburg Region = "af-johannesburg-1"
74
+ // RegionAPSignapore represents the region for singapore
75
+ RegionAPSignapore Region = "ap-singapore-1"
76
+ // RegionEUMarseille represents the region for Marseille
77
+ RegionEUMarseille Region = "eu-marseille-1"
78
+ // RegionEUStockholm represents the region for Stockholm
79
+ RegionEUStockholm Region = "eu-stockholm-1"
80
+ // RegionMEAbudhabi represents the region for Abudhabi
81
+ RegionMEAbudhabi Region = "me-abudhabi-1"
72
82
73
83
// OC2 REGIONS
74
84
@@ -99,6 +109,16 @@ const (
99
109
RegionAPChiyoda1 Region = "ap-chiyoda-1"
100
110
// RegionAPIbaraki1 represents the region for Japan East (Ibaraki).
101
111
RegionAPIbaraki1 Region = "ap-ibaraki-1"
112
+
113
+ // OC9 REGIONS
114
+
115
+ // RegionMEDCCMuscat represents the dedicated region for muscat
116
+ RegionMEDCCMuscat Region = "me-dcc-muscat-1"
117
+
118
+ // OC10 REGIONS
119
+
120
+ // RegionAPDCCCanberra represents the dedicated region for canberra
121
+ RegionAPDCCCanberra Region = "ap-dcc-canberra-1"
102
122
)
103
123
104
124
var realm = map [string ]string {
@@ -107,6 +127,8 @@ var realm = map[string]string{
107
127
"oc3" : "oraclegovcloud.com" ,
108
128
"oc4" : "oraclegovcloud.uk" ,
109
129
"oc8" : "oraclecloud8.com" ,
130
+ "oc9" : "oraclecloud9.com" ,
131
+ "oc10" : "oraclecloud10.com" ,
110
132
}
111
133
112
134
var regionRealm = map [Region ]string {
@@ -135,6 +157,11 @@ var regionRealm = map[Region]string{
135
157
RegionSASaopaulo1 : "oc1" ,
136
158
RegionSASantiago1 : "oc1" ,
137
159
RegionSAVinhedo1 : "oc1" ,
160
+ RegionAFJohannesburg : "oc1" ,
161
+ RegionAPSignapore : "oc1" ,
162
+ RegionEUMarseille : "oc1" ,
163
+ RegionMEAbudhabi : "oc1" ,
164
+ RegionEUStockholm : "oc1" ,
138
165
139
166
RegionUSLangley1 : "oc2" ,
140
167
RegionUSLuke1 : "oc2" ,
@@ -148,6 +175,10 @@ var regionRealm = map[Region]string{
148
175
149
176
RegionAPChiyoda1 : "oc8" ,
150
177
RegionAPIbaraki1 : "oc8" ,
178
+
179
+ RegionMEDCCMuscat : "oc9" ,
180
+
181
+ RegionAPDCCCanberra : "oc10" ,
151
182
}
152
183
153
184
var shortNameRegion = map [string ]Region {
@@ -180,13 +211,20 @@ var shortNameRegion = map[string]Region{
180
211
"dxb" : RegionMEDubai1 ,
181
212
"mtz" : RegionILJerusalem1 ,
182
213
"syd" : RegionAPSydney1 ,
214
+ "jnb" : RegionAFJohannesburg ,
215
+ "sin" : RegionAPSignapore ,
216
+ "mrs" : RegionEUMarseille ,
217
+ "auh" : RegionMEAbudhabi ,
218
+ "arn" : RegionEUStockholm ,
183
219
"ltn" : RegionUKGovLondon1 ,
184
220
"brs" : RegionUKGovCardiff1 ,
185
221
"lfi" : RegionUSLangley1 ,
186
222
"luf" : RegionUSLuke1 ,
187
223
"ric" : RegionUSGovAshburn1 ,
188
224
"pia" : RegionUSGovChicago1 ,
189
225
"tus" : RegionUSGovPhoenix1 ,
226
+ "mct" : RegionMEDCCMuscat ,
227
+ "wga" : RegionAPDCCCanberra ,
190
228
}
191
229
192
230
func (region Region ) secondLevelDomain () string {
0 commit comments