Skip to content

Commit d591d90

Browse files
authored
Merge pull request #71 from cloudgraphdev/beta
Release 0.66.0
2 parents 7deaad7 + 43c04b7 commit d591d90

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [0.66.0-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-azure/compare/0.65.0...0.66.0-beta.1) (2023-05-16)
2+
3+
4+
### Features
5+
6+
* add new regions ([6e79b4d](https://github.com/cloudgraphdev/cloudgraph-provider-azure/commit/6e79b4dbc6d1adb8f6c2893e5c4e8fb03b0060c3))
7+
8+
# [0.66.0-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-azure/compare/0.65.0...0.66.0-alpha.1) (2023-05-03)
9+
10+
11+
### Features
12+
13+
* add new regions ([6e79b4d](https://github.com/cloudgraphdev/cloudgraph-provider-azure/commit/6e79b4dbc6d1adb8f6c2893e5c4e8fb03b0060c3))
14+
115
# [0.65.0](https://github.com/cloudgraphdev/cloudgraph-provider-azure/compare/0.64.4...0.65.0) (2023-03-06)
216

317

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudgraph/cg-provider-azure",
3-
"version": "0.65.0",
3+
"version": "0.66.0-beta.1",
44
"description": "CloudGraph provider plugin for Azure used to fetch Azure cloud data.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",

src/enums/regions.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const regionMap = {
1010
eastUs2Euap: 'eastus2euap',
1111
westUs: 'westus',
1212
westUs2: 'westus2',
13+
westUs3: 'westus3',
1314
westUsStage: 'westusstage',
1415
westUs2Stage: 'westus2stage',
1516
westCentralUs: 'westcentralus',
@@ -20,6 +21,7 @@ export const regionMap = {
2021
centralUsEuap: 'centraluseuap',
2122
northCentralus: 'northcentralus',
2223
northCentralUsStage: 'northcentralusstage',
24+
unitedStatesEuap: 'unitedstateseuap',
2325
// Canada
2426
canada: 'canada',
2527
canadaCentral: 'canadacentral',
@@ -37,6 +39,7 @@ export const regionMap = {
3739
eastAsia: 'eastasia',
3840
eastAsiaStage: 'eastasiastage',
3941
southeastAsiaStage: 'southeastasiastage',
42+
singapore: 'singapore',
4043
// Europe
4144
europe: 'europe',
4245
northEurope: 'northeurope',
@@ -49,11 +52,18 @@ export const regionMap = {
4952
norwayEast: 'norwayeast',
5053
switzerlandNorth: 'switzerlandnorth',
5154
switzerlandWest: 'switzerlandwest',
55+
polandCentral: 'polandcentral',
56+
swedenCentral: 'swedenCentral',
57+
france: 'france',
58+
germany: 'germany',
59+
norway: 'norway',
60+
switzerland: 'switzerland',
5261
// Uk
5362
uk: 'uk',
5463
ukWest: 'ukwest',
5564
ukSouth: 'uksouth',
5665
// Africa
66+
southAfrica: 'southafrica',
5767
southAfricaWest: 'southafricawest',
5868
southAfricaNorth: 'southafricanorth',
5969
// India
@@ -68,13 +78,17 @@ export const regionMap = {
6878
// Korea
6979
koreaSouth: 'koreasouth',
7080
koreaCentral: 'koreacentral',
81+
korea: 'korea',
7182
// Brazil
7283
brazil: 'brazil',
7384
brazilSouth: 'brazilsouth',
7485
brazilSouthEast: 'brazilsoutheast',
86+
brazilUs: 'brazilus',
7587
// UAE
7688
uaeCentral: 'uaecentral',
7789
uaeNorth: 'uaenorth',
90+
uae: 'uae',
91+
qatarCentral: 'qatarcentral',
7892
}
7993

8094
const {
@@ -91,6 +105,7 @@ const {
91105
westUs2,
92106
westUsStage,
93107
westUs2Stage,
108+
westUs3,
94109
westCentralUs,
95110
southCentralUs,
96111
southCentralUsStage,
@@ -99,6 +114,7 @@ const {
99114
centralUsEuap,
100115
northCentralus,
101116
northCentralUsStage,
117+
unitedStatesEuap,
102118
// Canada
103119
canada,
104120
canadaCentral,
@@ -116,6 +132,7 @@ const {
116132
eastAsia,
117133
eastAsiaStage,
118134
southeastAsiaStage,
135+
singapore,
119136
// Europe
120137
europe,
121138
northEurope,
@@ -128,13 +145,20 @@ const {
128145
norwayEast,
129146
switzerlandNorth,
130147
switzerlandWest,
148+
polandCentral,
149+
swedenCentral,
150+
france,
151+
germany,
152+
norway,
153+
switzerland,
131154
// Uk
132155
uk,
133156
ukWest,
134157
ukSouth,
135158
// Africa
136159
southAfricaWest,
137160
southAfricaNorth,
161+
southAfrica,
138162
// India
139163
india,
140164
westIndia,
@@ -147,13 +171,17 @@ const {
147171
// Korea
148172
koreaSouth,
149173
koreaCentral,
174+
korea,
150175
// Brazil
151176
brazil,
152177
brazilSouth,
153178
brazilSouthEast,
179+
brazilUs,
154180
// UAE
155181
uaeCentral,
156182
uaeNorth,
183+
uae,
184+
qatarCentral,
157185
} = regionMap
158186

159187
export default [
@@ -170,6 +198,7 @@ export default [
170198
westUs2,
171199
westUsStage,
172200
westUs2Stage,
201+
westUs3,
173202
westCentralUs,
174203
southCentralUs,
175204
southCentralUsStage,
@@ -178,6 +207,7 @@ export default [
178207
centralUsEuap,
179208
northCentralus,
180209
northCentralUsStage,
210+
unitedStatesEuap,
181211
// Canada
182212
canada,
183213
canadaCentral,
@@ -195,6 +225,7 @@ export default [
195225
eastAsia,
196226
eastAsiaStage,
197227
southeastAsiaStage,
228+
singapore,
198229
// Europe
199230
europe,
200231
northEurope,
@@ -207,13 +238,20 @@ export default [
207238
norwayEast,
208239
switzerlandNorth,
209240
switzerlandWest,
241+
polandCentral,
242+
swedenCentral,
243+
france,
244+
germany,
245+
norway,
246+
switzerland,
210247
// Uk
211248
uk,
212249
ukWest,
213250
ukSouth,
214251
// Africa
215252
southAfricaWest,
216253
southAfricaNorth,
254+
southAfrica,
217255
// India
218256
india,
219257
westIndia,
@@ -226,11 +264,15 @@ export default [
226264
// Korea
227265
koreaSouth,
228266
koreaCentral,
267+
korea,
229268
// Brazil
230269
brazil,
231270
brazilSouth,
232271
brazilSouthEast,
272+
brazilUs,
233273
// UAE
234274
uaeCentral,
235275
uaeNorth,
276+
uae,
277+
qatarCentral,
236278
]

0 commit comments

Comments
 (0)