@alicloud/ga20191120 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +4 -0
- package/dist/client.js +8 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/ga20191120",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
|
-
"@alicloud/tea-util": "^1.4.
|
|
23
|
+
"@alicloud/tea-util": "^1.4.7",
|
|
24
24
|
"@alicloud/openapi-client": "^0.4.4",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.1",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
package/src/client.ts
CHANGED
|
@@ -15350,19 +15350,28 @@ export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDet
|
|
|
15350
15350
|
}
|
|
15351
15351
|
|
|
15352
15352
|
export class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $tea.Model {
|
|
15353
|
+
chinaMainland?: boolean;
|
|
15354
|
+
ispTypeList?: string[];
|
|
15353
15355
|
localName?: string;
|
|
15354
15356
|
regionId?: string;
|
|
15357
|
+
supportIpv6?: boolean;
|
|
15355
15358
|
static names(): { [key: string]: string } {
|
|
15356
15359
|
return {
|
|
15360
|
+
chinaMainland: 'ChinaMainland',
|
|
15361
|
+
ispTypeList: 'IspTypeList',
|
|
15357
15362
|
localName: 'LocalName',
|
|
15358
15363
|
regionId: 'RegionId',
|
|
15364
|
+
supportIpv6: 'SupportIpv6',
|
|
15359
15365
|
};
|
|
15360
15366
|
}
|
|
15361
15367
|
|
|
15362
15368
|
static types(): { [key: string]: any } {
|
|
15363
15369
|
return {
|
|
15370
|
+
chinaMainland: 'boolean',
|
|
15371
|
+
ispTypeList: { 'type': 'array', 'itemType': 'string' },
|
|
15364
15372
|
localName: 'string',
|
|
15365
15373
|
regionId: 'string',
|
|
15374
|
+
supportIpv6: 'boolean',
|
|
15366
15375
|
};
|
|
15367
15376
|
}
|
|
15368
15377
|
|
|
@@ -15397,11 +15406,13 @@ export class ListAvailableAccelerateAreasResponseBodyAreas extends $tea.Model {
|
|
|
15397
15406
|
}
|
|
15398
15407
|
|
|
15399
15408
|
export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
15409
|
+
chinaMainland?: boolean;
|
|
15400
15410
|
localName?: string;
|
|
15401
15411
|
pop?: boolean;
|
|
15402
15412
|
regionId?: string;
|
|
15403
15413
|
static names(): { [key: string]: string } {
|
|
15404
15414
|
return {
|
|
15415
|
+
chinaMainland: 'ChinaMainland',
|
|
15405
15416
|
localName: 'LocalName',
|
|
15406
15417
|
pop: 'Pop',
|
|
15407
15418
|
regionId: 'RegionId',
|
|
@@ -15410,6 +15421,7 @@ export class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
|
15410
15421
|
|
|
15411
15422
|
static types(): { [key: string]: any } {
|
|
15412
15423
|
return {
|
|
15424
|
+
chinaMainland: 'boolean',
|
|
15413
15425
|
localName: 'string',
|
|
15414
15426
|
pop: 'boolean',
|
|
15415
15427
|
regionId: 'string',
|