Skip to content

Commit 69265b3

Browse files
Merge pull request #128 from autodesk-platform-services/development
Keep main branch updated with release 3.1.0
2 parents 7151332 + faf6773 commit 69265b3

16 files changed

Lines changed: 2271 additions & 299 deletions

File tree

datamanagement/source/model/region.ts

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@
55
* Specifies where the hub is stored. Possible values are:
66
* - ``US`` - Data center for the US region.
77
* - ``EMEA`` - Data center for the European Union, Middle East, and Africa regions.
8-
* - ``APAC`` - Data center for the Australia region. **@deprecated Use `AUS` instead.**
9-
* - ``AUS`` - New data center for the Australia region.
8+
* - ``APAC`` - Data center for the Australia region. **@deprecated Use `AUS` instead.**
9+
* - ``AUS`` - Data center for the Australia region.
10+
* - ``CAN`` - Data center for the Canada region.
11+
* - ``DEU`` - Data center for the Germany region.
12+
* - ``IND`` - Data center for the India region.
13+
* - ``JPN`` - Data center for the Japan region.
14+
* - ``GBR`` - Data center for the United Kingdom region.
1015
* @export
1116
* @enum {string}
1217
*/
@@ -16,7 +21,12 @@ export const Region = {
1621
Emea: 'EMEA',
1722
/** @deprecated Use `AUS` instead. */
1823
Apac: 'APAC',
19-
Aus: 'AUS'
24+
Aus: 'AUS',
25+
Can: 'CAN',
26+
Deu: 'DEU',
27+
Ind: 'IND',
28+
Jpn: 'JPN',
29+
Gbr: 'GBR'
2030
} as const;
2131

2232
export type Region = typeof Region[keyof typeof Region];

datamanagement/source/package-lock.json

Lines changed: 198 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datamanagement/source/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aps_sdk/data-management",
3-
"version": "1.0.2",
3+
"version": "1.1.2",
44
"description": "Client sdk for Data Management API",
55
"license": "Apache-2.0",
66
"author": "Autodesk Platform Services",

0 commit comments

Comments
 (0)