@alicloud/ga20191120 1.0.15 → 1.0.16
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 +573 -0
- package/dist/client.js +1223 -47
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1728 -241
package/src/client.ts
CHANGED
|
@@ -1466,6 +1466,102 @@ export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
|
1466
1466
|
}
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
|
+
export class CreateBasicEndpointRequest extends $tea.Model {
|
|
1470
|
+
acceleratorId?: string;
|
|
1471
|
+
clientToken?: string;
|
|
1472
|
+
endpointAddress?: string;
|
|
1473
|
+
endpointGroupId?: string;
|
|
1474
|
+
endpointSubAddress?: string;
|
|
1475
|
+
endpointSubAddressType?: string;
|
|
1476
|
+
endpointType?: string;
|
|
1477
|
+
endpointZoneId?: string;
|
|
1478
|
+
name?: string;
|
|
1479
|
+
regionId?: string;
|
|
1480
|
+
static names(): { [key: string]: string } {
|
|
1481
|
+
return {
|
|
1482
|
+
acceleratorId: 'AcceleratorId',
|
|
1483
|
+
clientToken: 'ClientToken',
|
|
1484
|
+
endpointAddress: 'EndpointAddress',
|
|
1485
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1486
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
1487
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
1488
|
+
endpointType: 'EndpointType',
|
|
1489
|
+
endpointZoneId: 'EndpointZoneId',
|
|
1490
|
+
name: 'Name',
|
|
1491
|
+
regionId: 'RegionId',
|
|
1492
|
+
};
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
static types(): { [key: string]: any } {
|
|
1496
|
+
return {
|
|
1497
|
+
acceleratorId: 'string',
|
|
1498
|
+
clientToken: 'string',
|
|
1499
|
+
endpointAddress: 'string',
|
|
1500
|
+
endpointGroupId: 'string',
|
|
1501
|
+
endpointSubAddress: 'string',
|
|
1502
|
+
endpointSubAddressType: 'string',
|
|
1503
|
+
endpointType: 'string',
|
|
1504
|
+
endpointZoneId: 'string',
|
|
1505
|
+
name: 'string',
|
|
1506
|
+
regionId: 'string',
|
|
1507
|
+
};
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
constructor(map?: { [key: string]: any }) {
|
|
1511
|
+
super(map);
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
export class CreateBasicEndpointResponseBody extends $tea.Model {
|
|
1516
|
+
endpointGroupId?: string;
|
|
1517
|
+
endpointId?: string;
|
|
1518
|
+
requestId?: string;
|
|
1519
|
+
static names(): { [key: string]: string } {
|
|
1520
|
+
return {
|
|
1521
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1522
|
+
endpointId: 'EndpointId',
|
|
1523
|
+
requestId: 'RequestId',
|
|
1524
|
+
};
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
static types(): { [key: string]: any } {
|
|
1528
|
+
return {
|
|
1529
|
+
endpointGroupId: 'string',
|
|
1530
|
+
endpointId: 'string',
|
|
1531
|
+
requestId: 'string',
|
|
1532
|
+
};
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
constructor(map?: { [key: string]: any }) {
|
|
1536
|
+
super(map);
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
export class CreateBasicEndpointResponse extends $tea.Model {
|
|
1541
|
+
headers: { [key: string]: string };
|
|
1542
|
+
statusCode: number;
|
|
1543
|
+
body: CreateBasicEndpointResponseBody;
|
|
1544
|
+
static names(): { [key: string]: string } {
|
|
1545
|
+
return {
|
|
1546
|
+
headers: 'headers',
|
|
1547
|
+
statusCode: 'statusCode',
|
|
1548
|
+
body: 'body',
|
|
1549
|
+
};
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
static types(): { [key: string]: any } {
|
|
1553
|
+
return {
|
|
1554
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1555
|
+
statusCode: 'number',
|
|
1556
|
+
body: CreateBasicEndpointResponseBody,
|
|
1557
|
+
};
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
constructor(map?: { [key: string]: any }) {
|
|
1561
|
+
super(map);
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1469
1565
|
export class CreateBasicEndpointGroupRequest extends $tea.Model {
|
|
1470
1566
|
acceleratorId?: string;
|
|
1471
1567
|
clientToken?: string;
|
|
@@ -1556,6 +1652,87 @@ export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
1556
1652
|
}
|
|
1557
1653
|
}
|
|
1558
1654
|
|
|
1655
|
+
export class CreateBasicEndpointsRequest extends $tea.Model {
|
|
1656
|
+
acceleratorId?: string;
|
|
1657
|
+
clientToken?: string;
|
|
1658
|
+
endpointGroupId?: string;
|
|
1659
|
+
endpoints?: CreateBasicEndpointsRequestEndpoints[];
|
|
1660
|
+
regionId?: string;
|
|
1661
|
+
static names(): { [key: string]: string } {
|
|
1662
|
+
return {
|
|
1663
|
+
acceleratorId: 'AcceleratorId',
|
|
1664
|
+
clientToken: 'ClientToken',
|
|
1665
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1666
|
+
endpoints: 'Endpoints',
|
|
1667
|
+
regionId: 'RegionId',
|
|
1668
|
+
};
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
static types(): { [key: string]: any } {
|
|
1672
|
+
return {
|
|
1673
|
+
acceleratorId: 'string',
|
|
1674
|
+
clientToken: 'string',
|
|
1675
|
+
endpointGroupId: 'string',
|
|
1676
|
+
endpoints: { 'type': 'array', 'itemType': CreateBasicEndpointsRequestEndpoints },
|
|
1677
|
+
regionId: 'string',
|
|
1678
|
+
};
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
constructor(map?: { [key: string]: any }) {
|
|
1682
|
+
super(map);
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
export class CreateBasicEndpointsResponseBody extends $tea.Model {
|
|
1687
|
+
endpointGroupId?: string;
|
|
1688
|
+
endpoints?: CreateBasicEndpointsResponseBodyEndpoints[];
|
|
1689
|
+
requestId?: string;
|
|
1690
|
+
static names(): { [key: string]: string } {
|
|
1691
|
+
return {
|
|
1692
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1693
|
+
endpoints: 'Endpoints',
|
|
1694
|
+
requestId: 'RequestId',
|
|
1695
|
+
};
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
static types(): { [key: string]: any } {
|
|
1699
|
+
return {
|
|
1700
|
+
endpointGroupId: 'string',
|
|
1701
|
+
endpoints: { 'type': 'array', 'itemType': CreateBasicEndpointsResponseBodyEndpoints },
|
|
1702
|
+
requestId: 'string',
|
|
1703
|
+
};
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
constructor(map?: { [key: string]: any }) {
|
|
1707
|
+
super(map);
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export class CreateBasicEndpointsResponse extends $tea.Model {
|
|
1712
|
+
headers: { [key: string]: string };
|
|
1713
|
+
statusCode: number;
|
|
1714
|
+
body: CreateBasicEndpointsResponseBody;
|
|
1715
|
+
static names(): { [key: string]: string } {
|
|
1716
|
+
return {
|
|
1717
|
+
headers: 'headers',
|
|
1718
|
+
statusCode: 'statusCode',
|
|
1719
|
+
body: 'body',
|
|
1720
|
+
};
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
static types(): { [key: string]: any } {
|
|
1724
|
+
return {
|
|
1725
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1726
|
+
statusCode: 'number',
|
|
1727
|
+
body: CreateBasicEndpointsResponseBody,
|
|
1728
|
+
};
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
constructor(map?: { [key: string]: any }) {
|
|
1732
|
+
super(map);
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1559
1736
|
export class CreateBasicIpSetRequest extends $tea.Model {
|
|
1560
1737
|
accelerateRegionId?: string;
|
|
1561
1738
|
acceleratorId?: string;
|
|
@@ -5984,19 +6161,28 @@ export class GetBasicAccelerateIpResponse extends $tea.Model {
|
|
|
5984
6161
|
}
|
|
5985
6162
|
}
|
|
5986
6163
|
|
|
5987
|
-
export class
|
|
6164
|
+
export class GetBasicAccelerateIpEndpointRelationRequest extends $tea.Model {
|
|
6165
|
+
accelerateIpId?: string;
|
|
5988
6166
|
acceleratorId?: string;
|
|
6167
|
+
clientToken?: string;
|
|
6168
|
+
endpointId?: string;
|
|
5989
6169
|
regionId?: string;
|
|
5990
6170
|
static names(): { [key: string]: string } {
|
|
5991
6171
|
return {
|
|
6172
|
+
accelerateIpId: 'AccelerateIpId',
|
|
5992
6173
|
acceleratorId: 'AcceleratorId',
|
|
6174
|
+
clientToken: 'ClientToken',
|
|
6175
|
+
endpointId: 'EndpointId',
|
|
5993
6176
|
regionId: 'RegionId',
|
|
5994
6177
|
};
|
|
5995
6178
|
}
|
|
5996
6179
|
|
|
5997
6180
|
static types(): { [key: string]: any } {
|
|
5998
6181
|
return {
|
|
6182
|
+
accelerateIpId: 'string',
|
|
5999
6183
|
acceleratorId: 'string',
|
|
6184
|
+
clientToken: 'string',
|
|
6185
|
+
endpointId: 'string',
|
|
6000
6186
|
regionId: 'string',
|
|
6001
6187
|
};
|
|
6002
6188
|
}
|
|
@@ -6006,68 +6192,47 @@ export class GetBasicAcceleratorRequest extends $tea.Model {
|
|
|
6006
6192
|
}
|
|
6007
6193
|
}
|
|
6008
6194
|
|
|
6009
|
-
export class
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
description?: string;
|
|
6020
|
-
expiredTime?: number;
|
|
6021
|
-
instanceChargeType?: string;
|
|
6022
|
-
name?: string;
|
|
6023
|
-
regionId?: string;
|
|
6195
|
+
export class GetBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
|
|
6196
|
+
accelerateIpId?: string;
|
|
6197
|
+
endpointAddress?: string;
|
|
6198
|
+
endpointId?: string;
|
|
6199
|
+
endpointName?: string;
|
|
6200
|
+
endpointSubAddress?: string;
|
|
6201
|
+
endpointSubAddressType?: string;
|
|
6202
|
+
endpointType?: string;
|
|
6203
|
+
endpointZoneId?: string;
|
|
6204
|
+
ipAddress?: string;
|
|
6024
6205
|
requestId?: string;
|
|
6025
|
-
resourceGroupId?: string;
|
|
6026
6206
|
state?: string;
|
|
6027
|
-
tags?: GetBasicAcceleratorResponseBodyTags[];
|
|
6028
6207
|
static names(): { [key: string]: string } {
|
|
6029
6208
|
return {
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
description: 'Description',
|
|
6040
|
-
expiredTime: 'ExpiredTime',
|
|
6041
|
-
instanceChargeType: 'InstanceChargeType',
|
|
6042
|
-
name: 'Name',
|
|
6043
|
-
regionId: 'RegionId',
|
|
6209
|
+
accelerateIpId: 'AccelerateIpId',
|
|
6210
|
+
endpointAddress: 'EndpointAddress',
|
|
6211
|
+
endpointId: 'EndpointId',
|
|
6212
|
+
endpointName: 'EndpointName',
|
|
6213
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
6214
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
6215
|
+
endpointType: 'EndpointType',
|
|
6216
|
+
endpointZoneId: 'EndpointZoneId',
|
|
6217
|
+
ipAddress: 'IpAddress',
|
|
6044
6218
|
requestId: 'RequestId',
|
|
6045
|
-
resourceGroupId: 'ResourceGroupId',
|
|
6046
6219
|
state: 'State',
|
|
6047
|
-
tags: 'Tags',
|
|
6048
6220
|
};
|
|
6049
6221
|
}
|
|
6050
6222
|
|
|
6051
6223
|
static types(): { [key: string]: any } {
|
|
6052
6224
|
return {
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
description: 'string',
|
|
6063
|
-
expiredTime: 'number',
|
|
6064
|
-
instanceChargeType: 'string',
|
|
6065
|
-
name: 'string',
|
|
6066
|
-
regionId: 'string',
|
|
6225
|
+
accelerateIpId: 'string',
|
|
6226
|
+
endpointAddress: 'string',
|
|
6227
|
+
endpointId: 'string',
|
|
6228
|
+
endpointName: 'string',
|
|
6229
|
+
endpointSubAddress: 'string',
|
|
6230
|
+
endpointSubAddressType: 'string',
|
|
6231
|
+
endpointType: 'string',
|
|
6232
|
+
endpointZoneId: 'string',
|
|
6233
|
+
ipAddress: 'string',
|
|
6067
6234
|
requestId: 'string',
|
|
6068
|
-
resourceGroupId: 'string',
|
|
6069
6235
|
state: 'string',
|
|
6070
|
-
tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
|
|
6071
6236
|
};
|
|
6072
6237
|
}
|
|
6073
6238
|
|
|
@@ -6076,10 +6241,10 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
6076
6241
|
}
|
|
6077
6242
|
}
|
|
6078
6243
|
|
|
6079
|
-
export class
|
|
6244
|
+
export class GetBasicAccelerateIpEndpointRelationResponse extends $tea.Model {
|
|
6080
6245
|
headers: { [key: string]: string };
|
|
6081
6246
|
statusCode: number;
|
|
6082
|
-
body:
|
|
6247
|
+
body: GetBasicAccelerateIpEndpointRelationResponseBody;
|
|
6083
6248
|
static names(): { [key: string]: string } {
|
|
6084
6249
|
return {
|
|
6085
6250
|
headers: 'headers',
|
|
@@ -6092,7 +6257,7 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
|
6092
6257
|
return {
|
|
6093
6258
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6094
6259
|
statusCode: 'number',
|
|
6095
|
-
body:
|
|
6260
|
+
body: GetBasicAccelerateIpEndpointRelationResponseBody,
|
|
6096
6261
|
};
|
|
6097
6262
|
}
|
|
6098
6263
|
|
|
@@ -6101,14 +6266,14 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
|
6101
6266
|
}
|
|
6102
6267
|
}
|
|
6103
6268
|
|
|
6104
|
-
export class
|
|
6269
|
+
export class GetBasicAccelerateIpIdleCountRequest extends $tea.Model {
|
|
6105
6270
|
clientToken?: string;
|
|
6106
|
-
|
|
6271
|
+
ipSetId?: string;
|
|
6107
6272
|
regionId?: string;
|
|
6108
6273
|
static names(): { [key: string]: string } {
|
|
6109
6274
|
return {
|
|
6110
6275
|
clientToken: 'ClientToken',
|
|
6111
|
-
|
|
6276
|
+
ipSetId: 'IpSetId',
|
|
6112
6277
|
regionId: 'RegionId',
|
|
6113
6278
|
};
|
|
6114
6279
|
}
|
|
@@ -6116,7 +6281,7 @@ export class GetBasicEndpointGroupRequest extends $tea.Model {
|
|
|
6116
6281
|
static types(): { [key: string]: any } {
|
|
6117
6282
|
return {
|
|
6118
6283
|
clientToken: 'string',
|
|
6119
|
-
|
|
6284
|
+
ipSetId: 'string',
|
|
6120
6285
|
regionId: 'string',
|
|
6121
6286
|
};
|
|
6122
6287
|
}
|
|
@@ -6126,20 +6291,308 @@ export class GetBasicEndpointGroupRequest extends $tea.Model {
|
|
|
6126
6291
|
}
|
|
6127
6292
|
}
|
|
6128
6293
|
|
|
6129
|
-
export class
|
|
6130
|
-
acceleratorId?: string;
|
|
6131
|
-
description?: string;
|
|
6132
|
-
endpointAddress?: string;
|
|
6133
|
-
endpointGroupId?: string;
|
|
6134
|
-
endpointGroupRegion?: string;
|
|
6135
|
-
endpointSubAddress?: string;
|
|
6136
|
-
endpointType?: string;
|
|
6137
|
-
name?: string;
|
|
6294
|
+
export class GetBasicAccelerateIpIdleCountResponseBody extends $tea.Model {
|
|
6138
6295
|
requestId?: string;
|
|
6139
|
-
|
|
6296
|
+
totalCount?: number;
|
|
6140
6297
|
static names(): { [key: string]: string } {
|
|
6141
6298
|
return {
|
|
6142
|
-
|
|
6299
|
+
requestId: 'RequestId',
|
|
6300
|
+
totalCount: 'TotalCount',
|
|
6301
|
+
};
|
|
6302
|
+
}
|
|
6303
|
+
|
|
6304
|
+
static types(): { [key: string]: any } {
|
|
6305
|
+
return {
|
|
6306
|
+
requestId: 'string',
|
|
6307
|
+
totalCount: 'number',
|
|
6308
|
+
};
|
|
6309
|
+
}
|
|
6310
|
+
|
|
6311
|
+
constructor(map?: { [key: string]: any }) {
|
|
6312
|
+
super(map);
|
|
6313
|
+
}
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
export class GetBasicAccelerateIpIdleCountResponse extends $tea.Model {
|
|
6317
|
+
headers: { [key: string]: string };
|
|
6318
|
+
statusCode: number;
|
|
6319
|
+
body: GetBasicAccelerateIpIdleCountResponseBody;
|
|
6320
|
+
static names(): { [key: string]: string } {
|
|
6321
|
+
return {
|
|
6322
|
+
headers: 'headers',
|
|
6323
|
+
statusCode: 'statusCode',
|
|
6324
|
+
body: 'body',
|
|
6325
|
+
};
|
|
6326
|
+
}
|
|
6327
|
+
|
|
6328
|
+
static types(): { [key: string]: any } {
|
|
6329
|
+
return {
|
|
6330
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6331
|
+
statusCode: 'number',
|
|
6332
|
+
body: GetBasicAccelerateIpIdleCountResponseBody,
|
|
6333
|
+
};
|
|
6334
|
+
}
|
|
6335
|
+
|
|
6336
|
+
constructor(map?: { [key: string]: any }) {
|
|
6337
|
+
super(map);
|
|
6338
|
+
}
|
|
6339
|
+
}
|
|
6340
|
+
|
|
6341
|
+
export class GetBasicAcceleratorRequest extends $tea.Model {
|
|
6342
|
+
acceleratorId?: string;
|
|
6343
|
+
regionId?: string;
|
|
6344
|
+
static names(): { [key: string]: string } {
|
|
6345
|
+
return {
|
|
6346
|
+
acceleratorId: 'AcceleratorId',
|
|
6347
|
+
regionId: 'RegionId',
|
|
6348
|
+
};
|
|
6349
|
+
}
|
|
6350
|
+
|
|
6351
|
+
static types(): { [key: string]: any } {
|
|
6352
|
+
return {
|
|
6353
|
+
acceleratorId: 'string',
|
|
6354
|
+
regionId: 'string',
|
|
6355
|
+
};
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6358
|
+
constructor(map?: { [key: string]: any }) {
|
|
6359
|
+
super(map);
|
|
6360
|
+
}
|
|
6361
|
+
}
|
|
6362
|
+
|
|
6363
|
+
export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
6364
|
+
acceleratorId?: string;
|
|
6365
|
+
bandwidthBillingType?: string;
|
|
6366
|
+
basicBandwidthPackage?: GetBasicAcceleratorResponseBodyBasicBandwidthPackage;
|
|
6367
|
+
basicEndpointGroupId?: string;
|
|
6368
|
+
basicIpSetId?: string;
|
|
6369
|
+
cenId?: string;
|
|
6370
|
+
createTime?: number;
|
|
6371
|
+
crossDomainBandwidthPackage?: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage;
|
|
6372
|
+
crossPrivateState?: string;
|
|
6373
|
+
description?: string;
|
|
6374
|
+
expiredTime?: number;
|
|
6375
|
+
instanceChargeType?: string;
|
|
6376
|
+
name?: string;
|
|
6377
|
+
regionId?: string;
|
|
6378
|
+
requestId?: string;
|
|
6379
|
+
resourceGroupId?: string;
|
|
6380
|
+
state?: string;
|
|
6381
|
+
tags?: GetBasicAcceleratorResponseBodyTags[];
|
|
6382
|
+
static names(): { [key: string]: string } {
|
|
6383
|
+
return {
|
|
6384
|
+
acceleratorId: 'AcceleratorId',
|
|
6385
|
+
bandwidthBillingType: 'BandwidthBillingType',
|
|
6386
|
+
basicBandwidthPackage: 'BasicBandwidthPackage',
|
|
6387
|
+
basicEndpointGroupId: 'BasicEndpointGroupId',
|
|
6388
|
+
basicIpSetId: 'BasicIpSetId',
|
|
6389
|
+
cenId: 'CenId',
|
|
6390
|
+
createTime: 'CreateTime',
|
|
6391
|
+
crossDomainBandwidthPackage: 'CrossDomainBandwidthPackage',
|
|
6392
|
+
crossPrivateState: 'CrossPrivateState',
|
|
6393
|
+
description: 'Description',
|
|
6394
|
+
expiredTime: 'ExpiredTime',
|
|
6395
|
+
instanceChargeType: 'InstanceChargeType',
|
|
6396
|
+
name: 'Name',
|
|
6397
|
+
regionId: 'RegionId',
|
|
6398
|
+
requestId: 'RequestId',
|
|
6399
|
+
resourceGroupId: 'ResourceGroupId',
|
|
6400
|
+
state: 'State',
|
|
6401
|
+
tags: 'Tags',
|
|
6402
|
+
};
|
|
6403
|
+
}
|
|
6404
|
+
|
|
6405
|
+
static types(): { [key: string]: any } {
|
|
6406
|
+
return {
|
|
6407
|
+
acceleratorId: 'string',
|
|
6408
|
+
bandwidthBillingType: 'string',
|
|
6409
|
+
basicBandwidthPackage: GetBasicAcceleratorResponseBodyBasicBandwidthPackage,
|
|
6410
|
+
basicEndpointGroupId: 'string',
|
|
6411
|
+
basicIpSetId: 'string',
|
|
6412
|
+
cenId: 'string',
|
|
6413
|
+
createTime: 'number',
|
|
6414
|
+
crossDomainBandwidthPackage: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage,
|
|
6415
|
+
crossPrivateState: 'string',
|
|
6416
|
+
description: 'string',
|
|
6417
|
+
expiredTime: 'number',
|
|
6418
|
+
instanceChargeType: 'string',
|
|
6419
|
+
name: 'string',
|
|
6420
|
+
regionId: 'string',
|
|
6421
|
+
requestId: 'string',
|
|
6422
|
+
resourceGroupId: 'string',
|
|
6423
|
+
state: 'string',
|
|
6424
|
+
tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
|
|
6425
|
+
};
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6428
|
+
constructor(map?: { [key: string]: any }) {
|
|
6429
|
+
super(map);
|
|
6430
|
+
}
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6433
|
+
export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
6434
|
+
headers: { [key: string]: string };
|
|
6435
|
+
statusCode: number;
|
|
6436
|
+
body: GetBasicAcceleratorResponseBody;
|
|
6437
|
+
static names(): { [key: string]: string } {
|
|
6438
|
+
return {
|
|
6439
|
+
headers: 'headers',
|
|
6440
|
+
statusCode: 'statusCode',
|
|
6441
|
+
body: 'body',
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
6444
|
+
|
|
6445
|
+
static types(): { [key: string]: any } {
|
|
6446
|
+
return {
|
|
6447
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6448
|
+
statusCode: 'number',
|
|
6449
|
+
body: GetBasicAcceleratorResponseBody,
|
|
6450
|
+
};
|
|
6451
|
+
}
|
|
6452
|
+
|
|
6453
|
+
constructor(map?: { [key: string]: any }) {
|
|
6454
|
+
super(map);
|
|
6455
|
+
}
|
|
6456
|
+
}
|
|
6457
|
+
|
|
6458
|
+
export class GetBasicEndpointRequest extends $tea.Model {
|
|
6459
|
+
clientToken?: string;
|
|
6460
|
+
endpointId?: string;
|
|
6461
|
+
regionId?: string;
|
|
6462
|
+
static names(): { [key: string]: string } {
|
|
6463
|
+
return {
|
|
6464
|
+
clientToken: 'ClientToken',
|
|
6465
|
+
endpointId: 'EndpointId',
|
|
6466
|
+
regionId: 'RegionId',
|
|
6467
|
+
};
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
static types(): { [key: string]: any } {
|
|
6471
|
+
return {
|
|
6472
|
+
clientToken: 'string',
|
|
6473
|
+
endpointId: 'string',
|
|
6474
|
+
regionId: 'string',
|
|
6475
|
+
};
|
|
6476
|
+
}
|
|
6477
|
+
|
|
6478
|
+
constructor(map?: { [key: string]: any }) {
|
|
6479
|
+
super(map);
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
export class GetBasicEndpointResponseBody extends $tea.Model {
|
|
6484
|
+
acceleratorId?: string;
|
|
6485
|
+
endPointId?: string;
|
|
6486
|
+
endpointAddress?: string;
|
|
6487
|
+
endpointGroupId?: string;
|
|
6488
|
+
endpointSubAddress?: string;
|
|
6489
|
+
endpointSubAddressType?: string;
|
|
6490
|
+
endpointType?: string;
|
|
6491
|
+
endpointZoneId?: string;
|
|
6492
|
+
name?: string;
|
|
6493
|
+
requestId?: string;
|
|
6494
|
+
state?: string;
|
|
6495
|
+
static names(): { [key: string]: string } {
|
|
6496
|
+
return {
|
|
6497
|
+
acceleratorId: 'AcceleratorId',
|
|
6498
|
+
endPointId: 'EndPointId',
|
|
6499
|
+
endpointAddress: 'EndpointAddress',
|
|
6500
|
+
endpointGroupId: 'EndpointGroupId',
|
|
6501
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
6502
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
6503
|
+
endpointType: 'EndpointType',
|
|
6504
|
+
endpointZoneId: 'EndpointZoneId',
|
|
6505
|
+
name: 'Name',
|
|
6506
|
+
requestId: 'RequestId',
|
|
6507
|
+
state: 'State',
|
|
6508
|
+
};
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6511
|
+
static types(): { [key: string]: any } {
|
|
6512
|
+
return {
|
|
6513
|
+
acceleratorId: 'string',
|
|
6514
|
+
endPointId: 'string',
|
|
6515
|
+
endpointAddress: 'string',
|
|
6516
|
+
endpointGroupId: 'string',
|
|
6517
|
+
endpointSubAddress: 'string',
|
|
6518
|
+
endpointSubAddressType: 'string',
|
|
6519
|
+
endpointType: 'string',
|
|
6520
|
+
endpointZoneId: 'string',
|
|
6521
|
+
name: 'string',
|
|
6522
|
+
requestId: 'string',
|
|
6523
|
+
state: 'string',
|
|
6524
|
+
};
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
constructor(map?: { [key: string]: any }) {
|
|
6528
|
+
super(map);
|
|
6529
|
+
}
|
|
6530
|
+
}
|
|
6531
|
+
|
|
6532
|
+
export class GetBasicEndpointResponse extends $tea.Model {
|
|
6533
|
+
headers: { [key: string]: string };
|
|
6534
|
+
statusCode: number;
|
|
6535
|
+
body: GetBasicEndpointResponseBody;
|
|
6536
|
+
static names(): { [key: string]: string } {
|
|
6537
|
+
return {
|
|
6538
|
+
headers: 'headers',
|
|
6539
|
+
statusCode: 'statusCode',
|
|
6540
|
+
body: 'body',
|
|
6541
|
+
};
|
|
6542
|
+
}
|
|
6543
|
+
|
|
6544
|
+
static types(): { [key: string]: any } {
|
|
6545
|
+
return {
|
|
6546
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6547
|
+
statusCode: 'number',
|
|
6548
|
+
body: GetBasicEndpointResponseBody,
|
|
6549
|
+
};
|
|
6550
|
+
}
|
|
6551
|
+
|
|
6552
|
+
constructor(map?: { [key: string]: any }) {
|
|
6553
|
+
super(map);
|
|
6554
|
+
}
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
export class GetBasicEndpointGroupRequest extends $tea.Model {
|
|
6558
|
+
clientToken?: string;
|
|
6559
|
+
endpointGroupId?: string;
|
|
6560
|
+
regionId?: string;
|
|
6561
|
+
static names(): { [key: string]: string } {
|
|
6562
|
+
return {
|
|
6563
|
+
clientToken: 'ClientToken',
|
|
6564
|
+
endpointGroupId: 'EndpointGroupId',
|
|
6565
|
+
regionId: 'RegionId',
|
|
6566
|
+
};
|
|
6567
|
+
}
|
|
6568
|
+
|
|
6569
|
+
static types(): { [key: string]: any } {
|
|
6570
|
+
return {
|
|
6571
|
+
clientToken: 'string',
|
|
6572
|
+
endpointGroupId: 'string',
|
|
6573
|
+
regionId: 'string',
|
|
6574
|
+
};
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6577
|
+
constructor(map?: { [key: string]: any }) {
|
|
6578
|
+
super(map);
|
|
6579
|
+
}
|
|
6580
|
+
}
|
|
6581
|
+
|
|
6582
|
+
export class GetBasicEndpointGroupResponseBody extends $tea.Model {
|
|
6583
|
+
acceleratorId?: string;
|
|
6584
|
+
description?: string;
|
|
6585
|
+
endpointAddress?: string;
|
|
6586
|
+
endpointGroupId?: string;
|
|
6587
|
+
endpointGroupRegion?: string;
|
|
6588
|
+
endpointSubAddress?: string;
|
|
6589
|
+
endpointType?: string;
|
|
6590
|
+
name?: string;
|
|
6591
|
+
requestId?: string;
|
|
6592
|
+
state?: string;
|
|
6593
|
+
static names(): { [key: string]: string } {
|
|
6594
|
+
return {
|
|
6595
|
+
acceleratorId: 'AcceleratorId',
|
|
6143
6596
|
description: 'Description',
|
|
6144
6597
|
endpointAddress: 'EndpointAddress',
|
|
6145
6598
|
endpointGroupId: 'EndpointGroupId',
|
|
@@ -6740,24 +7193,252 @@ export class ListApplicationMonitorResponseBody extends $tea.Model {
|
|
|
6740
7193
|
pageNumber?: number;
|
|
6741
7194
|
pageSize?: number;
|
|
6742
7195
|
requestId?: string;
|
|
6743
|
-
totalCount?: number;
|
|
7196
|
+
totalCount?: number;
|
|
7197
|
+
static names(): { [key: string]: string } {
|
|
7198
|
+
return {
|
|
7199
|
+
applicationMonitors: 'ApplicationMonitors',
|
|
7200
|
+
pageNumber: 'PageNumber',
|
|
7201
|
+
pageSize: 'PageSize',
|
|
7202
|
+
requestId: 'RequestId',
|
|
7203
|
+
totalCount: 'TotalCount',
|
|
7204
|
+
};
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
static types(): { [key: string]: any } {
|
|
7208
|
+
return {
|
|
7209
|
+
applicationMonitors: { 'type': 'array', 'itemType': ListApplicationMonitorResponseBodyApplicationMonitors },
|
|
7210
|
+
pageNumber: 'number',
|
|
7211
|
+
pageSize: 'number',
|
|
7212
|
+
requestId: 'string',
|
|
7213
|
+
totalCount: 'number',
|
|
7214
|
+
};
|
|
7215
|
+
}
|
|
7216
|
+
|
|
7217
|
+
constructor(map?: { [key: string]: any }) {
|
|
7218
|
+
super(map);
|
|
7219
|
+
}
|
|
7220
|
+
}
|
|
7221
|
+
|
|
7222
|
+
export class ListApplicationMonitorResponse extends $tea.Model {
|
|
7223
|
+
headers: { [key: string]: string };
|
|
7224
|
+
statusCode: number;
|
|
7225
|
+
body: ListApplicationMonitorResponseBody;
|
|
7226
|
+
static names(): { [key: string]: string } {
|
|
7227
|
+
return {
|
|
7228
|
+
headers: 'headers',
|
|
7229
|
+
statusCode: 'statusCode',
|
|
7230
|
+
body: 'body',
|
|
7231
|
+
};
|
|
7232
|
+
}
|
|
7233
|
+
|
|
7234
|
+
static types(): { [key: string]: any } {
|
|
7235
|
+
return {
|
|
7236
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7237
|
+
statusCode: 'number',
|
|
7238
|
+
body: ListApplicationMonitorResponseBody,
|
|
7239
|
+
};
|
|
7240
|
+
}
|
|
7241
|
+
|
|
7242
|
+
constructor(map?: { [key: string]: any }) {
|
|
7243
|
+
super(map);
|
|
7244
|
+
}
|
|
7245
|
+
}
|
|
7246
|
+
|
|
7247
|
+
export class ListApplicationMonitorDetectResultRequest extends $tea.Model {
|
|
7248
|
+
beginTime?: number;
|
|
7249
|
+
endTime?: number;
|
|
7250
|
+
pageNumber?: number;
|
|
7251
|
+
pageSize?: number;
|
|
7252
|
+
regionId?: string;
|
|
7253
|
+
taskId?: string;
|
|
7254
|
+
static names(): { [key: string]: string } {
|
|
7255
|
+
return {
|
|
7256
|
+
beginTime: 'BeginTime',
|
|
7257
|
+
endTime: 'EndTime',
|
|
7258
|
+
pageNumber: 'PageNumber',
|
|
7259
|
+
pageSize: 'PageSize',
|
|
7260
|
+
regionId: 'RegionId',
|
|
7261
|
+
taskId: 'TaskId',
|
|
7262
|
+
};
|
|
7263
|
+
}
|
|
7264
|
+
|
|
7265
|
+
static types(): { [key: string]: any } {
|
|
7266
|
+
return {
|
|
7267
|
+
beginTime: 'number',
|
|
7268
|
+
endTime: 'number',
|
|
7269
|
+
pageNumber: 'number',
|
|
7270
|
+
pageSize: 'number',
|
|
7271
|
+
regionId: 'string',
|
|
7272
|
+
taskId: 'string',
|
|
7273
|
+
};
|
|
7274
|
+
}
|
|
7275
|
+
|
|
7276
|
+
constructor(map?: { [key: string]: any }) {
|
|
7277
|
+
super(map);
|
|
7278
|
+
}
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
7282
|
+
applicationMonitorDetectResultList?: ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList[];
|
|
7283
|
+
pageNumber?: number;
|
|
7284
|
+
pageSize?: number;
|
|
7285
|
+
requestId?: string;
|
|
7286
|
+
totalCount?: number;
|
|
7287
|
+
static names(): { [key: string]: string } {
|
|
7288
|
+
return {
|
|
7289
|
+
applicationMonitorDetectResultList: 'ApplicationMonitorDetectResultList',
|
|
7290
|
+
pageNumber: 'PageNumber',
|
|
7291
|
+
pageSize: 'PageSize',
|
|
7292
|
+
requestId: 'RequestId',
|
|
7293
|
+
totalCount: 'TotalCount',
|
|
7294
|
+
};
|
|
7295
|
+
}
|
|
7296
|
+
|
|
7297
|
+
static types(): { [key: string]: any } {
|
|
7298
|
+
return {
|
|
7299
|
+
applicationMonitorDetectResultList: { 'type': 'array', 'itemType': ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList },
|
|
7300
|
+
pageNumber: 'number',
|
|
7301
|
+
pageSize: 'number',
|
|
7302
|
+
requestId: 'string',
|
|
7303
|
+
totalCount: 'number',
|
|
7304
|
+
};
|
|
7305
|
+
}
|
|
7306
|
+
|
|
7307
|
+
constructor(map?: { [key: string]: any }) {
|
|
7308
|
+
super(map);
|
|
7309
|
+
}
|
|
7310
|
+
}
|
|
7311
|
+
|
|
7312
|
+
export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
7313
|
+
headers: { [key: string]: string };
|
|
7314
|
+
statusCode: number;
|
|
7315
|
+
body: ListApplicationMonitorDetectResultResponseBody;
|
|
7316
|
+
static names(): { [key: string]: string } {
|
|
7317
|
+
return {
|
|
7318
|
+
headers: 'headers',
|
|
7319
|
+
statusCode: 'statusCode',
|
|
7320
|
+
body: 'body',
|
|
7321
|
+
};
|
|
7322
|
+
}
|
|
7323
|
+
|
|
7324
|
+
static types(): { [key: string]: any } {
|
|
7325
|
+
return {
|
|
7326
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7327
|
+
statusCode: 'number',
|
|
7328
|
+
body: ListApplicationMonitorDetectResultResponseBody,
|
|
7329
|
+
};
|
|
7330
|
+
}
|
|
7331
|
+
|
|
7332
|
+
constructor(map?: { [key: string]: any }) {
|
|
7333
|
+
super(map);
|
|
7334
|
+
}
|
|
7335
|
+
}
|
|
7336
|
+
|
|
7337
|
+
export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
7338
|
+
acceleratorId?: string;
|
|
7339
|
+
regionId?: string;
|
|
7340
|
+
static names(): { [key: string]: string } {
|
|
7341
|
+
return {
|
|
7342
|
+
acceleratorId: 'AcceleratorId',
|
|
7343
|
+
regionId: 'RegionId',
|
|
7344
|
+
};
|
|
7345
|
+
}
|
|
7346
|
+
|
|
7347
|
+
static types(): { [key: string]: any } {
|
|
7348
|
+
return {
|
|
7349
|
+
acceleratorId: 'string',
|
|
7350
|
+
regionId: 'string',
|
|
7351
|
+
};
|
|
7352
|
+
}
|
|
7353
|
+
|
|
7354
|
+
constructor(map?: { [key: string]: any }) {
|
|
7355
|
+
super(map);
|
|
7356
|
+
}
|
|
7357
|
+
}
|
|
7358
|
+
|
|
7359
|
+
export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
7360
|
+
areas?: ListAvailableAccelerateAreasResponseBodyAreas[];
|
|
7361
|
+
requestId?: string;
|
|
7362
|
+
static names(): { [key: string]: string } {
|
|
7363
|
+
return {
|
|
7364
|
+
areas: 'Areas',
|
|
7365
|
+
requestId: 'RequestId',
|
|
7366
|
+
};
|
|
7367
|
+
}
|
|
7368
|
+
|
|
7369
|
+
static types(): { [key: string]: any } {
|
|
7370
|
+
return {
|
|
7371
|
+
areas: { 'type': 'array', 'itemType': ListAvailableAccelerateAreasResponseBodyAreas },
|
|
7372
|
+
requestId: 'string',
|
|
7373
|
+
};
|
|
7374
|
+
}
|
|
7375
|
+
|
|
7376
|
+
constructor(map?: { [key: string]: any }) {
|
|
7377
|
+
super(map);
|
|
7378
|
+
}
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
7382
|
+
headers: { [key: string]: string };
|
|
7383
|
+
statusCode: number;
|
|
7384
|
+
body: ListAvailableAccelerateAreasResponseBody;
|
|
7385
|
+
static names(): { [key: string]: string } {
|
|
7386
|
+
return {
|
|
7387
|
+
headers: 'headers',
|
|
7388
|
+
statusCode: 'statusCode',
|
|
7389
|
+
body: 'body',
|
|
7390
|
+
};
|
|
7391
|
+
}
|
|
7392
|
+
|
|
7393
|
+
static types(): { [key: string]: any } {
|
|
7394
|
+
return {
|
|
7395
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7396
|
+
statusCode: 'number',
|
|
7397
|
+
body: ListAvailableAccelerateAreasResponseBody,
|
|
7398
|
+
};
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
constructor(map?: { [key: string]: any }) {
|
|
7402
|
+
super(map);
|
|
7403
|
+
}
|
|
7404
|
+
}
|
|
7405
|
+
|
|
7406
|
+
export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
7407
|
+
acceleratorId?: string;
|
|
7408
|
+
regionId?: string;
|
|
7409
|
+
static names(): { [key: string]: string } {
|
|
7410
|
+
return {
|
|
7411
|
+
acceleratorId: 'AcceleratorId',
|
|
7412
|
+
regionId: 'RegionId',
|
|
7413
|
+
};
|
|
7414
|
+
}
|
|
7415
|
+
|
|
7416
|
+
static types(): { [key: string]: any } {
|
|
7417
|
+
return {
|
|
7418
|
+
acceleratorId: 'string',
|
|
7419
|
+
regionId: 'string',
|
|
7420
|
+
};
|
|
7421
|
+
}
|
|
7422
|
+
|
|
7423
|
+
constructor(map?: { [key: string]: any }) {
|
|
7424
|
+
super(map);
|
|
7425
|
+
}
|
|
7426
|
+
}
|
|
7427
|
+
|
|
7428
|
+
export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
7429
|
+
regions?: ListAvailableBusiRegionsResponseBodyRegions[];
|
|
7430
|
+
requestId?: string;
|
|
6744
7431
|
static names(): { [key: string]: string } {
|
|
6745
7432
|
return {
|
|
6746
|
-
|
|
6747
|
-
pageNumber: 'PageNumber',
|
|
6748
|
-
pageSize: 'PageSize',
|
|
7433
|
+
regions: 'Regions',
|
|
6749
7434
|
requestId: 'RequestId',
|
|
6750
|
-
totalCount: 'TotalCount',
|
|
6751
7435
|
};
|
|
6752
7436
|
}
|
|
6753
7437
|
|
|
6754
7438
|
static types(): { [key: string]: any } {
|
|
6755
7439
|
return {
|
|
6756
|
-
|
|
6757
|
-
pageNumber: 'number',
|
|
6758
|
-
pageSize: 'number',
|
|
7440
|
+
regions: { 'type': 'array', 'itemType': ListAvailableBusiRegionsResponseBodyRegions },
|
|
6759
7441
|
requestId: 'string',
|
|
6760
|
-
totalCount: 'number',
|
|
6761
7442
|
};
|
|
6762
7443
|
}
|
|
6763
7444
|
|
|
@@ -6766,10 +7447,10 @@ export class ListApplicationMonitorResponseBody extends $tea.Model {
|
|
|
6766
7447
|
}
|
|
6767
7448
|
}
|
|
6768
7449
|
|
|
6769
|
-
export class
|
|
7450
|
+
export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
6770
7451
|
headers: { [key: string]: string };
|
|
6771
7452
|
statusCode: number;
|
|
6772
|
-
body:
|
|
7453
|
+
body: ListAvailableBusiRegionsResponseBody;
|
|
6773
7454
|
static names(): { [key: string]: string } {
|
|
6774
7455
|
return {
|
|
6775
7456
|
headers: 'headers',
|
|
@@ -6782,7 +7463,7 @@ export class ListApplicationMonitorResponse extends $tea.Model {
|
|
|
6782
7463
|
return {
|
|
6783
7464
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6784
7465
|
statusCode: 'number',
|
|
6785
|
-
body:
|
|
7466
|
+
body: ListAvailableBusiRegionsResponseBody,
|
|
6786
7467
|
};
|
|
6787
7468
|
}
|
|
6788
7469
|
|
|
@@ -6791,32 +7472,38 @@ export class ListApplicationMonitorResponse extends $tea.Model {
|
|
|
6791
7472
|
}
|
|
6792
7473
|
}
|
|
6793
7474
|
|
|
6794
|
-
export class
|
|
6795
|
-
|
|
6796
|
-
endTime?: number;
|
|
7475
|
+
export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
7476
|
+
bandwidthPackageId?: string;
|
|
6797
7477
|
pageNumber?: number;
|
|
6798
7478
|
pageSize?: number;
|
|
6799
7479
|
regionId?: string;
|
|
6800
|
-
|
|
7480
|
+
resourceGroupId?: string;
|
|
7481
|
+
state?: string;
|
|
7482
|
+
tag?: ListBandwidthPackagesRequestTag[];
|
|
7483
|
+
type?: string;
|
|
6801
7484
|
static names(): { [key: string]: string } {
|
|
6802
7485
|
return {
|
|
6803
|
-
|
|
6804
|
-
endTime: 'EndTime',
|
|
7486
|
+
bandwidthPackageId: 'BandwidthPackageId',
|
|
6805
7487
|
pageNumber: 'PageNumber',
|
|
6806
7488
|
pageSize: 'PageSize',
|
|
6807
7489
|
regionId: 'RegionId',
|
|
6808
|
-
|
|
7490
|
+
resourceGroupId: 'ResourceGroupId',
|
|
7491
|
+
state: 'State',
|
|
7492
|
+
tag: 'Tag',
|
|
7493
|
+
type: 'Type',
|
|
6809
7494
|
};
|
|
6810
7495
|
}
|
|
6811
7496
|
|
|
6812
7497
|
static types(): { [key: string]: any } {
|
|
6813
7498
|
return {
|
|
6814
|
-
|
|
6815
|
-
endTime: 'number',
|
|
7499
|
+
bandwidthPackageId: 'string',
|
|
6816
7500
|
pageNumber: 'number',
|
|
6817
7501
|
pageSize: 'number',
|
|
6818
7502
|
regionId: 'string',
|
|
6819
|
-
|
|
7503
|
+
resourceGroupId: 'string',
|
|
7504
|
+
state: 'string',
|
|
7505
|
+
tag: { 'type': 'array', 'itemType': ListBandwidthPackagesRequestTag },
|
|
7506
|
+
type: 'string',
|
|
6820
7507
|
};
|
|
6821
7508
|
}
|
|
6822
7509
|
|
|
@@ -6825,15 +7512,15 @@ export class ListApplicationMonitorDetectResultRequest extends $tea.Model {
|
|
|
6825
7512
|
}
|
|
6826
7513
|
}
|
|
6827
7514
|
|
|
6828
|
-
export class
|
|
6829
|
-
|
|
7515
|
+
export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
7516
|
+
bandwidthPackages?: ListBandwidthPackagesResponseBodyBandwidthPackages[];
|
|
6830
7517
|
pageNumber?: number;
|
|
6831
7518
|
pageSize?: number;
|
|
6832
7519
|
requestId?: string;
|
|
6833
7520
|
totalCount?: number;
|
|
6834
7521
|
static names(): { [key: string]: string } {
|
|
6835
7522
|
return {
|
|
6836
|
-
|
|
7523
|
+
bandwidthPackages: 'BandwidthPackages',
|
|
6837
7524
|
pageNumber: 'PageNumber',
|
|
6838
7525
|
pageSize: 'PageSize',
|
|
6839
7526
|
requestId: 'RequestId',
|
|
@@ -6843,7 +7530,7 @@ export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
|
6843
7530
|
|
|
6844
7531
|
static types(): { [key: string]: any } {
|
|
6845
7532
|
return {
|
|
6846
|
-
|
|
7533
|
+
bandwidthPackages: { 'type': 'array', 'itemType': ListBandwidthPackagesResponseBodyBandwidthPackages },
|
|
6847
7534
|
pageNumber: 'number',
|
|
6848
7535
|
pageSize: 'number',
|
|
6849
7536
|
requestId: 'string',
|
|
@@ -6856,10 +7543,10 @@ export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
|
6856
7543
|
}
|
|
6857
7544
|
}
|
|
6858
7545
|
|
|
6859
|
-
export class
|
|
7546
|
+
export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
6860
7547
|
headers: { [key: string]: string };
|
|
6861
7548
|
statusCode: number;
|
|
6862
|
-
body:
|
|
7549
|
+
body: ListBandwidthPackagesResponseBody;
|
|
6863
7550
|
static names(): { [key: string]: string } {
|
|
6864
7551
|
return {
|
|
6865
7552
|
headers: 'headers',
|
|
@@ -6872,7 +7559,7 @@ export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
|
6872
7559
|
return {
|
|
6873
7560
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6874
7561
|
statusCode: 'number',
|
|
6875
|
-
body:
|
|
7562
|
+
body: ListBandwidthPackagesResponseBody,
|
|
6876
7563
|
};
|
|
6877
7564
|
}
|
|
6878
7565
|
|
|
@@ -6881,19 +7568,22 @@ export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
|
6881
7568
|
}
|
|
6882
7569
|
}
|
|
6883
7570
|
|
|
6884
|
-
export class
|
|
6885
|
-
|
|
7571
|
+
export class ListBandwidthackagesRequest extends $tea.Model {
|
|
7572
|
+
pageNumber?: number;
|
|
7573
|
+
pageSize?: number;
|
|
6886
7574
|
regionId?: string;
|
|
6887
7575
|
static names(): { [key: string]: string } {
|
|
6888
7576
|
return {
|
|
6889
|
-
|
|
7577
|
+
pageNumber: 'PageNumber',
|
|
7578
|
+
pageSize: 'PageSize',
|
|
6890
7579
|
regionId: 'RegionId',
|
|
6891
7580
|
};
|
|
6892
7581
|
}
|
|
6893
7582
|
|
|
6894
7583
|
static types(): { [key: string]: any } {
|
|
6895
7584
|
return {
|
|
6896
|
-
|
|
7585
|
+
pageNumber: 'number',
|
|
7586
|
+
pageSize: 'number',
|
|
6897
7587
|
regionId: 'string',
|
|
6898
7588
|
};
|
|
6899
7589
|
}
|
|
@@ -6903,20 +7593,29 @@ export class ListAvailableAccelerateAreasRequest extends $tea.Model {
|
|
|
6903
7593
|
}
|
|
6904
7594
|
}
|
|
6905
7595
|
|
|
6906
|
-
export class
|
|
6907
|
-
|
|
7596
|
+
export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
7597
|
+
bandwidthPackages?: ListBandwidthackagesResponseBodyBandwidthPackages[];
|
|
7598
|
+
pageNumber?: number;
|
|
7599
|
+
pageSize?: number;
|
|
6908
7600
|
requestId?: string;
|
|
7601
|
+
totalCount?: number;
|
|
6909
7602
|
static names(): { [key: string]: string } {
|
|
6910
7603
|
return {
|
|
6911
|
-
|
|
7604
|
+
bandwidthPackages: 'BandwidthPackages',
|
|
7605
|
+
pageNumber: 'PageNumber',
|
|
7606
|
+
pageSize: 'PageSize',
|
|
6912
7607
|
requestId: 'RequestId',
|
|
7608
|
+
totalCount: 'TotalCount',
|
|
6913
7609
|
};
|
|
6914
7610
|
}
|
|
6915
7611
|
|
|
6916
7612
|
static types(): { [key: string]: any } {
|
|
6917
7613
|
return {
|
|
6918
|
-
|
|
7614
|
+
bandwidthPackages: { 'type': 'array', 'itemType': ListBandwidthackagesResponseBodyBandwidthPackages },
|
|
7615
|
+
pageNumber: 'number',
|
|
7616
|
+
pageSize: 'number',
|
|
6919
7617
|
requestId: 'string',
|
|
7618
|
+
totalCount: 'number',
|
|
6920
7619
|
};
|
|
6921
7620
|
}
|
|
6922
7621
|
|
|
@@ -6925,10 +7624,10 @@ export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
|
6925
7624
|
}
|
|
6926
7625
|
}
|
|
6927
7626
|
|
|
6928
|
-
export class
|
|
7627
|
+
export class ListBandwidthackagesResponse extends $tea.Model {
|
|
6929
7628
|
headers: { [key: string]: string };
|
|
6930
7629
|
statusCode: number;
|
|
6931
|
-
body:
|
|
7630
|
+
body: ListBandwidthackagesResponseBody;
|
|
6932
7631
|
static names(): { [key: string]: string } {
|
|
6933
7632
|
return {
|
|
6934
7633
|
headers: 'headers',
|
|
@@ -6941,7 +7640,7 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
6941
7640
|
return {
|
|
6942
7641
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6943
7642
|
statusCode: 'number',
|
|
6944
|
-
body:
|
|
7643
|
+
body: ListBandwidthackagesResponseBody,
|
|
6945
7644
|
};
|
|
6946
7645
|
}
|
|
6947
7646
|
|
|
@@ -6950,19 +7649,34 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
6950
7649
|
}
|
|
6951
7650
|
}
|
|
6952
7651
|
|
|
6953
|
-
export class
|
|
7652
|
+
export class ListBasicAccelerateIpEndpointRelationsRequest extends $tea.Model {
|
|
7653
|
+
accelerateIpId?: string;
|
|
6954
7654
|
acceleratorId?: string;
|
|
7655
|
+
clientToken?: string;
|
|
7656
|
+
endpointId?: string;
|
|
7657
|
+
maxResults?: number;
|
|
7658
|
+
nextToken?: string;
|
|
6955
7659
|
regionId?: string;
|
|
6956
7660
|
static names(): { [key: string]: string } {
|
|
6957
7661
|
return {
|
|
7662
|
+
accelerateIpId: 'AccelerateIpId',
|
|
6958
7663
|
acceleratorId: 'AcceleratorId',
|
|
7664
|
+
clientToken: 'ClientToken',
|
|
7665
|
+
endpointId: 'EndpointId',
|
|
7666
|
+
maxResults: 'MaxResults',
|
|
7667
|
+
nextToken: 'NextToken',
|
|
6959
7668
|
regionId: 'RegionId',
|
|
6960
7669
|
};
|
|
6961
7670
|
}
|
|
6962
7671
|
|
|
6963
7672
|
static types(): { [key: string]: any } {
|
|
6964
7673
|
return {
|
|
7674
|
+
accelerateIpId: 'string',
|
|
6965
7675
|
acceleratorId: 'string',
|
|
7676
|
+
clientToken: 'string',
|
|
7677
|
+
endpointId: 'string',
|
|
7678
|
+
maxResults: 'number',
|
|
7679
|
+
nextToken: 'string',
|
|
6966
7680
|
regionId: 'string',
|
|
6967
7681
|
};
|
|
6968
7682
|
}
|
|
@@ -6972,20 +7686,29 @@ export class ListAvailableBusiRegionsRequest extends $tea.Model {
|
|
|
6972
7686
|
}
|
|
6973
7687
|
}
|
|
6974
7688
|
|
|
6975
|
-
export class
|
|
6976
|
-
|
|
7689
|
+
export class ListBasicAccelerateIpEndpointRelationsResponseBody extends $tea.Model {
|
|
7690
|
+
accelerateIpEndpointRelations?: ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations[];
|
|
7691
|
+
maxResults?: string;
|
|
7692
|
+
nextToken?: string;
|
|
6977
7693
|
requestId?: string;
|
|
7694
|
+
totalCount?: string;
|
|
6978
7695
|
static names(): { [key: string]: string } {
|
|
6979
7696
|
return {
|
|
6980
|
-
|
|
7697
|
+
accelerateIpEndpointRelations: 'AccelerateIpEndpointRelations',
|
|
7698
|
+
maxResults: 'MaxResults',
|
|
7699
|
+
nextToken: 'NextToken',
|
|
6981
7700
|
requestId: 'RequestId',
|
|
7701
|
+
totalCount: 'TotalCount',
|
|
6982
7702
|
};
|
|
6983
7703
|
}
|
|
6984
7704
|
|
|
6985
7705
|
static types(): { [key: string]: any } {
|
|
6986
7706
|
return {
|
|
6987
|
-
|
|
7707
|
+
accelerateIpEndpointRelations: { 'type': 'array', 'itemType': ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations },
|
|
7708
|
+
maxResults: 'string',
|
|
7709
|
+
nextToken: 'string',
|
|
6988
7710
|
requestId: 'string',
|
|
7711
|
+
totalCount: 'string',
|
|
6989
7712
|
};
|
|
6990
7713
|
}
|
|
6991
7714
|
|
|
@@ -6994,10 +7717,10 @@ export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
|
6994
7717
|
}
|
|
6995
7718
|
}
|
|
6996
7719
|
|
|
6997
|
-
export class
|
|
7720
|
+
export class ListBasicAccelerateIpEndpointRelationsResponse extends $tea.Model {
|
|
6998
7721
|
headers: { [key: string]: string };
|
|
6999
7722
|
statusCode: number;
|
|
7000
|
-
body:
|
|
7723
|
+
body: ListBasicAccelerateIpEndpointRelationsResponseBody;
|
|
7001
7724
|
static names(): { [key: string]: string } {
|
|
7002
7725
|
return {
|
|
7003
7726
|
headers: 'headers',
|
|
@@ -7010,7 +7733,7 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
7010
7733
|
return {
|
|
7011
7734
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7012
7735
|
statusCode: 'number',
|
|
7013
|
-
body:
|
|
7736
|
+
body: ListBasicAccelerateIpEndpointRelationsResponseBody,
|
|
7014
7737
|
};
|
|
7015
7738
|
}
|
|
7016
7739
|
|
|
@@ -7019,38 +7742,35 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
7019
7742
|
}
|
|
7020
7743
|
}
|
|
7021
7744
|
|
|
7022
|
-
export class
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
|
|
7745
|
+
export class ListBasicAccelerateIpsRequest extends $tea.Model {
|
|
7746
|
+
accelerateIpAddress?: string;
|
|
7747
|
+
accelerateIpId?: string;
|
|
7748
|
+
clientToken?: string;
|
|
7749
|
+
ipSetId?: string;
|
|
7750
|
+
maxResults?: number;
|
|
7751
|
+
nextToken?: string;
|
|
7026
7752
|
regionId?: string;
|
|
7027
|
-
resourceGroupId?: string;
|
|
7028
|
-
state?: string;
|
|
7029
|
-
tag?: ListBandwidthPackagesRequestTag[];
|
|
7030
|
-
type?: string;
|
|
7031
7753
|
static names(): { [key: string]: string } {
|
|
7032
7754
|
return {
|
|
7033
|
-
|
|
7034
|
-
|
|
7035
|
-
|
|
7755
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
7756
|
+
accelerateIpId: 'AccelerateIpId',
|
|
7757
|
+
clientToken: 'ClientToken',
|
|
7758
|
+
ipSetId: 'IpSetId',
|
|
7759
|
+
maxResults: 'MaxResults',
|
|
7760
|
+
nextToken: 'NextToken',
|
|
7036
7761
|
regionId: 'RegionId',
|
|
7037
|
-
resourceGroupId: 'ResourceGroupId',
|
|
7038
|
-
state: 'State',
|
|
7039
|
-
tag: 'Tag',
|
|
7040
|
-
type: 'Type',
|
|
7041
7762
|
};
|
|
7042
7763
|
}
|
|
7043
7764
|
|
|
7044
7765
|
static types(): { [key: string]: any } {
|
|
7045
7766
|
return {
|
|
7046
|
-
|
|
7047
|
-
|
|
7048
|
-
|
|
7767
|
+
accelerateIpAddress: 'string',
|
|
7768
|
+
accelerateIpId: 'string',
|
|
7769
|
+
clientToken: 'string',
|
|
7770
|
+
ipSetId: 'string',
|
|
7771
|
+
maxResults: 'number',
|
|
7772
|
+
nextToken: 'string',
|
|
7049
7773
|
regionId: 'string',
|
|
7050
|
-
resourceGroupId: 'string',
|
|
7051
|
-
state: 'string',
|
|
7052
|
-
tag: { 'type': 'array', 'itemType': ListBandwidthPackagesRequestTag },
|
|
7053
|
-
type: 'string',
|
|
7054
7774
|
};
|
|
7055
7775
|
}
|
|
7056
7776
|
|
|
@@ -7059,17 +7779,17 @@ export class ListBandwidthPackagesRequest extends $tea.Model {
|
|
|
7059
7779
|
}
|
|
7060
7780
|
}
|
|
7061
7781
|
|
|
7062
|
-
export class
|
|
7063
|
-
|
|
7064
|
-
|
|
7065
|
-
|
|
7782
|
+
export class ListBasicAccelerateIpsResponseBody extends $tea.Model {
|
|
7783
|
+
accelerateIps?: ListBasicAccelerateIpsResponseBodyAccelerateIps[];
|
|
7784
|
+
maxResults?: number;
|
|
7785
|
+
nextToken?: string;
|
|
7066
7786
|
requestId?: string;
|
|
7067
7787
|
totalCount?: number;
|
|
7068
7788
|
static names(): { [key: string]: string } {
|
|
7069
7789
|
return {
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
|
|
7790
|
+
accelerateIps: 'AccelerateIps',
|
|
7791
|
+
maxResults: 'MaxResults',
|
|
7792
|
+
nextToken: 'NextToken',
|
|
7073
7793
|
requestId: 'RequestId',
|
|
7074
7794
|
totalCount: 'TotalCount',
|
|
7075
7795
|
};
|
|
@@ -7077,9 +7797,9 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
7077
7797
|
|
|
7078
7798
|
static types(): { [key: string]: any } {
|
|
7079
7799
|
return {
|
|
7080
|
-
|
|
7081
|
-
|
|
7082
|
-
|
|
7800
|
+
accelerateIps: { 'type': 'array', 'itemType': ListBasicAccelerateIpsResponseBodyAccelerateIps },
|
|
7801
|
+
maxResults: 'number',
|
|
7802
|
+
nextToken: 'string',
|
|
7083
7803
|
requestId: 'string',
|
|
7084
7804
|
totalCount: 'number',
|
|
7085
7805
|
};
|
|
@@ -7090,10 +7810,10 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
7090
7810
|
}
|
|
7091
7811
|
}
|
|
7092
7812
|
|
|
7093
|
-
export class
|
|
7813
|
+
export class ListBasicAccelerateIpsResponse extends $tea.Model {
|
|
7094
7814
|
headers: { [key: string]: string };
|
|
7095
7815
|
statusCode: number;
|
|
7096
|
-
body:
|
|
7816
|
+
body: ListBasicAccelerateIpsResponseBody;
|
|
7097
7817
|
static names(): { [key: string]: string } {
|
|
7098
7818
|
return {
|
|
7099
7819
|
headers: 'headers',
|
|
@@ -7106,7 +7826,7 @@ export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
7106
7826
|
return {
|
|
7107
7827
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7108
7828
|
statusCode: 'number',
|
|
7109
|
-
body:
|
|
7829
|
+
body: ListBasicAccelerateIpsResponseBody,
|
|
7110
7830
|
};
|
|
7111
7831
|
}
|
|
7112
7832
|
|
|
@@ -7115,23 +7835,35 @@ export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
7115
7835
|
}
|
|
7116
7836
|
}
|
|
7117
7837
|
|
|
7118
|
-
export class
|
|
7838
|
+
export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
7839
|
+
acceleratorId?: string;
|
|
7119
7840
|
pageNumber?: number;
|
|
7120
7841
|
pageSize?: number;
|
|
7121
7842
|
regionId?: string;
|
|
7843
|
+
resourceGroupId?: string;
|
|
7844
|
+
state?: string;
|
|
7845
|
+
tag?: ListBasicAcceleratorsRequestTag[];
|
|
7122
7846
|
static names(): { [key: string]: string } {
|
|
7123
7847
|
return {
|
|
7848
|
+
acceleratorId: 'AcceleratorId',
|
|
7124
7849
|
pageNumber: 'PageNumber',
|
|
7125
7850
|
pageSize: 'PageSize',
|
|
7126
7851
|
regionId: 'RegionId',
|
|
7852
|
+
resourceGroupId: 'ResourceGroupId',
|
|
7853
|
+
state: 'State',
|
|
7854
|
+
tag: 'Tag',
|
|
7127
7855
|
};
|
|
7128
7856
|
}
|
|
7129
7857
|
|
|
7130
7858
|
static types(): { [key: string]: any } {
|
|
7131
7859
|
return {
|
|
7860
|
+
acceleratorId: 'string',
|
|
7132
7861
|
pageNumber: 'number',
|
|
7133
7862
|
pageSize: 'number',
|
|
7134
7863
|
regionId: 'string',
|
|
7864
|
+
resourceGroupId: 'string',
|
|
7865
|
+
state: 'string',
|
|
7866
|
+
tag: { 'type': 'array', 'itemType': ListBasicAcceleratorsRequestTag },
|
|
7135
7867
|
};
|
|
7136
7868
|
}
|
|
7137
7869
|
|
|
@@ -7140,15 +7872,15 @@ export class ListBandwidthackagesRequest extends $tea.Model {
|
|
|
7140
7872
|
}
|
|
7141
7873
|
}
|
|
7142
7874
|
|
|
7143
|
-
export class
|
|
7144
|
-
|
|
7875
|
+
export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
7876
|
+
accelerators?: ListBasicAcceleratorsResponseBodyAccelerators[];
|
|
7145
7877
|
pageNumber?: number;
|
|
7146
7878
|
pageSize?: number;
|
|
7147
7879
|
requestId?: string;
|
|
7148
7880
|
totalCount?: number;
|
|
7149
7881
|
static names(): { [key: string]: string } {
|
|
7150
7882
|
return {
|
|
7151
|
-
|
|
7883
|
+
accelerators: 'Accelerators',
|
|
7152
7884
|
pageNumber: 'PageNumber',
|
|
7153
7885
|
pageSize: 'PageSize',
|
|
7154
7886
|
requestId: 'RequestId',
|
|
@@ -7158,7 +7890,7 @@ export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
|
7158
7890
|
|
|
7159
7891
|
static types(): { [key: string]: any } {
|
|
7160
7892
|
return {
|
|
7161
|
-
|
|
7893
|
+
accelerators: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAccelerators },
|
|
7162
7894
|
pageNumber: 'number',
|
|
7163
7895
|
pageSize: 'number',
|
|
7164
7896
|
requestId: 'string',
|
|
@@ -7171,10 +7903,10 @@ export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
|
7171
7903
|
}
|
|
7172
7904
|
}
|
|
7173
7905
|
|
|
7174
|
-
export class
|
|
7906
|
+
export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
7175
7907
|
headers: { [key: string]: string };
|
|
7176
7908
|
statusCode: number;
|
|
7177
|
-
body:
|
|
7909
|
+
body: ListBasicAcceleratorsResponseBody;
|
|
7178
7910
|
static names(): { [key: string]: string } {
|
|
7179
7911
|
return {
|
|
7180
7912
|
headers: 'headers',
|
|
@@ -7187,7 +7919,7 @@ export class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
7187
7919
|
return {
|
|
7188
7920
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7189
7921
|
statusCode: 'number',
|
|
7190
|
-
body:
|
|
7922
|
+
body: ListBasicAcceleratorsResponseBody,
|
|
7191
7923
|
};
|
|
7192
7924
|
}
|
|
7193
7925
|
|
|
@@ -7196,35 +7928,38 @@ export class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
7196
7928
|
}
|
|
7197
7929
|
}
|
|
7198
7930
|
|
|
7199
|
-
export class
|
|
7200
|
-
|
|
7201
|
-
|
|
7202
|
-
|
|
7931
|
+
export class ListBasicEndpointsRequest extends $tea.Model {
|
|
7932
|
+
clientToken?: string;
|
|
7933
|
+
endpointGroupId?: string;
|
|
7934
|
+
endpointId?: string;
|
|
7935
|
+
endpointType?: string;
|
|
7936
|
+
maxResults?: number;
|
|
7937
|
+
name?: string;
|
|
7938
|
+
nextToken?: string;
|
|
7203
7939
|
regionId?: string;
|
|
7204
|
-
resourceGroupId?: string;
|
|
7205
|
-
state?: string;
|
|
7206
|
-
tag?: ListBasicAcceleratorsRequestTag[];
|
|
7207
7940
|
static names(): { [key: string]: string } {
|
|
7208
7941
|
return {
|
|
7209
|
-
|
|
7210
|
-
|
|
7211
|
-
|
|
7942
|
+
clientToken: 'ClientToken',
|
|
7943
|
+
endpointGroupId: 'EndpointGroupId',
|
|
7944
|
+
endpointId: 'EndpointId',
|
|
7945
|
+
endpointType: 'EndpointType',
|
|
7946
|
+
maxResults: 'MaxResults',
|
|
7947
|
+
name: 'Name',
|
|
7948
|
+
nextToken: 'NextToken',
|
|
7212
7949
|
regionId: 'RegionId',
|
|
7213
|
-
resourceGroupId: 'ResourceGroupId',
|
|
7214
|
-
state: 'State',
|
|
7215
|
-
tag: 'Tag',
|
|
7216
7950
|
};
|
|
7217
7951
|
}
|
|
7218
7952
|
|
|
7219
7953
|
static types(): { [key: string]: any } {
|
|
7220
7954
|
return {
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
-
|
|
7955
|
+
clientToken: 'string',
|
|
7956
|
+
endpointGroupId: 'string',
|
|
7957
|
+
endpointId: 'string',
|
|
7958
|
+
endpointType: 'string',
|
|
7959
|
+
maxResults: 'number',
|
|
7960
|
+
name: 'string',
|
|
7961
|
+
nextToken: 'string',
|
|
7224
7962
|
regionId: 'string',
|
|
7225
|
-
resourceGroupId: 'string',
|
|
7226
|
-
state: 'string',
|
|
7227
|
-
tag: { 'type': 'array', 'itemType': ListBasicAcceleratorsRequestTag },
|
|
7228
7963
|
};
|
|
7229
7964
|
}
|
|
7230
7965
|
|
|
@@ -7233,17 +7968,17 @@ export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
|
7233
7968
|
}
|
|
7234
7969
|
}
|
|
7235
7970
|
|
|
7236
|
-
export class
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7971
|
+
export class ListBasicEndpointsResponseBody extends $tea.Model {
|
|
7972
|
+
endpoints?: ListBasicEndpointsResponseBodyEndpoints[];
|
|
7973
|
+
maxResults?: string;
|
|
7974
|
+
nextToken?: string;
|
|
7240
7975
|
requestId?: string;
|
|
7241
|
-
totalCount?:
|
|
7976
|
+
totalCount?: string;
|
|
7242
7977
|
static names(): { [key: string]: string } {
|
|
7243
7978
|
return {
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
|
|
7979
|
+
endpoints: 'Endpoints',
|
|
7980
|
+
maxResults: 'MaxResults',
|
|
7981
|
+
nextToken: 'NextToken',
|
|
7247
7982
|
requestId: 'RequestId',
|
|
7248
7983
|
totalCount: 'TotalCount',
|
|
7249
7984
|
};
|
|
@@ -7251,11 +7986,11 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
|
7251
7986
|
|
|
7252
7987
|
static types(): { [key: string]: any } {
|
|
7253
7988
|
return {
|
|
7254
|
-
|
|
7255
|
-
|
|
7256
|
-
|
|
7989
|
+
endpoints: { 'type': 'array', 'itemType': ListBasicEndpointsResponseBodyEndpoints },
|
|
7990
|
+
maxResults: 'string',
|
|
7991
|
+
nextToken: 'string',
|
|
7257
7992
|
requestId: 'string',
|
|
7258
|
-
totalCount: '
|
|
7993
|
+
totalCount: 'string',
|
|
7259
7994
|
};
|
|
7260
7995
|
}
|
|
7261
7996
|
|
|
@@ -7264,10 +7999,10 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
|
7264
7999
|
}
|
|
7265
8000
|
}
|
|
7266
8001
|
|
|
7267
|
-
export class
|
|
8002
|
+
export class ListBasicEndpointsResponse extends $tea.Model {
|
|
7268
8003
|
headers: { [key: string]: string };
|
|
7269
8004
|
statusCode: number;
|
|
7270
|
-
body:
|
|
8005
|
+
body: ListBasicEndpointsResponseBody;
|
|
7271
8006
|
static names(): { [key: string]: string } {
|
|
7272
8007
|
return {
|
|
7273
8008
|
headers: 'headers',
|
|
@@ -7280,7 +8015,7 @@ export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
|
7280
8015
|
return {
|
|
7281
8016
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7282
8017
|
statusCode: 'number',
|
|
7283
|
-
body:
|
|
8018
|
+
body: ListBasicEndpointsResponseBody,
|
|
7284
8019
|
};
|
|
7285
8020
|
}
|
|
7286
8021
|
|
|
@@ -9404,6 +10139,90 @@ export class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
|
9404
10139
|
}
|
|
9405
10140
|
}
|
|
9406
10141
|
|
|
10142
|
+
export class UpdateBasicEndpointRequest extends $tea.Model {
|
|
10143
|
+
clientToken?: string;
|
|
10144
|
+
endpointGroupId?: string;
|
|
10145
|
+
endpointId?: string;
|
|
10146
|
+
name?: string;
|
|
10147
|
+
regionId?: string;
|
|
10148
|
+
static names(): { [key: string]: string } {
|
|
10149
|
+
return {
|
|
10150
|
+
clientToken: 'ClientToken',
|
|
10151
|
+
endpointGroupId: 'EndpointGroupId',
|
|
10152
|
+
endpointId: 'EndpointId',
|
|
10153
|
+
name: 'Name',
|
|
10154
|
+
regionId: 'RegionId',
|
|
10155
|
+
};
|
|
10156
|
+
}
|
|
10157
|
+
|
|
10158
|
+
static types(): { [key: string]: any } {
|
|
10159
|
+
return {
|
|
10160
|
+
clientToken: 'string',
|
|
10161
|
+
endpointGroupId: 'string',
|
|
10162
|
+
endpointId: 'string',
|
|
10163
|
+
name: 'string',
|
|
10164
|
+
regionId: 'string',
|
|
10165
|
+
};
|
|
10166
|
+
}
|
|
10167
|
+
|
|
10168
|
+
constructor(map?: { [key: string]: any }) {
|
|
10169
|
+
super(map);
|
|
10170
|
+
}
|
|
10171
|
+
}
|
|
10172
|
+
|
|
10173
|
+
export class UpdateBasicEndpointResponseBody extends $tea.Model {
|
|
10174
|
+
endpointGroupId?: string;
|
|
10175
|
+
endpointId?: string;
|
|
10176
|
+
name?: string;
|
|
10177
|
+
requestId?: string;
|
|
10178
|
+
static names(): { [key: string]: string } {
|
|
10179
|
+
return {
|
|
10180
|
+
endpointGroupId: 'EndpointGroupId',
|
|
10181
|
+
endpointId: 'EndpointId',
|
|
10182
|
+
name: 'Name',
|
|
10183
|
+
requestId: 'RequestId',
|
|
10184
|
+
};
|
|
10185
|
+
}
|
|
10186
|
+
|
|
10187
|
+
static types(): { [key: string]: any } {
|
|
10188
|
+
return {
|
|
10189
|
+
endpointGroupId: 'string',
|
|
10190
|
+
endpointId: 'string',
|
|
10191
|
+
name: 'string',
|
|
10192
|
+
requestId: 'string',
|
|
10193
|
+
};
|
|
10194
|
+
}
|
|
10195
|
+
|
|
10196
|
+
constructor(map?: { [key: string]: any }) {
|
|
10197
|
+
super(map);
|
|
10198
|
+
}
|
|
10199
|
+
}
|
|
10200
|
+
|
|
10201
|
+
export class UpdateBasicEndpointResponse extends $tea.Model {
|
|
10202
|
+
headers: { [key: string]: string };
|
|
10203
|
+
statusCode: number;
|
|
10204
|
+
body: UpdateBasicEndpointResponseBody;
|
|
10205
|
+
static names(): { [key: string]: string } {
|
|
10206
|
+
return {
|
|
10207
|
+
headers: 'headers',
|
|
10208
|
+
statusCode: 'statusCode',
|
|
10209
|
+
body: 'body',
|
|
10210
|
+
};
|
|
10211
|
+
}
|
|
10212
|
+
|
|
10213
|
+
static types(): { [key: string]: any } {
|
|
10214
|
+
return {
|
|
10215
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10216
|
+
statusCode: 'number',
|
|
10217
|
+
body: UpdateBasicEndpointResponseBody,
|
|
10218
|
+
};
|
|
10219
|
+
}
|
|
10220
|
+
|
|
10221
|
+
constructor(map?: { [key: string]: any }) {
|
|
10222
|
+
super(map);
|
|
10223
|
+
}
|
|
10224
|
+
}
|
|
10225
|
+
|
|
9407
10226
|
export class UpdateBasicEndpointGroupRequest extends $tea.Model {
|
|
9408
10227
|
clientToken?: string;
|
|
9409
10228
|
description?: string;
|
|
@@ -10543,6 +11362,68 @@ export class CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpoint
|
|
|
10543
11362
|
}
|
|
10544
11363
|
}
|
|
10545
11364
|
|
|
11365
|
+
export class CreateBasicEndpointsRequestEndpoints extends $tea.Model {
|
|
11366
|
+
endpointAddress?: string;
|
|
11367
|
+
endpointSubAddress?: string;
|
|
11368
|
+
endpointSubAddressType?: string;
|
|
11369
|
+
endpointType?: string;
|
|
11370
|
+
endpointZoneId?: string;
|
|
11371
|
+
name?: string;
|
|
11372
|
+
static names(): { [key: string]: string } {
|
|
11373
|
+
return {
|
|
11374
|
+
endpointAddress: 'EndpointAddress',
|
|
11375
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
11376
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
11377
|
+
endpointType: 'EndpointType',
|
|
11378
|
+
endpointZoneId: 'EndpointZoneId',
|
|
11379
|
+
name: 'Name',
|
|
11380
|
+
};
|
|
11381
|
+
}
|
|
11382
|
+
|
|
11383
|
+
static types(): { [key: string]: any } {
|
|
11384
|
+
return {
|
|
11385
|
+
endpointAddress: 'string',
|
|
11386
|
+
endpointSubAddress: 'string',
|
|
11387
|
+
endpointSubAddressType: 'string',
|
|
11388
|
+
endpointType: 'string',
|
|
11389
|
+
endpointZoneId: 'string',
|
|
11390
|
+
name: 'string',
|
|
11391
|
+
};
|
|
11392
|
+
}
|
|
11393
|
+
|
|
11394
|
+
constructor(map?: { [key: string]: any }) {
|
|
11395
|
+
super(map);
|
|
11396
|
+
}
|
|
11397
|
+
}
|
|
11398
|
+
|
|
11399
|
+
export class CreateBasicEndpointsResponseBodyEndpoints extends $tea.Model {
|
|
11400
|
+
endpointAddress?: string;
|
|
11401
|
+
endpointId?: string;
|
|
11402
|
+
endpointSubAddress?: string;
|
|
11403
|
+
endpointType?: string;
|
|
11404
|
+
static names(): { [key: string]: string } {
|
|
11405
|
+
return {
|
|
11406
|
+
endpointAddress: 'EndpointAddress',
|
|
11407
|
+
endpointId: 'EndpointId',
|
|
11408
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
11409
|
+
endpointType: 'EndpointType',
|
|
11410
|
+
};
|
|
11411
|
+
}
|
|
11412
|
+
|
|
11413
|
+
static types(): { [key: string]: any } {
|
|
11414
|
+
return {
|
|
11415
|
+
endpointAddress: 'string',
|
|
11416
|
+
endpointId: 'string',
|
|
11417
|
+
endpointSubAddress: 'string',
|
|
11418
|
+
endpointType: 'string',
|
|
11419
|
+
};
|
|
11420
|
+
}
|
|
11421
|
+
|
|
11422
|
+
constructor(map?: { [key: string]: any }) {
|
|
11423
|
+
super(map);
|
|
11424
|
+
}
|
|
11425
|
+
}
|
|
11426
|
+
|
|
10546
11427
|
export class CreateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations extends $tea.Model {
|
|
10547
11428
|
fromPort?: number;
|
|
10548
11429
|
protocols?: string[];
|
|
@@ -12766,24 +13647,147 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
|
|
|
12766
13647
|
regionId: 'RegionId',
|
|
12767
13648
|
resourceGroupId: 'ResourceGroupId',
|
|
12768
13649
|
state: 'State',
|
|
12769
|
-
tags: 'Tags',
|
|
13650
|
+
tags: 'Tags',
|
|
13651
|
+
};
|
|
13652
|
+
}
|
|
13653
|
+
|
|
13654
|
+
static types(): { [key: string]: any } {
|
|
13655
|
+
return {
|
|
13656
|
+
accelerators: { 'type': 'array', 'itemType': 'string' },
|
|
13657
|
+
bandwidth: 'number',
|
|
13658
|
+
bandwidthPackageId: 'string',
|
|
13659
|
+
chargeType: 'string',
|
|
13660
|
+
createTime: 'string',
|
|
13661
|
+
description: 'string',
|
|
13662
|
+
expiredTime: 'string',
|
|
13663
|
+
name: 'string',
|
|
13664
|
+
regionId: 'string',
|
|
13665
|
+
resourceGroupId: 'string',
|
|
13666
|
+
state: 'string',
|
|
13667
|
+
tags: { 'type': 'array', 'itemType': ListBandwidthackagesResponseBodyBandwidthPackagesTags },
|
|
13668
|
+
};
|
|
13669
|
+
}
|
|
13670
|
+
|
|
13671
|
+
constructor(map?: { [key: string]: any }) {
|
|
13672
|
+
super(map);
|
|
13673
|
+
}
|
|
13674
|
+
}
|
|
13675
|
+
|
|
13676
|
+
export class ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations extends $tea.Model {
|
|
13677
|
+
accelerateIpId?: string;
|
|
13678
|
+
endpointAddress?: string;
|
|
13679
|
+
endpointId?: string;
|
|
13680
|
+
endpointName?: string;
|
|
13681
|
+
endpointSubAddress?: string;
|
|
13682
|
+
endpointSubAddressType?: string;
|
|
13683
|
+
endpointType?: string;
|
|
13684
|
+
endpointZoneId?: string;
|
|
13685
|
+
ipAddress?: string;
|
|
13686
|
+
state?: string;
|
|
13687
|
+
static names(): { [key: string]: string } {
|
|
13688
|
+
return {
|
|
13689
|
+
accelerateIpId: 'AccelerateIpId',
|
|
13690
|
+
endpointAddress: 'EndpointAddress',
|
|
13691
|
+
endpointId: 'EndpointId',
|
|
13692
|
+
endpointName: 'EndpointName',
|
|
13693
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13694
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13695
|
+
endpointType: 'EndpointType',
|
|
13696
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13697
|
+
ipAddress: 'IpAddress',
|
|
13698
|
+
state: 'State',
|
|
13699
|
+
};
|
|
13700
|
+
}
|
|
13701
|
+
|
|
13702
|
+
static types(): { [key: string]: any } {
|
|
13703
|
+
return {
|
|
13704
|
+
accelerateIpId: 'string',
|
|
13705
|
+
endpointAddress: 'string',
|
|
13706
|
+
endpointId: 'string',
|
|
13707
|
+
endpointName: 'string',
|
|
13708
|
+
endpointSubAddress: 'string',
|
|
13709
|
+
endpointSubAddressType: 'string',
|
|
13710
|
+
endpointType: 'string',
|
|
13711
|
+
endpointZoneId: 'string',
|
|
13712
|
+
ipAddress: 'string',
|
|
13713
|
+
state: 'string',
|
|
13714
|
+
};
|
|
13715
|
+
}
|
|
13716
|
+
|
|
13717
|
+
constructor(map?: { [key: string]: any }) {
|
|
13718
|
+
super(map);
|
|
13719
|
+
}
|
|
13720
|
+
}
|
|
13721
|
+
|
|
13722
|
+
export class ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint extends $tea.Model {
|
|
13723
|
+
endPointId?: string;
|
|
13724
|
+
endpointAddress?: string;
|
|
13725
|
+
endpointGroupId?: string;
|
|
13726
|
+
endpointSubAddress?: string;
|
|
13727
|
+
endpointSubAddressType?: string;
|
|
13728
|
+
endpointType?: string;
|
|
13729
|
+
endpointZoneId?: string;
|
|
13730
|
+
name?: string;
|
|
13731
|
+
state?: string;
|
|
13732
|
+
static names(): { [key: string]: string } {
|
|
13733
|
+
return {
|
|
13734
|
+
endPointId: 'EndPointId',
|
|
13735
|
+
endpointAddress: 'EndpointAddress',
|
|
13736
|
+
endpointGroupId: 'EndpointGroupId',
|
|
13737
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13738
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13739
|
+
endpointType: 'EndpointType',
|
|
13740
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13741
|
+
name: 'Name',
|
|
13742
|
+
state: 'State',
|
|
13743
|
+
};
|
|
13744
|
+
}
|
|
13745
|
+
|
|
13746
|
+
static types(): { [key: string]: any } {
|
|
13747
|
+
return {
|
|
13748
|
+
endPointId: 'string',
|
|
13749
|
+
endpointAddress: 'string',
|
|
13750
|
+
endpointGroupId: 'string',
|
|
13751
|
+
endpointSubAddress: 'string',
|
|
13752
|
+
endpointSubAddressType: 'string',
|
|
13753
|
+
endpointType: 'string',
|
|
13754
|
+
endpointZoneId: 'string',
|
|
13755
|
+
name: 'string',
|
|
13756
|
+
state: 'string',
|
|
13757
|
+
};
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13760
|
+
constructor(map?: { [key: string]: any }) {
|
|
13761
|
+
super(map);
|
|
13762
|
+
}
|
|
13763
|
+
}
|
|
13764
|
+
|
|
13765
|
+
export class ListBasicAccelerateIpsResponseBodyAccelerateIps extends $tea.Model {
|
|
13766
|
+
accelerateIpAddress?: string;
|
|
13767
|
+
accelerateIpId?: string;
|
|
13768
|
+
acceleratorId?: string;
|
|
13769
|
+
endpoint?: ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint;
|
|
13770
|
+
ipSetId?: string;
|
|
13771
|
+
state?: string;
|
|
13772
|
+
static names(): { [key: string]: string } {
|
|
13773
|
+
return {
|
|
13774
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
13775
|
+
accelerateIpId: 'AccelerateIpId',
|
|
13776
|
+
acceleratorId: 'AcceleratorId',
|
|
13777
|
+
endpoint: 'Endpoint',
|
|
13778
|
+
ipSetId: 'IpSetId',
|
|
13779
|
+
state: 'State',
|
|
12770
13780
|
};
|
|
12771
13781
|
}
|
|
12772
13782
|
|
|
12773
13783
|
static types(): { [key: string]: any } {
|
|
12774
13784
|
return {
|
|
12775
|
-
|
|
12776
|
-
|
|
12777
|
-
|
|
12778
|
-
|
|
12779
|
-
|
|
12780
|
-
description: 'string',
|
|
12781
|
-
expiredTime: 'string',
|
|
12782
|
-
name: 'string',
|
|
12783
|
-
regionId: 'string',
|
|
12784
|
-
resourceGroupId: 'string',
|
|
13785
|
+
accelerateIpAddress: 'string',
|
|
13786
|
+
accelerateIpId: 'string',
|
|
13787
|
+
acceleratorId: 'string',
|
|
13788
|
+
endpoint: ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint,
|
|
13789
|
+
ipSetId: 'string',
|
|
12785
13790
|
state: 'string',
|
|
12786
|
-
tags: { 'type': 'array', 'itemType': ListBandwidthackagesResponseBodyBandwidthPackagesTags },
|
|
12787
13791
|
};
|
|
12788
13792
|
}
|
|
12789
13793
|
|
|
@@ -12947,6 +13951,52 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
12947
13951
|
}
|
|
12948
13952
|
}
|
|
12949
13953
|
|
|
13954
|
+
export class ListBasicEndpointsResponseBodyEndpoints extends $tea.Model {
|
|
13955
|
+
acceleratorId?: string;
|
|
13956
|
+
endpointAddress?: string;
|
|
13957
|
+
endpointGroupId?: string;
|
|
13958
|
+
endpointId?: string;
|
|
13959
|
+
endpointSubAddress?: string;
|
|
13960
|
+
endpointSubAddressType?: string;
|
|
13961
|
+
endpointType?: string;
|
|
13962
|
+
endpointZoneId?: string;
|
|
13963
|
+
name?: string;
|
|
13964
|
+
state?: string;
|
|
13965
|
+
static names(): { [key: string]: string } {
|
|
13966
|
+
return {
|
|
13967
|
+
acceleratorId: 'AcceleratorId',
|
|
13968
|
+
endpointAddress: 'EndpointAddress',
|
|
13969
|
+
endpointGroupId: 'EndpointGroupId',
|
|
13970
|
+
endpointId: 'EndpointId',
|
|
13971
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13972
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13973
|
+
endpointType: 'EndpointType',
|
|
13974
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13975
|
+
name: 'Name',
|
|
13976
|
+
state: 'State',
|
|
13977
|
+
};
|
|
13978
|
+
}
|
|
13979
|
+
|
|
13980
|
+
static types(): { [key: string]: any } {
|
|
13981
|
+
return {
|
|
13982
|
+
acceleratorId: 'string',
|
|
13983
|
+
endpointAddress: 'string',
|
|
13984
|
+
endpointGroupId: 'string',
|
|
13985
|
+
endpointId: 'string',
|
|
13986
|
+
endpointSubAddress: 'string',
|
|
13987
|
+
endpointSubAddressType: 'string',
|
|
13988
|
+
endpointType: 'string',
|
|
13989
|
+
endpointZoneId: 'string',
|
|
13990
|
+
name: 'string',
|
|
13991
|
+
state: 'string',
|
|
13992
|
+
};
|
|
13993
|
+
}
|
|
13994
|
+
|
|
13995
|
+
constructor(map?: { [key: string]: any }) {
|
|
13996
|
+
super(map);
|
|
13997
|
+
}
|
|
13998
|
+
}
|
|
13999
|
+
|
|
12950
14000
|
export class ListBusiRegionsResponseBodyRegions extends $tea.Model {
|
|
12951
14001
|
localName?: string;
|
|
12952
14002
|
regionId?: string;
|
|
@@ -15450,6 +16500,71 @@ export default class Client extends OpenApi {
|
|
|
15450
16500
|
return await this.createBasicAcceleratorWithOptions(request, runtime);
|
|
15451
16501
|
}
|
|
15452
16502
|
|
|
16503
|
+
async createBasicEndpointWithOptions(request: CreateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointResponse> {
|
|
16504
|
+
Util.validateModel(request);
|
|
16505
|
+
let query = { };
|
|
16506
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16507
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16508
|
+
}
|
|
16509
|
+
|
|
16510
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16511
|
+
query["ClientToken"] = request.clientToken;
|
|
16512
|
+
}
|
|
16513
|
+
|
|
16514
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
16515
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
16516
|
+
}
|
|
16517
|
+
|
|
16518
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
16519
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
16520
|
+
}
|
|
16521
|
+
|
|
16522
|
+
if (!Util.isUnset(request.endpointSubAddress)) {
|
|
16523
|
+
query["EndpointSubAddress"] = request.endpointSubAddress;
|
|
16524
|
+
}
|
|
16525
|
+
|
|
16526
|
+
if (!Util.isUnset(request.endpointSubAddressType)) {
|
|
16527
|
+
query["EndpointSubAddressType"] = request.endpointSubAddressType;
|
|
16528
|
+
}
|
|
16529
|
+
|
|
16530
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
16531
|
+
query["EndpointType"] = request.endpointType;
|
|
16532
|
+
}
|
|
16533
|
+
|
|
16534
|
+
if (!Util.isUnset(request.endpointZoneId)) {
|
|
16535
|
+
query["EndpointZoneId"] = request.endpointZoneId;
|
|
16536
|
+
}
|
|
16537
|
+
|
|
16538
|
+
if (!Util.isUnset(request.name)) {
|
|
16539
|
+
query["Name"] = request.name;
|
|
16540
|
+
}
|
|
16541
|
+
|
|
16542
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16543
|
+
query["RegionId"] = request.regionId;
|
|
16544
|
+
}
|
|
16545
|
+
|
|
16546
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16547
|
+
query: OpenApiUtil.query(query),
|
|
16548
|
+
});
|
|
16549
|
+
let params = new $OpenApi.Params({
|
|
16550
|
+
action: "CreateBasicEndpoint",
|
|
16551
|
+
version: "2019-11-20",
|
|
16552
|
+
protocol: "HTTPS",
|
|
16553
|
+
pathname: "/",
|
|
16554
|
+
method: "POST",
|
|
16555
|
+
authType: "AK",
|
|
16556
|
+
style: "RPC",
|
|
16557
|
+
reqBodyType: "formData",
|
|
16558
|
+
bodyType: "json",
|
|
16559
|
+
});
|
|
16560
|
+
return $tea.cast<CreateBasicEndpointResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointResponse({}));
|
|
16561
|
+
}
|
|
16562
|
+
|
|
16563
|
+
async createBasicEndpoint(request: CreateBasicEndpointRequest): Promise<CreateBasicEndpointResponse> {
|
|
16564
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16565
|
+
return await this.createBasicEndpointWithOptions(request, runtime);
|
|
16566
|
+
}
|
|
16567
|
+
|
|
15453
16568
|
async createBasicEndpointGroupWithOptions(request: CreateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointGroupResponse> {
|
|
15454
16569
|
Util.validateModel(request);
|
|
15455
16570
|
let query = { };
|
|
@@ -15511,6 +16626,51 @@ export default class Client extends OpenApi {
|
|
|
15511
16626
|
return await this.createBasicEndpointGroupWithOptions(request, runtime);
|
|
15512
16627
|
}
|
|
15513
16628
|
|
|
16629
|
+
async createBasicEndpointsWithOptions(request: CreateBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointsResponse> {
|
|
16630
|
+
Util.validateModel(request);
|
|
16631
|
+
let query = { };
|
|
16632
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16633
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16634
|
+
}
|
|
16635
|
+
|
|
16636
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16637
|
+
query["ClientToken"] = request.clientToken;
|
|
16638
|
+
}
|
|
16639
|
+
|
|
16640
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
16641
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
16642
|
+
}
|
|
16643
|
+
|
|
16644
|
+
if (!Util.isUnset(request.endpoints)) {
|
|
16645
|
+
query["Endpoints"] = request.endpoints;
|
|
16646
|
+
}
|
|
16647
|
+
|
|
16648
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16649
|
+
query["RegionId"] = request.regionId;
|
|
16650
|
+
}
|
|
16651
|
+
|
|
16652
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16653
|
+
query: OpenApiUtil.query(query),
|
|
16654
|
+
});
|
|
16655
|
+
let params = new $OpenApi.Params({
|
|
16656
|
+
action: "CreateBasicEndpoints",
|
|
16657
|
+
version: "2019-11-20",
|
|
16658
|
+
protocol: "HTTPS",
|
|
16659
|
+
pathname: "/",
|
|
16660
|
+
method: "POST",
|
|
16661
|
+
authType: "AK",
|
|
16662
|
+
style: "RPC",
|
|
16663
|
+
reqBodyType: "formData",
|
|
16664
|
+
bodyType: "json",
|
|
16665
|
+
});
|
|
16666
|
+
return $tea.cast<CreateBasicEndpointsResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointsResponse({}));
|
|
16667
|
+
}
|
|
16668
|
+
|
|
16669
|
+
async createBasicEndpoints(request: CreateBasicEndpointsRequest): Promise<CreateBasicEndpointsResponse> {
|
|
16670
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16671
|
+
return await this.createBasicEndpointsWithOptions(request, runtime);
|
|
16672
|
+
}
|
|
16673
|
+
|
|
15514
16674
|
async createBasicIpSetWithOptions(request: CreateBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicIpSetResponse> {
|
|
15515
16675
|
Util.validateModel(request);
|
|
15516
16676
|
let query = { };
|
|
@@ -17589,31 +18749,146 @@ export default class Client extends OpenApi {
|
|
|
17589
18749
|
return $tea.cast<DissociateAdditionalCertificatesFromListenerResponse>(await this.callApi(params, req, runtime), new DissociateAdditionalCertificatesFromListenerResponse({}));
|
|
17590
18750
|
}
|
|
17591
18751
|
|
|
17592
|
-
async dissociateAdditionalCertificatesFromListener(request: DissociateAdditionalCertificatesFromListenerRequest): Promise<DissociateAdditionalCertificatesFromListenerResponse> {
|
|
18752
|
+
async dissociateAdditionalCertificatesFromListener(request: DissociateAdditionalCertificatesFromListenerRequest): Promise<DissociateAdditionalCertificatesFromListenerResponse> {
|
|
18753
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18754
|
+
return await this.dissociateAdditionalCertificatesFromListenerWithOptions(request, runtime);
|
|
18755
|
+
}
|
|
18756
|
+
|
|
18757
|
+
async enableApplicationMonitorWithOptions(request: EnableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationMonitorResponse> {
|
|
18758
|
+
Util.validateModel(request);
|
|
18759
|
+
let query = { };
|
|
18760
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18761
|
+
query["ClientToken"] = request.clientToken;
|
|
18762
|
+
}
|
|
18763
|
+
|
|
18764
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18765
|
+
query["RegionId"] = request.regionId;
|
|
18766
|
+
}
|
|
18767
|
+
|
|
18768
|
+
if (!Util.isUnset(request.taskId)) {
|
|
18769
|
+
query["TaskId"] = request.taskId;
|
|
18770
|
+
}
|
|
18771
|
+
|
|
18772
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18773
|
+
query: OpenApiUtil.query(query),
|
|
18774
|
+
});
|
|
18775
|
+
let params = new $OpenApi.Params({
|
|
18776
|
+
action: "EnableApplicationMonitor",
|
|
18777
|
+
version: "2019-11-20",
|
|
18778
|
+
protocol: "HTTPS",
|
|
18779
|
+
pathname: "/",
|
|
18780
|
+
method: "POST",
|
|
18781
|
+
authType: "AK",
|
|
18782
|
+
style: "RPC",
|
|
18783
|
+
reqBodyType: "formData",
|
|
18784
|
+
bodyType: "json",
|
|
18785
|
+
});
|
|
18786
|
+
return $tea.cast<EnableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new EnableApplicationMonitorResponse({}));
|
|
18787
|
+
}
|
|
18788
|
+
|
|
18789
|
+
async enableApplicationMonitor(request: EnableApplicationMonitorRequest): Promise<EnableApplicationMonitorResponse> {
|
|
18790
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18791
|
+
return await this.enableApplicationMonitorWithOptions(request, runtime);
|
|
18792
|
+
}
|
|
18793
|
+
|
|
18794
|
+
async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
|
|
18795
|
+
Util.validateModel(request);
|
|
18796
|
+
let query = { };
|
|
18797
|
+
if (!Util.isUnset(request.aclId)) {
|
|
18798
|
+
query["AclId"] = request.aclId;
|
|
18799
|
+
}
|
|
18800
|
+
|
|
18801
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18802
|
+
query["RegionId"] = request.regionId;
|
|
18803
|
+
}
|
|
18804
|
+
|
|
18805
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18806
|
+
query: OpenApiUtil.query(query),
|
|
18807
|
+
});
|
|
18808
|
+
let params = new $OpenApi.Params({
|
|
18809
|
+
action: "GetAcl",
|
|
18810
|
+
version: "2019-11-20",
|
|
18811
|
+
protocol: "HTTPS",
|
|
18812
|
+
pathname: "/",
|
|
18813
|
+
method: "POST",
|
|
18814
|
+
authType: "AK",
|
|
18815
|
+
style: "RPC",
|
|
18816
|
+
reqBodyType: "formData",
|
|
18817
|
+
bodyType: "json",
|
|
18818
|
+
});
|
|
18819
|
+
return $tea.cast<GetAclResponse>(await this.callApi(params, req, runtime), new GetAclResponse({}));
|
|
18820
|
+
}
|
|
18821
|
+
|
|
18822
|
+
async getAcl(request: GetAclRequest): Promise<GetAclResponse> {
|
|
18823
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18824
|
+
return await this.getAclWithOptions(request, runtime);
|
|
18825
|
+
}
|
|
18826
|
+
|
|
18827
|
+
async getBasicAccelerateIpWithOptions(request: GetBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpResponse> {
|
|
18828
|
+
Util.validateModel(request);
|
|
18829
|
+
let query = { };
|
|
18830
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
18831
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
18832
|
+
}
|
|
18833
|
+
|
|
18834
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18835
|
+
query["ClientToken"] = request.clientToken;
|
|
18836
|
+
}
|
|
18837
|
+
|
|
18838
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18839
|
+
query["RegionId"] = request.regionId;
|
|
18840
|
+
}
|
|
18841
|
+
|
|
18842
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18843
|
+
query: OpenApiUtil.query(query),
|
|
18844
|
+
});
|
|
18845
|
+
let params = new $OpenApi.Params({
|
|
18846
|
+
action: "GetBasicAccelerateIp",
|
|
18847
|
+
version: "2019-11-20",
|
|
18848
|
+
protocol: "HTTPS",
|
|
18849
|
+
pathname: "/",
|
|
18850
|
+
method: "POST",
|
|
18851
|
+
authType: "AK",
|
|
18852
|
+
style: "RPC",
|
|
18853
|
+
reqBodyType: "formData",
|
|
18854
|
+
bodyType: "json",
|
|
18855
|
+
});
|
|
18856
|
+
return $tea.cast<GetBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpResponse({}));
|
|
18857
|
+
}
|
|
18858
|
+
|
|
18859
|
+
async getBasicAccelerateIp(request: GetBasicAccelerateIpRequest): Promise<GetBasicAccelerateIpResponse> {
|
|
17593
18860
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17594
|
-
return await this.
|
|
18861
|
+
return await this.getBasicAccelerateIpWithOptions(request, runtime);
|
|
17595
18862
|
}
|
|
17596
18863
|
|
|
17597
|
-
async
|
|
18864
|
+
async getBasicAccelerateIpEndpointRelationWithOptions(request: GetBasicAccelerateIpEndpointRelationRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
|
|
17598
18865
|
Util.validateModel(request);
|
|
17599
18866
|
let query = { };
|
|
18867
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
18868
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
18869
|
+
}
|
|
18870
|
+
|
|
18871
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
18872
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
18873
|
+
}
|
|
18874
|
+
|
|
17600
18875
|
if (!Util.isUnset(request.clientToken)) {
|
|
17601
18876
|
query["ClientToken"] = request.clientToken;
|
|
17602
18877
|
}
|
|
17603
18878
|
|
|
17604
|
-
if (!Util.isUnset(request.
|
|
17605
|
-
query["
|
|
18879
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
18880
|
+
query["EndpointId"] = request.endpointId;
|
|
17606
18881
|
}
|
|
17607
18882
|
|
|
17608
|
-
if (!Util.isUnset(request.
|
|
17609
|
-
query["
|
|
18883
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18884
|
+
query["RegionId"] = request.regionId;
|
|
17610
18885
|
}
|
|
17611
18886
|
|
|
17612
18887
|
let req = new $OpenApi.OpenApiRequest({
|
|
17613
18888
|
query: OpenApiUtil.query(query),
|
|
17614
18889
|
});
|
|
17615
18890
|
let params = new $OpenApi.Params({
|
|
17616
|
-
action: "
|
|
18891
|
+
action: "GetBasicAccelerateIpEndpointRelation",
|
|
17617
18892
|
version: "2019-11-20",
|
|
17618
18893
|
protocol: "HTTPS",
|
|
17619
18894
|
pathname: "/",
|
|
@@ -17623,19 +18898,23 @@ export default class Client extends OpenApi {
|
|
|
17623
18898
|
reqBodyType: "formData",
|
|
17624
18899
|
bodyType: "json",
|
|
17625
18900
|
});
|
|
17626
|
-
return $tea.cast<
|
|
18901
|
+
return $tea.cast<GetBasicAccelerateIpEndpointRelationResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpEndpointRelationResponse({}));
|
|
17627
18902
|
}
|
|
17628
18903
|
|
|
17629
|
-
async
|
|
18904
|
+
async getBasicAccelerateIpEndpointRelation(request: GetBasicAccelerateIpEndpointRelationRequest): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
|
|
17630
18905
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17631
|
-
return await this.
|
|
18906
|
+
return await this.getBasicAccelerateIpEndpointRelationWithOptions(request, runtime);
|
|
17632
18907
|
}
|
|
17633
18908
|
|
|
17634
|
-
async
|
|
18909
|
+
async getBasicAccelerateIpIdleCountWithOptions(request: GetBasicAccelerateIpIdleCountRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpIdleCountResponse> {
|
|
17635
18910
|
Util.validateModel(request);
|
|
17636
18911
|
let query = { };
|
|
17637
|
-
if (!Util.isUnset(request.
|
|
17638
|
-
query["
|
|
18912
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18913
|
+
query["ClientToken"] = request.clientToken;
|
|
18914
|
+
}
|
|
18915
|
+
|
|
18916
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
18917
|
+
query["IpSetId"] = request.ipSetId;
|
|
17639
18918
|
}
|
|
17640
18919
|
|
|
17641
18920
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -17646,7 +18925,7 @@ export default class Client extends OpenApi {
|
|
|
17646
18925
|
query: OpenApiUtil.query(query),
|
|
17647
18926
|
});
|
|
17648
18927
|
let params = new $OpenApi.Params({
|
|
17649
|
-
action: "
|
|
18928
|
+
action: "GetBasicAccelerateIpIdleCount",
|
|
17650
18929
|
version: "2019-11-20",
|
|
17651
18930
|
protocol: "HTTPS",
|
|
17652
18931
|
pathname: "/",
|
|
@@ -17656,23 +18935,19 @@ export default class Client extends OpenApi {
|
|
|
17656
18935
|
reqBodyType: "formData",
|
|
17657
18936
|
bodyType: "json",
|
|
17658
18937
|
});
|
|
17659
|
-
return $tea.cast<
|
|
18938
|
+
return $tea.cast<GetBasicAccelerateIpIdleCountResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpIdleCountResponse({}));
|
|
17660
18939
|
}
|
|
17661
18940
|
|
|
17662
|
-
async
|
|
18941
|
+
async getBasicAccelerateIpIdleCount(request: GetBasicAccelerateIpIdleCountRequest): Promise<GetBasicAccelerateIpIdleCountResponse> {
|
|
17663
18942
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17664
|
-
return await this.
|
|
18943
|
+
return await this.getBasicAccelerateIpIdleCountWithOptions(request, runtime);
|
|
17665
18944
|
}
|
|
17666
18945
|
|
|
17667
|
-
async
|
|
18946
|
+
async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
|
|
17668
18947
|
Util.validateModel(request);
|
|
17669
18948
|
let query = { };
|
|
17670
|
-
if (!Util.isUnset(request.
|
|
17671
|
-
query["
|
|
17672
|
-
}
|
|
17673
|
-
|
|
17674
|
-
if (!Util.isUnset(request.clientToken)) {
|
|
17675
|
-
query["ClientToken"] = request.clientToken;
|
|
18949
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
18950
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
17676
18951
|
}
|
|
17677
18952
|
|
|
17678
18953
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -17683,7 +18958,7 @@ export default class Client extends OpenApi {
|
|
|
17683
18958
|
query: OpenApiUtil.query(query),
|
|
17684
18959
|
});
|
|
17685
18960
|
let params = new $OpenApi.Params({
|
|
17686
|
-
action: "
|
|
18961
|
+
action: "GetBasicAccelerator",
|
|
17687
18962
|
version: "2019-11-20",
|
|
17688
18963
|
protocol: "HTTPS",
|
|
17689
18964
|
pathname: "/",
|
|
@@ -17693,19 +18968,23 @@ export default class Client extends OpenApi {
|
|
|
17693
18968
|
reqBodyType: "formData",
|
|
17694
18969
|
bodyType: "json",
|
|
17695
18970
|
});
|
|
17696
|
-
return $tea.cast<
|
|
18971
|
+
return $tea.cast<GetBasicAcceleratorResponse>(await this.callApi(params, req, runtime), new GetBasicAcceleratorResponse({}));
|
|
17697
18972
|
}
|
|
17698
18973
|
|
|
17699
|
-
async
|
|
18974
|
+
async getBasicAccelerator(request: GetBasicAcceleratorRequest): Promise<GetBasicAcceleratorResponse> {
|
|
17700
18975
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17701
|
-
return await this.
|
|
18976
|
+
return await this.getBasicAcceleratorWithOptions(request, runtime);
|
|
17702
18977
|
}
|
|
17703
18978
|
|
|
17704
|
-
async
|
|
18979
|
+
async getBasicEndpointWithOptions(request: GetBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointResponse> {
|
|
17705
18980
|
Util.validateModel(request);
|
|
17706
18981
|
let query = { };
|
|
17707
|
-
if (!Util.isUnset(request.
|
|
17708
|
-
query["
|
|
18982
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18983
|
+
query["ClientToken"] = request.clientToken;
|
|
18984
|
+
}
|
|
18985
|
+
|
|
18986
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
18987
|
+
query["EndpointId"] = request.endpointId;
|
|
17709
18988
|
}
|
|
17710
18989
|
|
|
17711
18990
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -17716,7 +18995,7 @@ export default class Client extends OpenApi {
|
|
|
17716
18995
|
query: OpenApiUtil.query(query),
|
|
17717
18996
|
});
|
|
17718
18997
|
let params = new $OpenApi.Params({
|
|
17719
|
-
action: "
|
|
18998
|
+
action: "GetBasicEndpoint",
|
|
17720
18999
|
version: "2019-11-20",
|
|
17721
19000
|
protocol: "HTTPS",
|
|
17722
19001
|
pathname: "/",
|
|
@@ -17726,12 +19005,12 @@ export default class Client extends OpenApi {
|
|
|
17726
19005
|
reqBodyType: "formData",
|
|
17727
19006
|
bodyType: "json",
|
|
17728
19007
|
});
|
|
17729
|
-
return $tea.cast<
|
|
19008
|
+
return $tea.cast<GetBasicEndpointResponse>(await this.callApi(params, req, runtime), new GetBasicEndpointResponse({}));
|
|
17730
19009
|
}
|
|
17731
19010
|
|
|
17732
|
-
async
|
|
19011
|
+
async getBasicEndpoint(request: GetBasicEndpointRequest): Promise<GetBasicEndpointResponse> {
|
|
17733
19012
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17734
|
-
return await this.
|
|
19013
|
+
return await this.getBasicEndpointWithOptions(request, runtime);
|
|
17735
19014
|
}
|
|
17736
19015
|
|
|
17737
19016
|
async getBasicEndpointGroupWithOptions(request: GetBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointGroupResponse> {
|
|
@@ -18287,6 +19566,112 @@ export default class Client extends OpenApi {
|
|
|
18287
19566
|
return await this.listBandwidthackagesWithOptions(request, runtime);
|
|
18288
19567
|
}
|
|
18289
19568
|
|
|
19569
|
+
async listBasicAccelerateIpEndpointRelationsWithOptions(request: ListBasicAccelerateIpEndpointRelationsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
|
|
19570
|
+
Util.validateModel(request);
|
|
19571
|
+
let query = { };
|
|
19572
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
19573
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
19574
|
+
}
|
|
19575
|
+
|
|
19576
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
19577
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
19578
|
+
}
|
|
19579
|
+
|
|
19580
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19581
|
+
query["ClientToken"] = request.clientToken;
|
|
19582
|
+
}
|
|
19583
|
+
|
|
19584
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
19585
|
+
query["EndpointId"] = request.endpointId;
|
|
19586
|
+
}
|
|
19587
|
+
|
|
19588
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19589
|
+
query["MaxResults"] = request.maxResults;
|
|
19590
|
+
}
|
|
19591
|
+
|
|
19592
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19593
|
+
query["NextToken"] = request.nextToken;
|
|
19594
|
+
}
|
|
19595
|
+
|
|
19596
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19597
|
+
query["RegionId"] = request.regionId;
|
|
19598
|
+
}
|
|
19599
|
+
|
|
19600
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19601
|
+
query: OpenApiUtil.query(query),
|
|
19602
|
+
});
|
|
19603
|
+
let params = new $OpenApi.Params({
|
|
19604
|
+
action: "ListBasicAccelerateIpEndpointRelations",
|
|
19605
|
+
version: "2019-11-20",
|
|
19606
|
+
protocol: "HTTPS",
|
|
19607
|
+
pathname: "/",
|
|
19608
|
+
method: "POST",
|
|
19609
|
+
authType: "AK",
|
|
19610
|
+
style: "RPC",
|
|
19611
|
+
reqBodyType: "formData",
|
|
19612
|
+
bodyType: "json",
|
|
19613
|
+
});
|
|
19614
|
+
return $tea.cast<ListBasicAccelerateIpEndpointRelationsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpEndpointRelationsResponse({}));
|
|
19615
|
+
}
|
|
19616
|
+
|
|
19617
|
+
async listBasicAccelerateIpEndpointRelations(request: ListBasicAccelerateIpEndpointRelationsRequest): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
|
|
19618
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19619
|
+
return await this.listBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
|
|
19620
|
+
}
|
|
19621
|
+
|
|
19622
|
+
async listBasicAccelerateIpsWithOptions(request: ListBasicAccelerateIpsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpsResponse> {
|
|
19623
|
+
Util.validateModel(request);
|
|
19624
|
+
let query = { };
|
|
19625
|
+
if (!Util.isUnset(request.accelerateIpAddress)) {
|
|
19626
|
+
query["AccelerateIpAddress"] = request.accelerateIpAddress;
|
|
19627
|
+
}
|
|
19628
|
+
|
|
19629
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
19630
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
19631
|
+
}
|
|
19632
|
+
|
|
19633
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19634
|
+
query["ClientToken"] = request.clientToken;
|
|
19635
|
+
}
|
|
19636
|
+
|
|
19637
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
19638
|
+
query["IpSetId"] = request.ipSetId;
|
|
19639
|
+
}
|
|
19640
|
+
|
|
19641
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19642
|
+
query["MaxResults"] = request.maxResults;
|
|
19643
|
+
}
|
|
19644
|
+
|
|
19645
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19646
|
+
query["NextToken"] = request.nextToken;
|
|
19647
|
+
}
|
|
19648
|
+
|
|
19649
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19650
|
+
query["RegionId"] = request.regionId;
|
|
19651
|
+
}
|
|
19652
|
+
|
|
19653
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19654
|
+
query: OpenApiUtil.query(query),
|
|
19655
|
+
});
|
|
19656
|
+
let params = new $OpenApi.Params({
|
|
19657
|
+
action: "ListBasicAccelerateIps",
|
|
19658
|
+
version: "2019-11-20",
|
|
19659
|
+
protocol: "HTTPS",
|
|
19660
|
+
pathname: "/",
|
|
19661
|
+
method: "POST",
|
|
19662
|
+
authType: "AK",
|
|
19663
|
+
style: "RPC",
|
|
19664
|
+
reqBodyType: "formData",
|
|
19665
|
+
bodyType: "json",
|
|
19666
|
+
});
|
|
19667
|
+
return $tea.cast<ListBasicAccelerateIpsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpsResponse({}));
|
|
19668
|
+
}
|
|
19669
|
+
|
|
19670
|
+
async listBasicAccelerateIps(request: ListBasicAccelerateIpsRequest): Promise<ListBasicAccelerateIpsResponse> {
|
|
19671
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19672
|
+
return await this.listBasicAccelerateIpsWithOptions(request, runtime);
|
|
19673
|
+
}
|
|
19674
|
+
|
|
18290
19675
|
async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
|
|
18291
19676
|
Util.validateModel(request);
|
|
18292
19677
|
let query = { };
|
|
@@ -18340,6 +19725,63 @@ export default class Client extends OpenApi {
|
|
|
18340
19725
|
return await this.listBasicAcceleratorsWithOptions(request, runtime);
|
|
18341
19726
|
}
|
|
18342
19727
|
|
|
19728
|
+
async listBasicEndpointsWithOptions(request: ListBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicEndpointsResponse> {
|
|
19729
|
+
Util.validateModel(request);
|
|
19730
|
+
let query = { };
|
|
19731
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19732
|
+
query["ClientToken"] = request.clientToken;
|
|
19733
|
+
}
|
|
19734
|
+
|
|
19735
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
19736
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
19737
|
+
}
|
|
19738
|
+
|
|
19739
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
19740
|
+
query["EndpointId"] = request.endpointId;
|
|
19741
|
+
}
|
|
19742
|
+
|
|
19743
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
19744
|
+
query["EndpointType"] = request.endpointType;
|
|
19745
|
+
}
|
|
19746
|
+
|
|
19747
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19748
|
+
query["MaxResults"] = request.maxResults;
|
|
19749
|
+
}
|
|
19750
|
+
|
|
19751
|
+
if (!Util.isUnset(request.name)) {
|
|
19752
|
+
query["Name"] = request.name;
|
|
19753
|
+
}
|
|
19754
|
+
|
|
19755
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19756
|
+
query["NextToken"] = request.nextToken;
|
|
19757
|
+
}
|
|
19758
|
+
|
|
19759
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19760
|
+
query["RegionId"] = request.regionId;
|
|
19761
|
+
}
|
|
19762
|
+
|
|
19763
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19764
|
+
query: OpenApiUtil.query(query),
|
|
19765
|
+
});
|
|
19766
|
+
let params = new $OpenApi.Params({
|
|
19767
|
+
action: "ListBasicEndpoints",
|
|
19768
|
+
version: "2019-11-20",
|
|
19769
|
+
protocol: "HTTPS",
|
|
19770
|
+
pathname: "/",
|
|
19771
|
+
method: "POST",
|
|
19772
|
+
authType: "AK",
|
|
19773
|
+
style: "RPC",
|
|
19774
|
+
reqBodyType: "formData",
|
|
19775
|
+
bodyType: "json",
|
|
19776
|
+
});
|
|
19777
|
+
return $tea.cast<ListBasicEndpointsResponse>(await this.callApi(params, req, runtime), new ListBasicEndpointsResponse({}));
|
|
19778
|
+
}
|
|
19779
|
+
|
|
19780
|
+
async listBasicEndpoints(request: ListBasicEndpointsRequest): Promise<ListBasicEndpointsResponse> {
|
|
19781
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19782
|
+
return await this.listBasicEndpointsWithOptions(request, runtime);
|
|
19783
|
+
}
|
|
19784
|
+
|
|
18343
19785
|
async listBusiRegionsWithOptions(request: ListBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListBusiRegionsResponse> {
|
|
18344
19786
|
Util.validateModel(request);
|
|
18345
19787
|
let query = { };
|
|
@@ -19553,6 +20995,51 @@ export default class Client extends OpenApi {
|
|
|
19553
20995
|
return await this.updateBasicAcceleratorWithOptions(request, runtime);
|
|
19554
20996
|
}
|
|
19555
20997
|
|
|
20998
|
+
async updateBasicEndpointWithOptions(request: UpdateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointResponse> {
|
|
20999
|
+
Util.validateModel(request);
|
|
21000
|
+
let query = { };
|
|
21001
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
21002
|
+
query["ClientToken"] = request.clientToken;
|
|
21003
|
+
}
|
|
21004
|
+
|
|
21005
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
21006
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
21007
|
+
}
|
|
21008
|
+
|
|
21009
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
21010
|
+
query["EndpointId"] = request.endpointId;
|
|
21011
|
+
}
|
|
21012
|
+
|
|
21013
|
+
if (!Util.isUnset(request.name)) {
|
|
21014
|
+
query["Name"] = request.name;
|
|
21015
|
+
}
|
|
21016
|
+
|
|
21017
|
+
if (!Util.isUnset(request.regionId)) {
|
|
21018
|
+
query["RegionId"] = request.regionId;
|
|
21019
|
+
}
|
|
21020
|
+
|
|
21021
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21022
|
+
query: OpenApiUtil.query(query),
|
|
21023
|
+
});
|
|
21024
|
+
let params = new $OpenApi.Params({
|
|
21025
|
+
action: "UpdateBasicEndpoint",
|
|
21026
|
+
version: "2019-11-20",
|
|
21027
|
+
protocol: "HTTPS",
|
|
21028
|
+
pathname: "/",
|
|
21029
|
+
method: "POST",
|
|
21030
|
+
authType: "AK",
|
|
21031
|
+
style: "RPC",
|
|
21032
|
+
reqBodyType: "formData",
|
|
21033
|
+
bodyType: "json",
|
|
21034
|
+
});
|
|
21035
|
+
return $tea.cast<UpdateBasicEndpointResponse>(await this.callApi(params, req, runtime), new UpdateBasicEndpointResponse({}));
|
|
21036
|
+
}
|
|
21037
|
+
|
|
21038
|
+
async updateBasicEndpoint(request: UpdateBasicEndpointRequest): Promise<UpdateBasicEndpointResponse> {
|
|
21039
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21040
|
+
return await this.updateBasicEndpointWithOptions(request, runtime);
|
|
21041
|
+
}
|
|
21042
|
+
|
|
19556
21043
|
async updateBasicEndpointGroupWithOptions(request: UpdateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointGroupResponse> {
|
|
19557
21044
|
Util.validateModel(request);
|
|
19558
21045
|
let query = { };
|