@alicloud/ga20191120 1.0.11 → 1.0.12
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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/ga20191120",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,10 +20,10 @@
|
|
|
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.4",
|
|
24
24
|
"@alicloud/openapi-client": "^0.4.1",
|
|
25
25
|
"@alicloud/endpoint-util": "^0.0.1",
|
|
26
|
-
"@alicloud/openapi-util": "^0.2.
|
|
26
|
+
"@alicloud/openapi-util": "^0.2.9"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist",
|
package/src/client.ts
CHANGED
|
@@ -1215,12 +1215,14 @@ export class CreateBasicIpSetRequest extends $tea.Model {
|
|
|
1215
1215
|
accelerateRegionId?: string;
|
|
1216
1216
|
acceleratorId?: string;
|
|
1217
1217
|
clientToken?: string;
|
|
1218
|
+
ispType?: string;
|
|
1218
1219
|
regionId?: string;
|
|
1219
1220
|
static names(): { [key: string]: string } {
|
|
1220
1221
|
return {
|
|
1221
1222
|
accelerateRegionId: 'AccelerateRegionId',
|
|
1222
1223
|
acceleratorId: 'AcceleratorId',
|
|
1223
1224
|
clientToken: 'ClientToken',
|
|
1225
|
+
ispType: 'IspType',
|
|
1224
1226
|
regionId: 'RegionId',
|
|
1225
1227
|
};
|
|
1226
1228
|
}
|
|
@@ -1230,6 +1232,7 @@ export class CreateBasicIpSetRequest extends $tea.Model {
|
|
|
1230
1232
|
accelerateRegionId: 'string',
|
|
1231
1233
|
acceleratorId: 'string',
|
|
1232
1234
|
clientToken: 'string',
|
|
1235
|
+
ispType: 'string',
|
|
1233
1236
|
regionId: 'string',
|
|
1234
1237
|
};
|
|
1235
1238
|
}
|
|
@@ -4528,6 +4531,7 @@ export class GetBasicIpSetResponseBody extends $tea.Model {
|
|
|
4528
4531
|
ipAddress?: string;
|
|
4529
4532
|
ipSetId?: string;
|
|
4530
4533
|
ipVersion?: string;
|
|
4534
|
+
ispType?: string;
|
|
4531
4535
|
requestId?: string;
|
|
4532
4536
|
state?: string;
|
|
4533
4537
|
static names(): { [key: string]: string } {
|
|
@@ -4538,6 +4542,7 @@ export class GetBasicIpSetResponseBody extends $tea.Model {
|
|
|
4538
4542
|
ipAddress: 'IpAddress',
|
|
4539
4543
|
ipSetId: 'IpSetId',
|
|
4540
4544
|
ipVersion: 'IpVersion',
|
|
4545
|
+
ispType: 'IspType',
|
|
4541
4546
|
requestId: 'RequestId',
|
|
4542
4547
|
state: 'State',
|
|
4543
4548
|
};
|
|
@@ -4551,6 +4556,7 @@ export class GetBasicIpSetResponseBody extends $tea.Model {
|
|
|
4551
4556
|
ipAddress: 'string',
|
|
4552
4557
|
ipSetId: 'string',
|
|
4553
4558
|
ipVersion: 'string',
|
|
4559
|
+
ispType: 'string',
|
|
4554
4560
|
requestId: 'string',
|
|
4555
4561
|
state: 'string',
|
|
4556
4562
|
};
|
|
@@ -11167,6 +11173,10 @@ export default class Client extends OpenApi {
|
|
|
11167
11173
|
query["ClientToken"] = request.clientToken;
|
|
11168
11174
|
}
|
|
11169
11175
|
|
|
11176
|
+
if (!Util.isUnset(request.ispType)) {
|
|
11177
|
+
query["IspType"] = request.ispType;
|
|
11178
|
+
}
|
|
11179
|
+
|
|
11170
11180
|
if (!Util.isUnset(request.regionId)) {
|
|
11171
11181
|
query["RegionId"] = request.regionId;
|
|
11172
11182
|
}
|