@alicloud/ga20191120 1.0.15 → 1.0.17

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/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 GetBasicAcceleratorRequest extends $tea.Model {
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,50 @@ export class GetBasicAcceleratorRequest extends $tea.Model {
6006
6192
  }
6007
6193
  }
6008
6194
 
6009
- export class GetBasicAcceleratorResponseBody extends $tea.Model {
6195
+ export class GetBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
6196
+ accelerateIpId?: string;
6010
6197
  acceleratorId?: string;
6011
- bandwidthBillingType?: string;
6012
- basicBandwidthPackage?: GetBasicAcceleratorResponseBodyBasicBandwidthPackage;
6013
- basicEndpointGroupId?: string;
6014
- basicIpSetId?: string;
6015
- cenId?: string;
6016
- createTime?: number;
6017
- crossDomainBandwidthPackage?: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage;
6018
- crossPrivateState?: string;
6019
- description?: string;
6020
- expiredTime?: number;
6021
- instanceChargeType?: string;
6022
- name?: string;
6023
- regionId?: string;
6198
+ endpointAddress?: string;
6199
+ endpointId?: string;
6200
+ endpointName?: string;
6201
+ endpointSubAddress?: string;
6202
+ endpointSubAddressType?: string;
6203
+ endpointType?: string;
6204
+ endpointZoneId?: string;
6205
+ ipAddress?: string;
6024
6206
  requestId?: string;
6025
- resourceGroupId?: string;
6026
6207
  state?: string;
6027
- tags?: GetBasicAcceleratorResponseBodyTags[];
6028
6208
  static names(): { [key: string]: string } {
6029
6209
  return {
6210
+ accelerateIpId: 'AccelerateIpId',
6030
6211
  acceleratorId: 'AcceleratorId',
6031
- bandwidthBillingType: 'BandwidthBillingType',
6032
- basicBandwidthPackage: 'BasicBandwidthPackage',
6033
- basicEndpointGroupId: 'BasicEndpointGroupId',
6034
- basicIpSetId: 'BasicIpSetId',
6035
- cenId: 'CenId',
6036
- createTime: 'CreateTime',
6037
- crossDomainBandwidthPackage: 'CrossDomainBandwidthPackage',
6038
- crossPrivateState: 'CrossPrivateState',
6039
- description: 'Description',
6040
- expiredTime: 'ExpiredTime',
6041
- instanceChargeType: 'InstanceChargeType',
6042
- name: 'Name',
6043
- regionId: 'RegionId',
6212
+ endpointAddress: 'EndpointAddress',
6213
+ endpointId: 'EndpointId',
6214
+ endpointName: 'EndpointName',
6215
+ endpointSubAddress: 'EndpointSubAddress',
6216
+ endpointSubAddressType: 'EndpointSubAddressType',
6217
+ endpointType: 'EndpointType',
6218
+ endpointZoneId: 'EndpointZoneId',
6219
+ ipAddress: 'IpAddress',
6044
6220
  requestId: 'RequestId',
6045
- resourceGroupId: 'ResourceGroupId',
6046
6221
  state: 'State',
6047
- tags: 'Tags',
6048
6222
  };
6049
6223
  }
6050
6224
 
6051
6225
  static types(): { [key: string]: any } {
6052
6226
  return {
6227
+ accelerateIpId: 'string',
6053
6228
  acceleratorId: 'string',
6054
- bandwidthBillingType: 'string',
6055
- basicBandwidthPackage: GetBasicAcceleratorResponseBodyBasicBandwidthPackage,
6056
- basicEndpointGroupId: 'string',
6057
- basicIpSetId: 'string',
6058
- cenId: 'string',
6059
- createTime: 'number',
6060
- crossDomainBandwidthPackage: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage,
6061
- crossPrivateState: 'string',
6062
- description: 'string',
6063
- expiredTime: 'number',
6064
- instanceChargeType: 'string',
6065
- name: 'string',
6066
- regionId: 'string',
6229
+ endpointAddress: 'string',
6230
+ endpointId: 'string',
6231
+ endpointName: 'string',
6232
+ endpointSubAddress: 'string',
6233
+ endpointSubAddressType: 'string',
6234
+ endpointType: 'string',
6235
+ endpointZoneId: 'string',
6236
+ ipAddress: 'string',
6067
6237
  requestId: 'string',
6068
- resourceGroupId: 'string',
6069
6238
  state: 'string',
6070
- tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
6071
6239
  };
6072
6240
  }
6073
6241
 
@@ -6076,10 +6244,10 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
6076
6244
  }
6077
6245
  }
6078
6246
 
6079
- export class GetBasicAcceleratorResponse extends $tea.Model {
6247
+ export class GetBasicAccelerateIpEndpointRelationResponse extends $tea.Model {
6080
6248
  headers: { [key: string]: string };
6081
6249
  statusCode: number;
6082
- body: GetBasicAcceleratorResponseBody;
6250
+ body: GetBasicAccelerateIpEndpointRelationResponseBody;
6083
6251
  static names(): { [key: string]: string } {
6084
6252
  return {
6085
6253
  headers: 'headers',
@@ -6092,7 +6260,7 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
6092
6260
  return {
6093
6261
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
6094
6262
  statusCode: 'number',
6095
- body: GetBasicAcceleratorResponseBody,
6263
+ body: GetBasicAccelerateIpEndpointRelationResponseBody,
6096
6264
  };
6097
6265
  }
6098
6266
 
@@ -6101,14 +6269,14 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
6101
6269
  }
6102
6270
  }
6103
6271
 
6104
- export class GetBasicEndpointGroupRequest extends $tea.Model {
6272
+ export class GetBasicAccelerateIpIdleCountRequest extends $tea.Model {
6105
6273
  clientToken?: string;
6106
- endpointGroupId?: string;
6274
+ ipSetId?: string;
6107
6275
  regionId?: string;
6108
6276
  static names(): { [key: string]: string } {
6109
6277
  return {
6110
6278
  clientToken: 'ClientToken',
6111
- endpointGroupId: 'EndpointGroupId',
6279
+ ipSetId: 'IpSetId',
6112
6280
  regionId: 'RegionId',
6113
6281
  };
6114
6282
  }
@@ -6116,7 +6284,7 @@ export class GetBasicEndpointGroupRequest extends $tea.Model {
6116
6284
  static types(): { [key: string]: any } {
6117
6285
  return {
6118
6286
  clientToken: 'string',
6119
- endpointGroupId: 'string',
6287
+ ipSetId: 'string',
6120
6288
  regionId: 'string',
6121
6289
  };
6122
6290
  }
@@ -6126,23 +6294,311 @@ export class GetBasicEndpointGroupRequest extends $tea.Model {
6126
6294
  }
6127
6295
  }
6128
6296
 
6129
- export class GetBasicEndpointGroupResponseBody extends $tea.Model {
6130
- acceleratorId?: string;
6131
- description?: string;
6132
- endpointAddress?: string;
6133
- endpointGroupId?: string;
6134
- endpointGroupRegion?: string;
6135
- endpointSubAddress?: string;
6136
- endpointType?: string;
6137
- name?: string;
6297
+ export class GetBasicAccelerateIpIdleCountResponseBody extends $tea.Model {
6138
6298
  requestId?: string;
6139
- state?: string;
6299
+ totalCount?: number;
6140
6300
  static names(): { [key: string]: string } {
6141
6301
  return {
6142
- acceleratorId: 'AcceleratorId',
6143
- description: 'Description',
6144
- endpointAddress: 'EndpointAddress',
6145
- endpointGroupId: 'EndpointGroupId',
6302
+ requestId: 'RequestId',
6303
+ totalCount: 'TotalCount',
6304
+ };
6305
+ }
6306
+
6307
+ static types(): { [key: string]: any } {
6308
+ return {
6309
+ requestId: 'string',
6310
+ totalCount: 'number',
6311
+ };
6312
+ }
6313
+
6314
+ constructor(map?: { [key: string]: any }) {
6315
+ super(map);
6316
+ }
6317
+ }
6318
+
6319
+ export class GetBasicAccelerateIpIdleCountResponse extends $tea.Model {
6320
+ headers: { [key: string]: string };
6321
+ statusCode: number;
6322
+ body: GetBasicAccelerateIpIdleCountResponseBody;
6323
+ static names(): { [key: string]: string } {
6324
+ return {
6325
+ headers: 'headers',
6326
+ statusCode: 'statusCode',
6327
+ body: 'body',
6328
+ };
6329
+ }
6330
+
6331
+ static types(): { [key: string]: any } {
6332
+ return {
6333
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
6334
+ statusCode: 'number',
6335
+ body: GetBasicAccelerateIpIdleCountResponseBody,
6336
+ };
6337
+ }
6338
+
6339
+ constructor(map?: { [key: string]: any }) {
6340
+ super(map);
6341
+ }
6342
+ }
6343
+
6344
+ export class GetBasicAcceleratorRequest extends $tea.Model {
6345
+ acceleratorId?: string;
6346
+ regionId?: string;
6347
+ static names(): { [key: string]: string } {
6348
+ return {
6349
+ acceleratorId: 'AcceleratorId',
6350
+ regionId: 'RegionId',
6351
+ };
6352
+ }
6353
+
6354
+ static types(): { [key: string]: any } {
6355
+ return {
6356
+ acceleratorId: 'string',
6357
+ regionId: 'string',
6358
+ };
6359
+ }
6360
+
6361
+ constructor(map?: { [key: string]: any }) {
6362
+ super(map);
6363
+ }
6364
+ }
6365
+
6366
+ export class GetBasicAcceleratorResponseBody extends $tea.Model {
6367
+ acceleratorId?: string;
6368
+ bandwidthBillingType?: string;
6369
+ basicBandwidthPackage?: GetBasicAcceleratorResponseBodyBasicBandwidthPackage;
6370
+ basicEndpointGroupId?: string;
6371
+ basicIpSetId?: string;
6372
+ cenId?: string;
6373
+ createTime?: number;
6374
+ crossDomainBandwidthPackage?: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage;
6375
+ crossPrivateState?: string;
6376
+ description?: string;
6377
+ expiredTime?: number;
6378
+ instanceChargeType?: string;
6379
+ name?: string;
6380
+ regionId?: string;
6381
+ requestId?: string;
6382
+ resourceGroupId?: string;
6383
+ state?: string;
6384
+ tags?: GetBasicAcceleratorResponseBodyTags[];
6385
+ static names(): { [key: string]: string } {
6386
+ return {
6387
+ acceleratorId: 'AcceleratorId',
6388
+ bandwidthBillingType: 'BandwidthBillingType',
6389
+ basicBandwidthPackage: 'BasicBandwidthPackage',
6390
+ basicEndpointGroupId: 'BasicEndpointGroupId',
6391
+ basicIpSetId: 'BasicIpSetId',
6392
+ cenId: 'CenId',
6393
+ createTime: 'CreateTime',
6394
+ crossDomainBandwidthPackage: 'CrossDomainBandwidthPackage',
6395
+ crossPrivateState: 'CrossPrivateState',
6396
+ description: 'Description',
6397
+ expiredTime: 'ExpiredTime',
6398
+ instanceChargeType: 'InstanceChargeType',
6399
+ name: 'Name',
6400
+ regionId: 'RegionId',
6401
+ requestId: 'RequestId',
6402
+ resourceGroupId: 'ResourceGroupId',
6403
+ state: 'State',
6404
+ tags: 'Tags',
6405
+ };
6406
+ }
6407
+
6408
+ static types(): { [key: string]: any } {
6409
+ return {
6410
+ acceleratorId: 'string',
6411
+ bandwidthBillingType: 'string',
6412
+ basicBandwidthPackage: GetBasicAcceleratorResponseBodyBasicBandwidthPackage,
6413
+ basicEndpointGroupId: 'string',
6414
+ basicIpSetId: 'string',
6415
+ cenId: 'string',
6416
+ createTime: 'number',
6417
+ crossDomainBandwidthPackage: GetBasicAcceleratorResponseBodyCrossDomainBandwidthPackage,
6418
+ crossPrivateState: 'string',
6419
+ description: 'string',
6420
+ expiredTime: 'number',
6421
+ instanceChargeType: 'string',
6422
+ name: 'string',
6423
+ regionId: 'string',
6424
+ requestId: 'string',
6425
+ resourceGroupId: 'string',
6426
+ state: 'string',
6427
+ tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
6428
+ };
6429
+ }
6430
+
6431
+ constructor(map?: { [key: string]: any }) {
6432
+ super(map);
6433
+ }
6434
+ }
6435
+
6436
+ export class GetBasicAcceleratorResponse extends $tea.Model {
6437
+ headers: { [key: string]: string };
6438
+ statusCode: number;
6439
+ body: GetBasicAcceleratorResponseBody;
6440
+ static names(): { [key: string]: string } {
6441
+ return {
6442
+ headers: 'headers',
6443
+ statusCode: 'statusCode',
6444
+ body: 'body',
6445
+ };
6446
+ }
6447
+
6448
+ static types(): { [key: string]: any } {
6449
+ return {
6450
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
6451
+ statusCode: 'number',
6452
+ body: GetBasicAcceleratorResponseBody,
6453
+ };
6454
+ }
6455
+
6456
+ constructor(map?: { [key: string]: any }) {
6457
+ super(map);
6458
+ }
6459
+ }
6460
+
6461
+ export class GetBasicEndpointRequest extends $tea.Model {
6462
+ clientToken?: string;
6463
+ endpointId?: string;
6464
+ regionId?: string;
6465
+ static names(): { [key: string]: string } {
6466
+ return {
6467
+ clientToken: 'ClientToken',
6468
+ endpointId: 'EndpointId',
6469
+ regionId: 'RegionId',
6470
+ };
6471
+ }
6472
+
6473
+ static types(): { [key: string]: any } {
6474
+ return {
6475
+ clientToken: 'string',
6476
+ endpointId: 'string',
6477
+ regionId: 'string',
6478
+ };
6479
+ }
6480
+
6481
+ constructor(map?: { [key: string]: any }) {
6482
+ super(map);
6483
+ }
6484
+ }
6485
+
6486
+ export class GetBasicEndpointResponseBody extends $tea.Model {
6487
+ acceleratorId?: string;
6488
+ endPointId?: string;
6489
+ endpointAddress?: string;
6490
+ endpointGroupId?: string;
6491
+ endpointSubAddress?: string;
6492
+ endpointSubAddressType?: string;
6493
+ endpointType?: string;
6494
+ endpointZoneId?: string;
6495
+ name?: string;
6496
+ requestId?: string;
6497
+ state?: string;
6498
+ static names(): { [key: string]: string } {
6499
+ return {
6500
+ acceleratorId: 'AcceleratorId',
6501
+ endPointId: 'EndPointId',
6502
+ endpointAddress: 'EndpointAddress',
6503
+ endpointGroupId: 'EndpointGroupId',
6504
+ endpointSubAddress: 'EndpointSubAddress',
6505
+ endpointSubAddressType: 'EndpointSubAddressType',
6506
+ endpointType: 'EndpointType',
6507
+ endpointZoneId: 'EndpointZoneId',
6508
+ name: 'Name',
6509
+ requestId: 'RequestId',
6510
+ state: 'State',
6511
+ };
6512
+ }
6513
+
6514
+ static types(): { [key: string]: any } {
6515
+ return {
6516
+ acceleratorId: 'string',
6517
+ endPointId: 'string',
6518
+ endpointAddress: 'string',
6519
+ endpointGroupId: 'string',
6520
+ endpointSubAddress: 'string',
6521
+ endpointSubAddressType: 'string',
6522
+ endpointType: 'string',
6523
+ endpointZoneId: 'string',
6524
+ name: 'string',
6525
+ requestId: 'string',
6526
+ state: 'string',
6527
+ };
6528
+ }
6529
+
6530
+ constructor(map?: { [key: string]: any }) {
6531
+ super(map);
6532
+ }
6533
+ }
6534
+
6535
+ export class GetBasicEndpointResponse extends $tea.Model {
6536
+ headers: { [key: string]: string };
6537
+ statusCode: number;
6538
+ body: GetBasicEndpointResponseBody;
6539
+ static names(): { [key: string]: string } {
6540
+ return {
6541
+ headers: 'headers',
6542
+ statusCode: 'statusCode',
6543
+ body: 'body',
6544
+ };
6545
+ }
6546
+
6547
+ static types(): { [key: string]: any } {
6548
+ return {
6549
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
6550
+ statusCode: 'number',
6551
+ body: GetBasicEndpointResponseBody,
6552
+ };
6553
+ }
6554
+
6555
+ constructor(map?: { [key: string]: any }) {
6556
+ super(map);
6557
+ }
6558
+ }
6559
+
6560
+ export class GetBasicEndpointGroupRequest extends $tea.Model {
6561
+ clientToken?: string;
6562
+ endpointGroupId?: string;
6563
+ regionId?: string;
6564
+ static names(): { [key: string]: string } {
6565
+ return {
6566
+ clientToken: 'ClientToken',
6567
+ endpointGroupId: 'EndpointGroupId',
6568
+ regionId: 'RegionId',
6569
+ };
6570
+ }
6571
+
6572
+ static types(): { [key: string]: any } {
6573
+ return {
6574
+ clientToken: 'string',
6575
+ endpointGroupId: 'string',
6576
+ regionId: 'string',
6577
+ };
6578
+ }
6579
+
6580
+ constructor(map?: { [key: string]: any }) {
6581
+ super(map);
6582
+ }
6583
+ }
6584
+
6585
+ export class GetBasicEndpointGroupResponseBody extends $tea.Model {
6586
+ acceleratorId?: string;
6587
+ description?: string;
6588
+ endpointAddress?: string;
6589
+ endpointGroupId?: string;
6590
+ endpointGroupRegion?: string;
6591
+ endpointSubAddress?: string;
6592
+ endpointType?: string;
6593
+ name?: string;
6594
+ requestId?: string;
6595
+ state?: string;
6596
+ static names(): { [key: string]: string } {
6597
+ return {
6598
+ acceleratorId: 'AcceleratorId',
6599
+ description: 'Description',
6600
+ endpointAddress: 'EndpointAddress',
6601
+ endpointGroupId: 'EndpointGroupId',
6146
6602
  endpointGroupRegion: 'EndpointGroupRegion',
6147
6603
  endpointSubAddress: 'EndpointSubAddress',
6148
6604
  endpointType: 'EndpointType',
@@ -7196,6 +7652,192 @@ export class ListBandwidthackagesResponse extends $tea.Model {
7196
7652
  }
7197
7653
  }
7198
7654
 
7655
+ export class ListBasicAccelerateIpEndpointRelationsRequest extends $tea.Model {
7656
+ accelerateIpId?: string;
7657
+ acceleratorId?: string;
7658
+ clientToken?: string;
7659
+ endpointId?: string;
7660
+ maxResults?: number;
7661
+ nextToken?: string;
7662
+ regionId?: string;
7663
+ static names(): { [key: string]: string } {
7664
+ return {
7665
+ accelerateIpId: 'AccelerateIpId',
7666
+ acceleratorId: 'AcceleratorId',
7667
+ clientToken: 'ClientToken',
7668
+ endpointId: 'EndpointId',
7669
+ maxResults: 'MaxResults',
7670
+ nextToken: 'NextToken',
7671
+ regionId: 'RegionId',
7672
+ };
7673
+ }
7674
+
7675
+ static types(): { [key: string]: any } {
7676
+ return {
7677
+ accelerateIpId: 'string',
7678
+ acceleratorId: 'string',
7679
+ clientToken: 'string',
7680
+ endpointId: 'string',
7681
+ maxResults: 'number',
7682
+ nextToken: 'string',
7683
+ regionId: 'string',
7684
+ };
7685
+ }
7686
+
7687
+ constructor(map?: { [key: string]: any }) {
7688
+ super(map);
7689
+ }
7690
+ }
7691
+
7692
+ export class ListBasicAccelerateIpEndpointRelationsResponseBody extends $tea.Model {
7693
+ accelerateIpEndpointRelations?: ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations[];
7694
+ maxResults?: string;
7695
+ nextToken?: string;
7696
+ requestId?: string;
7697
+ totalCount?: string;
7698
+ static names(): { [key: string]: string } {
7699
+ return {
7700
+ accelerateIpEndpointRelations: 'AccelerateIpEndpointRelations',
7701
+ maxResults: 'MaxResults',
7702
+ nextToken: 'NextToken',
7703
+ requestId: 'RequestId',
7704
+ totalCount: 'TotalCount',
7705
+ };
7706
+ }
7707
+
7708
+ static types(): { [key: string]: any } {
7709
+ return {
7710
+ accelerateIpEndpointRelations: { 'type': 'array', 'itemType': ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations },
7711
+ maxResults: 'string',
7712
+ nextToken: 'string',
7713
+ requestId: 'string',
7714
+ totalCount: 'string',
7715
+ };
7716
+ }
7717
+
7718
+ constructor(map?: { [key: string]: any }) {
7719
+ super(map);
7720
+ }
7721
+ }
7722
+
7723
+ export class ListBasicAccelerateIpEndpointRelationsResponse extends $tea.Model {
7724
+ headers: { [key: string]: string };
7725
+ statusCode: number;
7726
+ body: ListBasicAccelerateIpEndpointRelationsResponseBody;
7727
+ static names(): { [key: string]: string } {
7728
+ return {
7729
+ headers: 'headers',
7730
+ statusCode: 'statusCode',
7731
+ body: 'body',
7732
+ };
7733
+ }
7734
+
7735
+ static types(): { [key: string]: any } {
7736
+ return {
7737
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7738
+ statusCode: 'number',
7739
+ body: ListBasicAccelerateIpEndpointRelationsResponseBody,
7740
+ };
7741
+ }
7742
+
7743
+ constructor(map?: { [key: string]: any }) {
7744
+ super(map);
7745
+ }
7746
+ }
7747
+
7748
+ export class ListBasicAccelerateIpsRequest extends $tea.Model {
7749
+ accelerateIpAddress?: string;
7750
+ accelerateIpId?: string;
7751
+ clientToken?: string;
7752
+ ipSetId?: string;
7753
+ maxResults?: number;
7754
+ nextToken?: string;
7755
+ regionId?: string;
7756
+ static names(): { [key: string]: string } {
7757
+ return {
7758
+ accelerateIpAddress: 'AccelerateIpAddress',
7759
+ accelerateIpId: 'AccelerateIpId',
7760
+ clientToken: 'ClientToken',
7761
+ ipSetId: 'IpSetId',
7762
+ maxResults: 'MaxResults',
7763
+ nextToken: 'NextToken',
7764
+ regionId: 'RegionId',
7765
+ };
7766
+ }
7767
+
7768
+ static types(): { [key: string]: any } {
7769
+ return {
7770
+ accelerateIpAddress: 'string',
7771
+ accelerateIpId: 'string',
7772
+ clientToken: 'string',
7773
+ ipSetId: 'string',
7774
+ maxResults: 'number',
7775
+ nextToken: 'string',
7776
+ regionId: 'string',
7777
+ };
7778
+ }
7779
+
7780
+ constructor(map?: { [key: string]: any }) {
7781
+ super(map);
7782
+ }
7783
+ }
7784
+
7785
+ export class ListBasicAccelerateIpsResponseBody extends $tea.Model {
7786
+ accelerateIps?: ListBasicAccelerateIpsResponseBodyAccelerateIps[];
7787
+ maxResults?: number;
7788
+ nextToken?: string;
7789
+ requestId?: string;
7790
+ totalCount?: number;
7791
+ static names(): { [key: string]: string } {
7792
+ return {
7793
+ accelerateIps: 'AccelerateIps',
7794
+ maxResults: 'MaxResults',
7795
+ nextToken: 'NextToken',
7796
+ requestId: 'RequestId',
7797
+ totalCount: 'TotalCount',
7798
+ };
7799
+ }
7800
+
7801
+ static types(): { [key: string]: any } {
7802
+ return {
7803
+ accelerateIps: { 'type': 'array', 'itemType': ListBasicAccelerateIpsResponseBodyAccelerateIps },
7804
+ maxResults: 'number',
7805
+ nextToken: 'string',
7806
+ requestId: 'string',
7807
+ totalCount: 'number',
7808
+ };
7809
+ }
7810
+
7811
+ constructor(map?: { [key: string]: any }) {
7812
+ super(map);
7813
+ }
7814
+ }
7815
+
7816
+ export class ListBasicAccelerateIpsResponse extends $tea.Model {
7817
+ headers: { [key: string]: string };
7818
+ statusCode: number;
7819
+ body: ListBasicAccelerateIpsResponseBody;
7820
+ static names(): { [key: string]: string } {
7821
+ return {
7822
+ headers: 'headers',
7823
+ statusCode: 'statusCode',
7824
+ body: 'body',
7825
+ };
7826
+ }
7827
+
7828
+ static types(): { [key: string]: any } {
7829
+ return {
7830
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7831
+ statusCode: 'number',
7832
+ body: ListBasicAccelerateIpsResponseBody,
7833
+ };
7834
+ }
7835
+
7836
+ constructor(map?: { [key: string]: any }) {
7837
+ super(map);
7838
+ }
7839
+ }
7840
+
7199
7841
  export class ListBasicAcceleratorsRequest extends $tea.Model {
7200
7842
  acceleratorId?: string;
7201
7843
  pageNumber?: number;
@@ -7251,11 +7893,107 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
7251
7893
 
7252
7894
  static types(): { [key: string]: any } {
7253
7895
  return {
7254
- accelerators: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAccelerators },
7255
- pageNumber: 'number',
7256
- pageSize: 'number',
7896
+ accelerators: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAccelerators },
7897
+ pageNumber: 'number',
7898
+ pageSize: 'number',
7899
+ requestId: 'string',
7900
+ totalCount: 'number',
7901
+ };
7902
+ }
7903
+
7904
+ constructor(map?: { [key: string]: any }) {
7905
+ super(map);
7906
+ }
7907
+ }
7908
+
7909
+ export class ListBasicAcceleratorsResponse extends $tea.Model {
7910
+ headers: { [key: string]: string };
7911
+ statusCode: number;
7912
+ body: ListBasicAcceleratorsResponseBody;
7913
+ static names(): { [key: string]: string } {
7914
+ return {
7915
+ headers: 'headers',
7916
+ statusCode: 'statusCode',
7917
+ body: 'body',
7918
+ };
7919
+ }
7920
+
7921
+ static types(): { [key: string]: any } {
7922
+ return {
7923
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7924
+ statusCode: 'number',
7925
+ body: ListBasicAcceleratorsResponseBody,
7926
+ };
7927
+ }
7928
+
7929
+ constructor(map?: { [key: string]: any }) {
7930
+ super(map);
7931
+ }
7932
+ }
7933
+
7934
+ export class ListBasicEndpointsRequest extends $tea.Model {
7935
+ clientToken?: string;
7936
+ endpointGroupId?: string;
7937
+ endpointId?: string;
7938
+ endpointType?: string;
7939
+ maxResults?: number;
7940
+ name?: string;
7941
+ nextToken?: string;
7942
+ regionId?: string;
7943
+ static names(): { [key: string]: string } {
7944
+ return {
7945
+ clientToken: 'ClientToken',
7946
+ endpointGroupId: 'EndpointGroupId',
7947
+ endpointId: 'EndpointId',
7948
+ endpointType: 'EndpointType',
7949
+ maxResults: 'MaxResults',
7950
+ name: 'Name',
7951
+ nextToken: 'NextToken',
7952
+ regionId: 'RegionId',
7953
+ };
7954
+ }
7955
+
7956
+ static types(): { [key: string]: any } {
7957
+ return {
7958
+ clientToken: 'string',
7959
+ endpointGroupId: 'string',
7960
+ endpointId: 'string',
7961
+ endpointType: 'string',
7962
+ maxResults: 'number',
7963
+ name: 'string',
7964
+ nextToken: 'string',
7965
+ regionId: 'string',
7966
+ };
7967
+ }
7968
+
7969
+ constructor(map?: { [key: string]: any }) {
7970
+ super(map);
7971
+ }
7972
+ }
7973
+
7974
+ export class ListBasicEndpointsResponseBody extends $tea.Model {
7975
+ endpoints?: ListBasicEndpointsResponseBodyEndpoints[];
7976
+ maxResults?: string;
7977
+ nextToken?: string;
7978
+ requestId?: string;
7979
+ totalCount?: string;
7980
+ static names(): { [key: string]: string } {
7981
+ return {
7982
+ endpoints: 'Endpoints',
7983
+ maxResults: 'MaxResults',
7984
+ nextToken: 'NextToken',
7985
+ requestId: 'RequestId',
7986
+ totalCount: 'TotalCount',
7987
+ };
7988
+ }
7989
+
7990
+ static types(): { [key: string]: any } {
7991
+ return {
7992
+ endpoints: { 'type': 'array', 'itemType': ListBasicEndpointsResponseBodyEndpoints },
7993
+ maxResults: 'string',
7994
+ nextToken: 'string',
7257
7995
  requestId: 'string',
7258
- totalCount: 'number',
7996
+ totalCount: 'string',
7259
7997
  };
7260
7998
  }
7261
7999
 
@@ -7264,10 +8002,10 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
7264
8002
  }
7265
8003
  }
7266
8004
 
7267
- export class ListBasicAcceleratorsResponse extends $tea.Model {
8005
+ export class ListBasicEndpointsResponse extends $tea.Model {
7268
8006
  headers: { [key: string]: string };
7269
8007
  statusCode: number;
7270
- body: ListBasicAcceleratorsResponseBody;
8008
+ body: ListBasicEndpointsResponseBody;
7271
8009
  static names(): { [key: string]: string } {
7272
8010
  return {
7273
8011
  headers: 'headers',
@@ -7280,7 +8018,7 @@ export class ListBasicAcceleratorsResponse extends $tea.Model {
7280
8018
  return {
7281
8019
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7282
8020
  statusCode: 'number',
7283
- body: ListBasicAcceleratorsResponseBody,
8021
+ body: ListBasicEndpointsResponseBody,
7284
8022
  };
7285
8023
  }
7286
8024
 
@@ -8197,18 +8935,258 @@ export class ListListenerCertificatesRequest extends $tea.Model {
8197
8935
  maxResults: 'MaxResults',
8198
8936
  nextToken: 'NextToken',
8199
8937
  regionId: 'RegionId',
8200
- role: 'Role',
8938
+ role: 'Role',
8939
+ };
8940
+ }
8941
+
8942
+ static types(): { [key: string]: any } {
8943
+ return {
8944
+ acceleratorId: 'string',
8945
+ listenerId: 'string',
8946
+ maxResults: 'number',
8947
+ nextToken: 'string',
8948
+ regionId: 'string',
8949
+ role: 'string',
8950
+ };
8951
+ }
8952
+
8953
+ constructor(map?: { [key: string]: any }) {
8954
+ super(map);
8955
+ }
8956
+ }
8957
+
8958
+ export class ListListenerCertificatesResponseBody extends $tea.Model {
8959
+ certificates?: ListListenerCertificatesResponseBodyCertificates[];
8960
+ maxResults?: number;
8961
+ nextToken?: string;
8962
+ requestId?: string;
8963
+ totalCount?: number;
8964
+ static names(): { [key: string]: string } {
8965
+ return {
8966
+ certificates: 'Certificates',
8967
+ maxResults: 'MaxResults',
8968
+ nextToken: 'NextToken',
8969
+ requestId: 'RequestId',
8970
+ totalCount: 'TotalCount',
8971
+ };
8972
+ }
8973
+
8974
+ static types(): { [key: string]: any } {
8975
+ return {
8976
+ certificates: { 'type': 'array', 'itemType': ListListenerCertificatesResponseBodyCertificates },
8977
+ maxResults: 'number',
8978
+ nextToken: 'string',
8979
+ requestId: 'string',
8980
+ totalCount: 'number',
8981
+ };
8982
+ }
8983
+
8984
+ constructor(map?: { [key: string]: any }) {
8985
+ super(map);
8986
+ }
8987
+ }
8988
+
8989
+ export class ListListenerCertificatesResponse extends $tea.Model {
8990
+ headers: { [key: string]: string };
8991
+ statusCode: number;
8992
+ body: ListListenerCertificatesResponseBody;
8993
+ static names(): { [key: string]: string } {
8994
+ return {
8995
+ headers: 'headers',
8996
+ statusCode: 'statusCode',
8997
+ body: 'body',
8998
+ };
8999
+ }
9000
+
9001
+ static types(): { [key: string]: any } {
9002
+ return {
9003
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
9004
+ statusCode: 'number',
9005
+ body: ListListenerCertificatesResponseBody,
9006
+ };
9007
+ }
9008
+
9009
+ constructor(map?: { [key: string]: any }) {
9010
+ super(map);
9011
+ }
9012
+ }
9013
+
9014
+ export class ListListenersRequest extends $tea.Model {
9015
+ acceleratorId?: string;
9016
+ pageNumber?: number;
9017
+ pageSize?: number;
9018
+ regionId?: string;
9019
+ static names(): { [key: string]: string } {
9020
+ return {
9021
+ acceleratorId: 'AcceleratorId',
9022
+ pageNumber: 'PageNumber',
9023
+ pageSize: 'PageSize',
9024
+ regionId: 'RegionId',
9025
+ };
9026
+ }
9027
+
9028
+ static types(): { [key: string]: any } {
9029
+ return {
9030
+ acceleratorId: 'string',
9031
+ pageNumber: 'number',
9032
+ pageSize: 'number',
9033
+ regionId: 'string',
9034
+ };
9035
+ }
9036
+
9037
+ constructor(map?: { [key: string]: any }) {
9038
+ super(map);
9039
+ }
9040
+ }
9041
+
9042
+ export class ListListenersResponseBody extends $tea.Model {
9043
+ listeners?: ListListenersResponseBodyListeners[];
9044
+ pageNumber?: number;
9045
+ pageSize?: number;
9046
+ requestId?: string;
9047
+ totalCount?: number;
9048
+ static names(): { [key: string]: string } {
9049
+ return {
9050
+ listeners: 'Listeners',
9051
+ pageNumber: 'PageNumber',
9052
+ pageSize: 'PageSize',
9053
+ requestId: 'RequestId',
9054
+ totalCount: 'TotalCount',
9055
+ };
9056
+ }
9057
+
9058
+ static types(): { [key: string]: any } {
9059
+ return {
9060
+ listeners: { 'type': 'array', 'itemType': ListListenersResponseBodyListeners },
9061
+ pageNumber: 'number',
9062
+ pageSize: 'number',
9063
+ requestId: 'string',
9064
+ totalCount: 'number',
9065
+ };
9066
+ }
9067
+
9068
+ constructor(map?: { [key: string]: any }) {
9069
+ super(map);
9070
+ }
9071
+ }
9072
+
9073
+ export class ListListenersResponse extends $tea.Model {
9074
+ headers: { [key: string]: string };
9075
+ statusCode: number;
9076
+ body: ListListenersResponseBody;
9077
+ static names(): { [key: string]: string } {
9078
+ return {
9079
+ headers: 'headers',
9080
+ statusCode: 'statusCode',
9081
+ body: 'body',
9082
+ };
9083
+ }
9084
+
9085
+ static types(): { [key: string]: any } {
9086
+ return {
9087
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
9088
+ statusCode: 'number',
9089
+ body: ListListenersResponseBody,
9090
+ };
9091
+ }
9092
+
9093
+ constructor(map?: { [key: string]: any }) {
9094
+ super(map);
9095
+ }
9096
+ }
9097
+
9098
+ export class ListSpareIpsRequest extends $tea.Model {
9099
+ acceleratorId?: string;
9100
+ clientToken?: string;
9101
+ dryRun?: boolean;
9102
+ regionId?: string;
9103
+ static names(): { [key: string]: string } {
9104
+ return {
9105
+ acceleratorId: 'AcceleratorId',
9106
+ clientToken: 'ClientToken',
9107
+ dryRun: 'DryRun',
9108
+ regionId: 'RegionId',
9109
+ };
9110
+ }
9111
+
9112
+ static types(): { [key: string]: any } {
9113
+ return {
9114
+ acceleratorId: 'string',
9115
+ clientToken: 'string',
9116
+ dryRun: 'boolean',
9117
+ regionId: 'string',
9118
+ };
9119
+ }
9120
+
9121
+ constructor(map?: { [key: string]: any }) {
9122
+ super(map);
9123
+ }
9124
+ }
9125
+
9126
+ export class ListSpareIpsResponseBody extends $tea.Model {
9127
+ requestId?: string;
9128
+ spareIps?: ListSpareIpsResponseBodySpareIps[];
9129
+ static names(): { [key: string]: string } {
9130
+ return {
9131
+ requestId: 'RequestId',
9132
+ spareIps: 'SpareIps',
9133
+ };
9134
+ }
9135
+
9136
+ static types(): { [key: string]: any } {
9137
+ return {
9138
+ requestId: 'string',
9139
+ spareIps: { 'type': 'array', 'itemType': ListSpareIpsResponseBodySpareIps },
9140
+ };
9141
+ }
9142
+
9143
+ constructor(map?: { [key: string]: any }) {
9144
+ super(map);
9145
+ }
9146
+ }
9147
+
9148
+ export class ListSpareIpsResponse extends $tea.Model {
9149
+ headers: { [key: string]: string };
9150
+ statusCode: number;
9151
+ body: ListSpareIpsResponseBody;
9152
+ static names(): { [key: string]: string } {
9153
+ return {
9154
+ headers: 'headers',
9155
+ statusCode: 'statusCode',
9156
+ body: 'body',
9157
+ };
9158
+ }
9159
+
9160
+ static types(): { [key: string]: any } {
9161
+ return {
9162
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
9163
+ statusCode: 'number',
9164
+ body: ListSpareIpsResponseBody,
9165
+ };
9166
+ }
9167
+
9168
+ constructor(map?: { [key: string]: any }) {
9169
+ super(map);
9170
+ }
9171
+ }
9172
+
9173
+ export class ListSystemSecurityPoliciesRequest extends $tea.Model {
9174
+ pageNumber?: number;
9175
+ pageSize?: number;
9176
+ regionId?: string;
9177
+ static names(): { [key: string]: string } {
9178
+ return {
9179
+ pageNumber: 'PageNumber',
9180
+ pageSize: 'PageSize',
9181
+ regionId: 'RegionId',
8201
9182
  };
8202
9183
  }
8203
9184
 
8204
9185
  static types(): { [key: string]: any } {
8205
9186
  return {
8206
- acceleratorId: 'string',
8207
- listenerId: 'string',
8208
- maxResults: 'number',
8209
- nextToken: 'string',
9187
+ pageNumber: 'number',
9188
+ pageSize: 'number',
8210
9189
  regionId: 'string',
8211
- role: 'string',
8212
9190
  };
8213
9191
  }
8214
9192
 
@@ -8217,28 +9195,28 @@ export class ListListenerCertificatesRequest extends $tea.Model {
8217
9195
  }
8218
9196
  }
8219
9197
 
8220
- export class ListListenerCertificatesResponseBody extends $tea.Model {
8221
- certificates?: ListListenerCertificatesResponseBodyCertificates[];
8222
- maxResults?: number;
8223
- nextToken?: string;
9198
+ export class ListSystemSecurityPoliciesResponseBody extends $tea.Model {
9199
+ pageNumber?: number;
9200
+ pageSize?: number;
8224
9201
  requestId?: string;
9202
+ securityPolicies?: ListSystemSecurityPoliciesResponseBodySecurityPolicies[];
8225
9203
  totalCount?: number;
8226
9204
  static names(): { [key: string]: string } {
8227
9205
  return {
8228
- certificates: 'Certificates',
8229
- maxResults: 'MaxResults',
8230
- nextToken: 'NextToken',
9206
+ pageNumber: 'PageNumber',
9207
+ pageSize: 'PageSize',
8231
9208
  requestId: 'RequestId',
9209
+ securityPolicies: 'SecurityPolicies',
8232
9210
  totalCount: 'TotalCount',
8233
9211
  };
8234
9212
  }
8235
9213
 
8236
9214
  static types(): { [key: string]: any } {
8237
9215
  return {
8238
- certificates: { 'type': 'array', 'itemType': ListListenerCertificatesResponseBodyCertificates },
8239
- maxResults: 'number',
8240
- nextToken: 'string',
9216
+ pageNumber: 'number',
9217
+ pageSize: 'number',
8241
9218
  requestId: 'string',
9219
+ securityPolicies: { 'type': 'array', 'itemType': ListSystemSecurityPoliciesResponseBodySecurityPolicies },
8242
9220
  totalCount: 'number',
8243
9221
  };
8244
9222
  }
@@ -8248,10 +9226,10 @@ export class ListListenerCertificatesResponseBody extends $tea.Model {
8248
9226
  }
8249
9227
  }
8250
9228
 
8251
- export class ListListenerCertificatesResponse extends $tea.Model {
9229
+ export class ListSystemSecurityPoliciesResponse extends $tea.Model {
8252
9230
  headers: { [key: string]: string };
8253
9231
  statusCode: number;
8254
- body: ListListenerCertificatesResponseBody;
9232
+ body: ListSystemSecurityPoliciesResponseBody;
8255
9233
  static names(): { [key: string]: string } {
8256
9234
  return {
8257
9235
  headers: 'headers',
@@ -8264,7 +9242,7 @@ export class ListListenerCertificatesResponse extends $tea.Model {
8264
9242
  return {
8265
9243
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8266
9244
  statusCode: 'number',
8267
- body: ListListenerCertificatesResponseBody,
9245
+ body: ListSystemSecurityPoliciesResponseBody,
8268
9246
  };
8269
9247
  }
8270
9248
 
@@ -8273,26 +9251,32 @@ export class ListListenerCertificatesResponse extends $tea.Model {
8273
9251
  }
8274
9252
  }
8275
9253
 
8276
- export class ListListenersRequest extends $tea.Model {
8277
- acceleratorId?: string;
8278
- pageNumber?: number;
8279
- pageSize?: number;
9254
+ export class ListTagResourcesRequest extends $tea.Model {
9255
+ clientToken?: string;
9256
+ nextToken?: string;
8280
9257
  regionId?: string;
9258
+ resourceId?: string[];
9259
+ resourceType?: string;
9260
+ tag?: ListTagResourcesRequestTag[];
8281
9261
  static names(): { [key: string]: string } {
8282
9262
  return {
8283
- acceleratorId: 'AcceleratorId',
8284
- pageNumber: 'PageNumber',
8285
- pageSize: 'PageSize',
9263
+ clientToken: 'ClientToken',
9264
+ nextToken: 'NextToken',
8286
9265
  regionId: 'RegionId',
9266
+ resourceId: 'ResourceId',
9267
+ resourceType: 'ResourceType',
9268
+ tag: 'Tag',
8287
9269
  };
8288
9270
  }
8289
9271
 
8290
9272
  static types(): { [key: string]: any } {
8291
9273
  return {
8292
- acceleratorId: 'string',
8293
- pageNumber: 'number',
8294
- pageSize: 'number',
9274
+ clientToken: 'string',
9275
+ nextToken: 'string',
8295
9276
  regionId: 'string',
9277
+ resourceId: { 'type': 'array', 'itemType': 'string' },
9278
+ resourceType: 'string',
9279
+ tag: { 'type': 'array', 'itemType': ListTagResourcesRequestTag },
8296
9280
  };
8297
9281
  }
8298
9282
 
@@ -8301,28 +9285,25 @@ export class ListListenersRequest extends $tea.Model {
8301
9285
  }
8302
9286
  }
8303
9287
 
8304
- export class ListListenersResponseBody extends $tea.Model {
8305
- listeners?: ListListenersResponseBodyListeners[];
8306
- pageNumber?: number;
8307
- pageSize?: number;
9288
+ export class ListTagResourcesResponseBody extends $tea.Model {
9289
+ nextToken?: string;
8308
9290
  requestId?: string;
9291
+ tagResources?: ListTagResourcesResponseBodyTagResources;
8309
9292
  totalCount?: number;
8310
9293
  static names(): { [key: string]: string } {
8311
9294
  return {
8312
- listeners: 'Listeners',
8313
- pageNumber: 'PageNumber',
8314
- pageSize: 'PageSize',
9295
+ nextToken: 'NextToken',
8315
9296
  requestId: 'RequestId',
9297
+ tagResources: 'TagResources',
8316
9298
  totalCount: 'TotalCount',
8317
9299
  };
8318
9300
  }
8319
9301
 
8320
9302
  static types(): { [key: string]: any } {
8321
9303
  return {
8322
- listeners: { 'type': 'array', 'itemType': ListListenersResponseBodyListeners },
8323
- pageNumber: 'number',
8324
- pageSize: 'number',
9304
+ nextToken: 'string',
8325
9305
  requestId: 'string',
9306
+ tagResources: ListTagResourcesResponseBodyTagResources,
8326
9307
  totalCount: 'number',
8327
9308
  };
8328
9309
  }
@@ -8332,10 +9313,10 @@ export class ListListenersResponseBody extends $tea.Model {
8332
9313
  }
8333
9314
  }
8334
9315
 
8335
- export class ListListenersResponse extends $tea.Model {
9316
+ export class ListTagResourcesResponse extends $tea.Model {
8336
9317
  headers: { [key: string]: string };
8337
9318
  statusCode: number;
8338
- body: ListListenersResponseBody;
9319
+ body: ListTagResourcesResponseBody;
8339
9320
  static names(): { [key: string]: string } {
8340
9321
  return {
8341
9322
  headers: 'headers',
@@ -8348,7 +9329,7 @@ export class ListListenersResponse extends $tea.Model {
8348
9329
  return {
8349
9330
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8350
9331
  statusCode: 'number',
8351
- body: ListListenersResponseBody,
9332
+ body: ListTagResourcesResponseBody,
8352
9333
  };
8353
9334
  }
8354
9335
 
@@ -8357,14 +9338,16 @@ export class ListListenersResponse extends $tea.Model {
8357
9338
  }
8358
9339
  }
8359
9340
 
8360
- export class ListSpareIpsRequest extends $tea.Model {
8361
- acceleratorId?: string;
9341
+ export class RemoveEntriesFromAclRequest extends $tea.Model {
9342
+ aclEntries?: RemoveEntriesFromAclRequestAclEntries[];
9343
+ aclId?: string;
8362
9344
  clientToken?: string;
8363
9345
  dryRun?: boolean;
8364
9346
  regionId?: string;
8365
9347
  static names(): { [key: string]: string } {
8366
9348
  return {
8367
- acceleratorId: 'AcceleratorId',
9349
+ aclEntries: 'AclEntries',
9350
+ aclId: 'AclId',
8368
9351
  clientToken: 'ClientToken',
8369
9352
  dryRun: 'DryRun',
8370
9353
  regionId: 'RegionId',
@@ -8373,7 +9356,8 @@ export class ListSpareIpsRequest extends $tea.Model {
8373
9356
 
8374
9357
  static types(): { [key: string]: any } {
8375
9358
  return {
8376
- acceleratorId: 'string',
9359
+ aclEntries: { 'type': 'array', 'itemType': RemoveEntriesFromAclRequestAclEntries },
9360
+ aclId: 'string',
8377
9361
  clientToken: 'string',
8378
9362
  dryRun: 'boolean',
8379
9363
  regionId: 'string',
@@ -8385,20 +9369,20 @@ export class ListSpareIpsRequest extends $tea.Model {
8385
9369
  }
8386
9370
  }
8387
9371
 
8388
- export class ListSpareIpsResponseBody extends $tea.Model {
9372
+ export class RemoveEntriesFromAclResponseBody extends $tea.Model {
9373
+ aclId?: string;
8389
9374
  requestId?: string;
8390
- spareIps?: ListSpareIpsResponseBodySpareIps[];
8391
9375
  static names(): { [key: string]: string } {
8392
9376
  return {
9377
+ aclId: 'AclId',
8393
9378
  requestId: 'RequestId',
8394
- spareIps: 'SpareIps',
8395
9379
  };
8396
9380
  }
8397
9381
 
8398
9382
  static types(): { [key: string]: any } {
8399
9383
  return {
9384
+ aclId: 'string',
8400
9385
  requestId: 'string',
8401
- spareIps: { 'type': 'array', 'itemType': ListSpareIpsResponseBodySpareIps },
8402
9386
  };
8403
9387
  }
8404
9388
 
@@ -8407,10 +9391,10 @@ export class ListSpareIpsResponseBody extends $tea.Model {
8407
9391
  }
8408
9392
  }
8409
9393
 
8410
- export class ListSpareIpsResponse extends $tea.Model {
9394
+ export class RemoveEntriesFromAclResponse extends $tea.Model {
8411
9395
  headers: { [key: string]: string };
8412
9396
  statusCode: number;
8413
- body: ListSpareIpsResponseBody;
9397
+ body: RemoveEntriesFromAclResponseBody;
8414
9398
  static names(): { [key: string]: string } {
8415
9399
  return {
8416
9400
  headers: 'headers',
@@ -8423,7 +9407,7 @@ export class ListSpareIpsResponse extends $tea.Model {
8423
9407
  return {
8424
9408
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8425
9409
  statusCode: 'number',
8426
- body: ListSpareIpsResponseBody,
9410
+ body: RemoveEntriesFromAclResponseBody,
8427
9411
  };
8428
9412
  }
8429
9413
 
@@ -8432,23 +9416,26 @@ export class ListSpareIpsResponse extends $tea.Model {
8432
9416
  }
8433
9417
  }
8434
9418
 
8435
- export class ListSystemSecurityPoliciesRequest extends $tea.Model {
8436
- pageNumber?: number;
8437
- pageSize?: number;
9419
+ export class ReplaceBandwidthPackageRequest extends $tea.Model {
9420
+ acceleratorId?: string;
9421
+ bandwidthPackageId?: string;
8438
9422
  regionId?: string;
9423
+ targetBandwidthPackageId?: string;
8439
9424
  static names(): { [key: string]: string } {
8440
9425
  return {
8441
- pageNumber: 'PageNumber',
8442
- pageSize: 'PageSize',
9426
+ acceleratorId: 'AcceleratorId',
9427
+ bandwidthPackageId: 'BandwidthPackageId',
8443
9428
  regionId: 'RegionId',
9429
+ targetBandwidthPackageId: 'TargetBandwidthPackageId',
8444
9430
  };
8445
9431
  }
8446
9432
 
8447
9433
  static types(): { [key: string]: any } {
8448
9434
  return {
8449
- pageNumber: 'number',
8450
- pageSize: 'number',
9435
+ acceleratorId: 'string',
9436
+ bandwidthPackageId: 'string',
8451
9437
  regionId: 'string',
9438
+ targetBandwidthPackageId: 'string',
8452
9439
  };
8453
9440
  }
8454
9441
 
@@ -8457,29 +9444,17 @@ export class ListSystemSecurityPoliciesRequest extends $tea.Model {
8457
9444
  }
8458
9445
  }
8459
9446
 
8460
- export class ListSystemSecurityPoliciesResponseBody extends $tea.Model {
8461
- pageNumber?: number;
8462
- pageSize?: number;
9447
+ export class ReplaceBandwidthPackageResponseBody extends $tea.Model {
8463
9448
  requestId?: string;
8464
- securityPolicies?: ListSystemSecurityPoliciesResponseBodySecurityPolicies[];
8465
- totalCount?: number;
8466
9449
  static names(): { [key: string]: string } {
8467
9450
  return {
8468
- pageNumber: 'PageNumber',
8469
- pageSize: 'PageSize',
8470
9451
  requestId: 'RequestId',
8471
- securityPolicies: 'SecurityPolicies',
8472
- totalCount: 'TotalCount',
8473
9452
  };
8474
9453
  }
8475
9454
 
8476
9455
  static types(): { [key: string]: any } {
8477
9456
  return {
8478
- pageNumber: 'number',
8479
- pageSize: 'number',
8480
9457
  requestId: 'string',
8481
- securityPolicies: { 'type': 'array', 'itemType': ListSystemSecurityPoliciesResponseBodySecurityPolicies },
8482
- totalCount: 'number',
8483
9458
  };
8484
9459
  }
8485
9460
 
@@ -8488,10 +9463,10 @@ export class ListSystemSecurityPoliciesResponseBody extends $tea.Model {
8488
9463
  }
8489
9464
  }
8490
9465
 
8491
- export class ListSystemSecurityPoliciesResponse extends $tea.Model {
9466
+ export class ReplaceBandwidthPackageResponse extends $tea.Model {
8492
9467
  headers: { [key: string]: string };
8493
9468
  statusCode: number;
8494
- body: ListSystemSecurityPoliciesResponseBody;
9469
+ body: ReplaceBandwidthPackageResponseBody;
8495
9470
  static names(): { [key: string]: string } {
8496
9471
  return {
8497
9472
  headers: 'headers',
@@ -8504,7 +9479,7 @@ export class ListSystemSecurityPoliciesResponse extends $tea.Model {
8504
9479
  return {
8505
9480
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8506
9481
  statusCode: 'number',
8507
- body: ListSystemSecurityPoliciesResponseBody,
9482
+ body: ReplaceBandwidthPackageResponseBody,
8508
9483
  };
8509
9484
  }
8510
9485
 
@@ -8513,29 +9488,29 @@ export class ListSystemSecurityPoliciesResponse extends $tea.Model {
8513
9488
  }
8514
9489
  }
8515
9490
 
8516
- export class RemoveEntriesFromAclRequest extends $tea.Model {
8517
- aclEntries?: RemoveEntriesFromAclRequestAclEntries[];
8518
- aclId?: string;
9491
+ export class TagResourcesRequest extends $tea.Model {
8519
9492
  clientToken?: string;
8520
- dryRun?: boolean;
8521
9493
  regionId?: string;
9494
+ resourceId?: string[];
9495
+ resourceType?: string;
9496
+ tag?: TagResourcesRequestTag[];
8522
9497
  static names(): { [key: string]: string } {
8523
9498
  return {
8524
- aclEntries: 'AclEntries',
8525
- aclId: 'AclId',
8526
9499
  clientToken: 'ClientToken',
8527
- dryRun: 'DryRun',
8528
9500
  regionId: 'RegionId',
9501
+ resourceId: 'ResourceId',
9502
+ resourceType: 'ResourceType',
9503
+ tag: 'Tag',
8529
9504
  };
8530
9505
  }
8531
9506
 
8532
9507
  static types(): { [key: string]: any } {
8533
9508
  return {
8534
- aclEntries: { 'type': 'array', 'itemType': RemoveEntriesFromAclRequestAclEntries },
8535
- aclId: 'string',
8536
9509
  clientToken: 'string',
8537
- dryRun: 'boolean',
8538
9510
  regionId: 'string',
9511
+ resourceId: { 'type': 'array', 'itemType': 'string' },
9512
+ resourceType: 'string',
9513
+ tag: { 'type': 'array', 'itemType': TagResourcesRequestTag },
8539
9514
  };
8540
9515
  }
8541
9516
 
@@ -8544,19 +9519,16 @@ export class RemoveEntriesFromAclRequest extends $tea.Model {
8544
9519
  }
8545
9520
  }
8546
9521
 
8547
- export class RemoveEntriesFromAclResponseBody extends $tea.Model {
8548
- aclId?: string;
9522
+ export class TagResourcesResponseBody extends $tea.Model {
8549
9523
  requestId?: string;
8550
9524
  static names(): { [key: string]: string } {
8551
9525
  return {
8552
- aclId: 'AclId',
8553
9526
  requestId: 'RequestId',
8554
9527
  };
8555
9528
  }
8556
9529
 
8557
9530
  static types(): { [key: string]: any } {
8558
9531
  return {
8559
- aclId: 'string',
8560
9532
  requestId: 'string',
8561
9533
  };
8562
9534
  }
@@ -8566,10 +9538,10 @@ export class RemoveEntriesFromAclResponseBody extends $tea.Model {
8566
9538
  }
8567
9539
  }
8568
9540
 
8569
- export class RemoveEntriesFromAclResponse extends $tea.Model {
9541
+ export class TagResourcesResponse extends $tea.Model {
8570
9542
  headers: { [key: string]: string };
8571
9543
  statusCode: number;
8572
- body: RemoveEntriesFromAclResponseBody;
9544
+ body: TagResourcesResponseBody;
8573
9545
  static names(): { [key: string]: string } {
8574
9546
  return {
8575
9547
  headers: 'headers',
@@ -8582,7 +9554,7 @@ export class RemoveEntriesFromAclResponse extends $tea.Model {
8582
9554
  return {
8583
9555
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8584
9556
  statusCode: 'number',
8585
- body: RemoveEntriesFromAclResponseBody,
9557
+ body: TagResourcesResponseBody,
8586
9558
  };
8587
9559
  }
8588
9560
 
@@ -8591,26 +9563,32 @@ export class RemoveEntriesFromAclResponse extends $tea.Model {
8591
9563
  }
8592
9564
  }
8593
9565
 
8594
- export class ReplaceBandwidthPackageRequest extends $tea.Model {
8595
- acceleratorId?: string;
8596
- bandwidthPackageId?: string;
9566
+ export class UntagResourcesRequest extends $tea.Model {
9567
+ all?: boolean;
9568
+ clientToken?: string;
8597
9569
  regionId?: string;
8598
- targetBandwidthPackageId?: string;
9570
+ resourceId?: string[];
9571
+ resourceType?: string;
9572
+ tagKey?: string[];
8599
9573
  static names(): { [key: string]: string } {
8600
9574
  return {
8601
- acceleratorId: 'AcceleratorId',
8602
- bandwidthPackageId: 'BandwidthPackageId',
9575
+ all: 'All',
9576
+ clientToken: 'ClientToken',
8603
9577
  regionId: 'RegionId',
8604
- targetBandwidthPackageId: 'TargetBandwidthPackageId',
9578
+ resourceId: 'ResourceId',
9579
+ resourceType: 'ResourceType',
9580
+ tagKey: 'TagKey',
8605
9581
  };
8606
9582
  }
8607
9583
 
8608
9584
  static types(): { [key: string]: any } {
8609
9585
  return {
8610
- acceleratorId: 'string',
8611
- bandwidthPackageId: 'string',
9586
+ all: 'boolean',
9587
+ clientToken: 'string',
8612
9588
  regionId: 'string',
8613
- targetBandwidthPackageId: 'string',
9589
+ resourceId: { 'type': 'array', 'itemType': 'string' },
9590
+ resourceType: 'string',
9591
+ tagKey: { 'type': 'array', 'itemType': 'string' },
8614
9592
  };
8615
9593
  }
8616
9594
 
@@ -8619,7 +9597,7 @@ export class ReplaceBandwidthPackageRequest extends $tea.Model {
8619
9597
  }
8620
9598
  }
8621
9599
 
8622
- export class ReplaceBandwidthPackageResponseBody extends $tea.Model {
9600
+ export class UntagResourcesResponseBody extends $tea.Model {
8623
9601
  requestId?: string;
8624
9602
  static names(): { [key: string]: string } {
8625
9603
  return {
@@ -8638,10 +9616,10 @@ export class ReplaceBandwidthPackageResponseBody extends $tea.Model {
8638
9616
  }
8639
9617
  }
8640
9618
 
8641
- export class ReplaceBandwidthPackageResponse extends $tea.Model {
9619
+ export class UntagResourcesResponse extends $tea.Model {
8642
9620
  headers: { [key: string]: string };
8643
9621
  statusCode: number;
8644
- body: ReplaceBandwidthPackageResponseBody;
9622
+ body: UntagResourcesResponseBody;
8645
9623
  static names(): { [key: string]: string } {
8646
9624
  return {
8647
9625
  headers: 'headers',
@@ -8654,7 +9632,7 @@ export class ReplaceBandwidthPackageResponse extends $tea.Model {
8654
9632
  return {
8655
9633
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8656
9634
  statusCode: 'number',
8657
- body: ReplaceBandwidthPackageResponseBody,
9635
+ body: UntagResourcesResponseBody,
8658
9636
  };
8659
9637
  }
8660
9638
 
@@ -9404,6 +10382,90 @@ export class UpdateBasicAcceleratorResponse extends $tea.Model {
9404
10382
  }
9405
10383
  }
9406
10384
 
10385
+ export class UpdateBasicEndpointRequest extends $tea.Model {
10386
+ clientToken?: string;
10387
+ endpointGroupId?: string;
10388
+ endpointId?: string;
10389
+ name?: string;
10390
+ regionId?: string;
10391
+ static names(): { [key: string]: string } {
10392
+ return {
10393
+ clientToken: 'ClientToken',
10394
+ endpointGroupId: 'EndpointGroupId',
10395
+ endpointId: 'EndpointId',
10396
+ name: 'Name',
10397
+ regionId: 'RegionId',
10398
+ };
10399
+ }
10400
+
10401
+ static types(): { [key: string]: any } {
10402
+ return {
10403
+ clientToken: 'string',
10404
+ endpointGroupId: 'string',
10405
+ endpointId: 'string',
10406
+ name: 'string',
10407
+ regionId: 'string',
10408
+ };
10409
+ }
10410
+
10411
+ constructor(map?: { [key: string]: any }) {
10412
+ super(map);
10413
+ }
10414
+ }
10415
+
10416
+ export class UpdateBasicEndpointResponseBody extends $tea.Model {
10417
+ endpointGroupId?: string;
10418
+ endpointId?: string;
10419
+ name?: string;
10420
+ requestId?: string;
10421
+ static names(): { [key: string]: string } {
10422
+ return {
10423
+ endpointGroupId: 'EndpointGroupId',
10424
+ endpointId: 'EndpointId',
10425
+ name: 'Name',
10426
+ requestId: 'RequestId',
10427
+ };
10428
+ }
10429
+
10430
+ static types(): { [key: string]: any } {
10431
+ return {
10432
+ endpointGroupId: 'string',
10433
+ endpointId: 'string',
10434
+ name: 'string',
10435
+ requestId: 'string',
10436
+ };
10437
+ }
10438
+
10439
+ constructor(map?: { [key: string]: any }) {
10440
+ super(map);
10441
+ }
10442
+ }
10443
+
10444
+ export class UpdateBasicEndpointResponse extends $tea.Model {
10445
+ headers: { [key: string]: string };
10446
+ statusCode: number;
10447
+ body: UpdateBasicEndpointResponseBody;
10448
+ static names(): { [key: string]: string } {
10449
+ return {
10450
+ headers: 'headers',
10451
+ statusCode: 'statusCode',
10452
+ body: 'body',
10453
+ };
10454
+ }
10455
+
10456
+ static types(): { [key: string]: any } {
10457
+ return {
10458
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
10459
+ statusCode: 'number',
10460
+ body: UpdateBasicEndpointResponseBody,
10461
+ };
10462
+ }
10463
+
10464
+ constructor(map?: { [key: string]: any }) {
10465
+ super(map);
10466
+ }
10467
+ }
10468
+
9407
10469
  export class UpdateBasicEndpointGroupRequest extends $tea.Model {
9408
10470
  clientToken?: string;
9409
10471
  description?: string;
@@ -10543,6 +11605,68 @@ export class CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpoint
10543
11605
  }
10544
11606
  }
10545
11607
 
11608
+ export class CreateBasicEndpointsRequestEndpoints extends $tea.Model {
11609
+ endpointAddress?: string;
11610
+ endpointSubAddress?: string;
11611
+ endpointSubAddressType?: string;
11612
+ endpointType?: string;
11613
+ endpointZoneId?: string;
11614
+ name?: string;
11615
+ static names(): { [key: string]: string } {
11616
+ return {
11617
+ endpointAddress: 'EndpointAddress',
11618
+ endpointSubAddress: 'EndpointSubAddress',
11619
+ endpointSubAddressType: 'EndpointSubAddressType',
11620
+ endpointType: 'EndpointType',
11621
+ endpointZoneId: 'EndpointZoneId',
11622
+ name: 'Name',
11623
+ };
11624
+ }
11625
+
11626
+ static types(): { [key: string]: any } {
11627
+ return {
11628
+ endpointAddress: 'string',
11629
+ endpointSubAddress: 'string',
11630
+ endpointSubAddressType: 'string',
11631
+ endpointType: 'string',
11632
+ endpointZoneId: 'string',
11633
+ name: 'string',
11634
+ };
11635
+ }
11636
+
11637
+ constructor(map?: { [key: string]: any }) {
11638
+ super(map);
11639
+ }
11640
+ }
11641
+
11642
+ export class CreateBasicEndpointsResponseBodyEndpoints extends $tea.Model {
11643
+ endpointAddress?: string;
11644
+ endpointId?: string;
11645
+ endpointSubAddress?: string;
11646
+ endpointType?: string;
11647
+ static names(): { [key: string]: string } {
11648
+ return {
11649
+ endpointAddress: 'EndpointAddress',
11650
+ endpointId: 'EndpointId',
11651
+ endpointSubAddress: 'EndpointSubAddress',
11652
+ endpointType: 'EndpointType',
11653
+ };
11654
+ }
11655
+
11656
+ static types(): { [key: string]: any } {
11657
+ return {
11658
+ endpointAddress: 'string',
11659
+ endpointId: 'string',
11660
+ endpointSubAddress: 'string',
11661
+ endpointType: 'string',
11662
+ };
11663
+ }
11664
+
11665
+ constructor(map?: { [key: string]: any }) {
11666
+ super(map);
11667
+ }
11668
+ }
11669
+
10546
11670
  export class CreateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations extends $tea.Model {
10547
11671
  fromPort?: number;
10548
11672
  protocols?: string[];
@@ -12792,6 +13916,86 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
12792
13916
  }
12793
13917
  }
12794
13918
 
13919
+ export class ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations extends $tea.Model {
13920
+ accelerateIpId?: string;
13921
+ acceleratorId?: string;
13922
+ endpointAddress?: string;
13923
+ endpointId?: string;
13924
+ endpointName?: string;
13925
+ endpointSubAddress?: string;
13926
+ endpointSubAddressType?: string;
13927
+ endpointType?: string;
13928
+ endpointZoneId?: string;
13929
+ ipAddress?: string;
13930
+ state?: string;
13931
+ static names(): { [key: string]: string } {
13932
+ return {
13933
+ accelerateIpId: 'AccelerateIpId',
13934
+ acceleratorId: 'AcceleratorId',
13935
+ endpointAddress: 'EndpointAddress',
13936
+ endpointId: 'EndpointId',
13937
+ endpointName: 'EndpointName',
13938
+ endpointSubAddress: 'EndpointSubAddress',
13939
+ endpointSubAddressType: 'EndpointSubAddressType',
13940
+ endpointType: 'EndpointType',
13941
+ endpointZoneId: 'EndpointZoneId',
13942
+ ipAddress: 'IpAddress',
13943
+ state: 'State',
13944
+ };
13945
+ }
13946
+
13947
+ static types(): { [key: string]: any } {
13948
+ return {
13949
+ accelerateIpId: 'string',
13950
+ acceleratorId: 'string',
13951
+ endpointAddress: 'string',
13952
+ endpointId: 'string',
13953
+ endpointName: 'string',
13954
+ endpointSubAddress: 'string',
13955
+ endpointSubAddressType: 'string',
13956
+ endpointType: 'string',
13957
+ endpointZoneId: 'string',
13958
+ ipAddress: 'string',
13959
+ state: 'string',
13960
+ };
13961
+ }
13962
+
13963
+ constructor(map?: { [key: string]: any }) {
13964
+ super(map);
13965
+ }
13966
+ }
13967
+
13968
+ export class ListBasicAccelerateIpsResponseBodyAccelerateIps extends $tea.Model {
13969
+ accelerateIpAddress?: string;
13970
+ accelerateIpId?: string;
13971
+ acceleratorId?: string;
13972
+ ipSetId?: string;
13973
+ state?: string;
13974
+ static names(): { [key: string]: string } {
13975
+ return {
13976
+ accelerateIpAddress: 'AccelerateIpAddress',
13977
+ accelerateIpId: 'AccelerateIpId',
13978
+ acceleratorId: 'AcceleratorId',
13979
+ ipSetId: 'IpSetId',
13980
+ state: 'State',
13981
+ };
13982
+ }
13983
+
13984
+ static types(): { [key: string]: any } {
13985
+ return {
13986
+ accelerateIpAddress: 'string',
13987
+ accelerateIpId: 'string',
13988
+ acceleratorId: 'string',
13989
+ ipSetId: 'string',
13990
+ state: 'string',
13991
+ };
13992
+ }
13993
+
13994
+ constructor(map?: { [key: string]: any }) {
13995
+ super(map);
13996
+ }
13997
+ }
13998
+
12795
13999
  export class ListBasicAcceleratorsRequestTag extends $tea.Model {
12796
14000
  key?: string;
12797
14001
  value?: string;
@@ -12947,6 +14151,52 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
12947
14151
  }
12948
14152
  }
12949
14153
 
14154
+ export class ListBasicEndpointsResponseBodyEndpoints extends $tea.Model {
14155
+ acceleratorId?: string;
14156
+ endpointAddress?: string;
14157
+ endpointGroupId?: string;
14158
+ endpointId?: string;
14159
+ endpointSubAddress?: string;
14160
+ endpointSubAddressType?: string;
14161
+ endpointType?: string;
14162
+ endpointZoneId?: string;
14163
+ name?: string;
14164
+ state?: string;
14165
+ static names(): { [key: string]: string } {
14166
+ return {
14167
+ acceleratorId: 'AcceleratorId',
14168
+ endpointAddress: 'EndpointAddress',
14169
+ endpointGroupId: 'EndpointGroupId',
14170
+ endpointId: 'EndpointId',
14171
+ endpointSubAddress: 'EndpointSubAddress',
14172
+ endpointSubAddressType: 'EndpointSubAddressType',
14173
+ endpointType: 'EndpointType',
14174
+ endpointZoneId: 'EndpointZoneId',
14175
+ name: 'Name',
14176
+ state: 'State',
14177
+ };
14178
+ }
14179
+
14180
+ static types(): { [key: string]: any } {
14181
+ return {
14182
+ acceleratorId: 'string',
14183
+ endpointAddress: 'string',
14184
+ endpointGroupId: 'string',
14185
+ endpointId: 'string',
14186
+ endpointSubAddress: 'string',
14187
+ endpointSubAddressType: 'string',
14188
+ endpointType: 'string',
14189
+ endpointZoneId: 'string',
14190
+ name: 'string',
14191
+ state: 'string',
14192
+ };
14193
+ }
14194
+
14195
+ constructor(map?: { [key: string]: any }) {
14196
+ super(map);
14197
+ }
14198
+ }
14199
+
12950
14200
  export class ListBusiRegionsResponseBodyRegions extends $tea.Model {
12951
14201
  localName?: string;
12952
14202
  regionId?: string;
@@ -13838,21 +15088,118 @@ export class ListListenersResponseBodyListeners extends $tea.Model {
13838
15088
 
13839
15089
  static types(): { [key: string]: any } {
13840
15090
  return {
13841
- acceleratorId: 'string',
13842
- backendPorts: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersBackendPorts },
13843
- certificates: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersCertificates },
13844
- clientAffinity: 'string',
13845
- createTime: 'number',
13846
- description: 'string',
13847
- listenerId: 'string',
13848
- name: 'string',
13849
- portRanges: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersPortRanges },
13850
- protocol: 'string',
13851
- proxyProtocol: 'boolean',
13852
- securityPolicyId: 'string',
13853
- state: 'string',
13854
- type: 'string',
13855
- XForwardedForConfig: ListListenersResponseBodyListenersXForwardedForConfig,
15091
+ acceleratorId: 'string',
15092
+ backendPorts: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersBackendPorts },
15093
+ certificates: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersCertificates },
15094
+ clientAffinity: 'string',
15095
+ createTime: 'number',
15096
+ description: 'string',
15097
+ listenerId: 'string',
15098
+ name: 'string',
15099
+ portRanges: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersPortRanges },
15100
+ protocol: 'string',
15101
+ proxyProtocol: 'boolean',
15102
+ securityPolicyId: 'string',
15103
+ state: 'string',
15104
+ type: 'string',
15105
+ XForwardedForConfig: ListListenersResponseBodyListenersXForwardedForConfig,
15106
+ };
15107
+ }
15108
+
15109
+ constructor(map?: { [key: string]: any }) {
15110
+ super(map);
15111
+ }
15112
+ }
15113
+
15114
+ export class ListSpareIpsResponseBodySpareIps extends $tea.Model {
15115
+ spareIp?: string;
15116
+ state?: string;
15117
+ static names(): { [key: string]: string } {
15118
+ return {
15119
+ spareIp: 'SpareIp',
15120
+ state: 'State',
15121
+ };
15122
+ }
15123
+
15124
+ static types(): { [key: string]: any } {
15125
+ return {
15126
+ spareIp: 'string',
15127
+ state: 'string',
15128
+ };
15129
+ }
15130
+
15131
+ constructor(map?: { [key: string]: any }) {
15132
+ super(map);
15133
+ }
15134
+ }
15135
+
15136
+ export class ListSystemSecurityPoliciesResponseBodySecurityPolicies extends $tea.Model {
15137
+ ciphers?: string[];
15138
+ securityPolicyId?: string;
15139
+ tlsVersions?: string[];
15140
+ static names(): { [key: string]: string } {
15141
+ return {
15142
+ ciphers: 'Ciphers',
15143
+ securityPolicyId: 'SecurityPolicyId',
15144
+ tlsVersions: 'TlsVersions',
15145
+ };
15146
+ }
15147
+
15148
+ static types(): { [key: string]: any } {
15149
+ return {
15150
+ ciphers: { 'type': 'array', 'itemType': 'string' },
15151
+ securityPolicyId: 'string',
15152
+ tlsVersions: { 'type': 'array', 'itemType': 'string' },
15153
+ };
15154
+ }
15155
+
15156
+ constructor(map?: { [key: string]: any }) {
15157
+ super(map);
15158
+ }
15159
+ }
15160
+
15161
+ export class ListTagResourcesRequestTag extends $tea.Model {
15162
+ key?: string;
15163
+ value?: string;
15164
+ static names(): { [key: string]: string } {
15165
+ return {
15166
+ key: 'Key',
15167
+ value: 'Value',
15168
+ };
15169
+ }
15170
+
15171
+ static types(): { [key: string]: any } {
15172
+ return {
15173
+ key: 'string',
15174
+ value: 'string',
15175
+ };
15176
+ }
15177
+
15178
+ constructor(map?: { [key: string]: any }) {
15179
+ super(map);
15180
+ }
15181
+ }
15182
+
15183
+ export class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
15184
+ resourceId?: string;
15185
+ resourceType?: string;
15186
+ tagKey?: string;
15187
+ tagValue?: string;
15188
+ static names(): { [key: string]: string } {
15189
+ return {
15190
+ resourceId: 'ResourceId',
15191
+ resourceType: 'ResourceType',
15192
+ tagKey: 'TagKey',
15193
+ tagValue: 'TagValue',
15194
+ };
15195
+ }
15196
+
15197
+ static types(): { [key: string]: any } {
15198
+ return {
15199
+ resourceId: 'string',
15200
+ resourceType: 'string',
15201
+ tagKey: 'string',
15202
+ tagValue: 'string',
13856
15203
  };
13857
15204
  }
13858
15205
 
@@ -13861,20 +15208,17 @@ export class ListListenersResponseBodyListeners extends $tea.Model {
13861
15208
  }
13862
15209
  }
13863
15210
 
13864
- export class ListSpareIpsResponseBodySpareIps extends $tea.Model {
13865
- spareIp?: string;
13866
- state?: string;
15211
+ export class ListTagResourcesResponseBodyTagResources extends $tea.Model {
15212
+ tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[];
13867
15213
  static names(): { [key: string]: string } {
13868
15214
  return {
13869
- spareIp: 'SpareIp',
13870
- state: 'State',
15215
+ tagResource: 'TagResource',
13871
15216
  };
13872
15217
  }
13873
15218
 
13874
15219
  static types(): { [key: string]: any } {
13875
15220
  return {
13876
- spareIp: 'string',
13877
- state: 'string',
15221
+ tagResource: { 'type': 'array', 'itemType': ListTagResourcesResponseBodyTagResourcesTagResource },
13878
15222
  };
13879
15223
  }
13880
15224
 
@@ -13883,23 +15227,17 @@ export class ListSpareIpsResponseBodySpareIps extends $tea.Model {
13883
15227
  }
13884
15228
  }
13885
15229
 
13886
- export class ListSystemSecurityPoliciesResponseBodySecurityPolicies extends $tea.Model {
13887
- ciphers?: string[];
13888
- securityPolicyId?: string;
13889
- tlsVersions?: string[];
15230
+ export class RemoveEntriesFromAclRequestAclEntries extends $tea.Model {
15231
+ entry?: string;
13890
15232
  static names(): { [key: string]: string } {
13891
15233
  return {
13892
- ciphers: 'Ciphers',
13893
- securityPolicyId: 'SecurityPolicyId',
13894
- tlsVersions: 'TlsVersions',
15234
+ entry: 'Entry',
13895
15235
  };
13896
15236
  }
13897
15237
 
13898
15238
  static types(): { [key: string]: any } {
13899
15239
  return {
13900
- ciphers: { 'type': 'array', 'itemType': 'string' },
13901
- securityPolicyId: 'string',
13902
- tlsVersions: { 'type': 'array', 'itemType': 'string' },
15240
+ entry: 'string',
13903
15241
  };
13904
15242
  }
13905
15243
 
@@ -13908,17 +15246,20 @@ export class ListSystemSecurityPoliciesResponseBodySecurityPolicies extends $tea
13908
15246
  }
13909
15247
  }
13910
15248
 
13911
- export class RemoveEntriesFromAclRequestAclEntries extends $tea.Model {
13912
- entry?: string;
15249
+ export class TagResourcesRequestTag extends $tea.Model {
15250
+ key?: string;
15251
+ value?: string;
13913
15252
  static names(): { [key: string]: string } {
13914
15253
  return {
13915
- entry: 'Entry',
15254
+ key: 'Key',
15255
+ value: 'Value',
13916
15256
  };
13917
15257
  }
13918
15258
 
13919
15259
  static types(): { [key: string]: any } {
13920
15260
  return {
13921
- entry: 'string',
15261
+ key: 'string',
15262
+ value: 'string',
13922
15263
  };
13923
15264
  }
13924
15265
 
@@ -15450,6 +16791,71 @@ export default class Client extends OpenApi {
15450
16791
  return await this.createBasicAcceleratorWithOptions(request, runtime);
15451
16792
  }
15452
16793
 
16794
+ async createBasicEndpointWithOptions(request: CreateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointResponse> {
16795
+ Util.validateModel(request);
16796
+ let query = { };
16797
+ if (!Util.isUnset(request.acceleratorId)) {
16798
+ query["AcceleratorId"] = request.acceleratorId;
16799
+ }
16800
+
16801
+ if (!Util.isUnset(request.clientToken)) {
16802
+ query["ClientToken"] = request.clientToken;
16803
+ }
16804
+
16805
+ if (!Util.isUnset(request.endpointAddress)) {
16806
+ query["EndpointAddress"] = request.endpointAddress;
16807
+ }
16808
+
16809
+ if (!Util.isUnset(request.endpointGroupId)) {
16810
+ query["EndpointGroupId"] = request.endpointGroupId;
16811
+ }
16812
+
16813
+ if (!Util.isUnset(request.endpointSubAddress)) {
16814
+ query["EndpointSubAddress"] = request.endpointSubAddress;
16815
+ }
16816
+
16817
+ if (!Util.isUnset(request.endpointSubAddressType)) {
16818
+ query["EndpointSubAddressType"] = request.endpointSubAddressType;
16819
+ }
16820
+
16821
+ if (!Util.isUnset(request.endpointType)) {
16822
+ query["EndpointType"] = request.endpointType;
16823
+ }
16824
+
16825
+ if (!Util.isUnset(request.endpointZoneId)) {
16826
+ query["EndpointZoneId"] = request.endpointZoneId;
16827
+ }
16828
+
16829
+ if (!Util.isUnset(request.name)) {
16830
+ query["Name"] = request.name;
16831
+ }
16832
+
16833
+ if (!Util.isUnset(request.regionId)) {
16834
+ query["RegionId"] = request.regionId;
16835
+ }
16836
+
16837
+ let req = new $OpenApi.OpenApiRequest({
16838
+ query: OpenApiUtil.query(query),
16839
+ });
16840
+ let params = new $OpenApi.Params({
16841
+ action: "CreateBasicEndpoint",
16842
+ version: "2019-11-20",
16843
+ protocol: "HTTPS",
16844
+ pathname: "/",
16845
+ method: "POST",
16846
+ authType: "AK",
16847
+ style: "RPC",
16848
+ reqBodyType: "formData",
16849
+ bodyType: "json",
16850
+ });
16851
+ return $tea.cast<CreateBasicEndpointResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointResponse({}));
16852
+ }
16853
+
16854
+ async createBasicEndpoint(request: CreateBasicEndpointRequest): Promise<CreateBasicEndpointResponse> {
16855
+ let runtime = new $Util.RuntimeOptions({ });
16856
+ return await this.createBasicEndpointWithOptions(request, runtime);
16857
+ }
16858
+
15453
16859
  async createBasicEndpointGroupWithOptions(request: CreateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointGroupResponse> {
15454
16860
  Util.validateModel(request);
15455
16861
  let query = { };
@@ -15511,6 +16917,51 @@ export default class Client extends OpenApi {
15511
16917
  return await this.createBasicEndpointGroupWithOptions(request, runtime);
15512
16918
  }
15513
16919
 
16920
+ async createBasicEndpointsWithOptions(request: CreateBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointsResponse> {
16921
+ Util.validateModel(request);
16922
+ let query = { };
16923
+ if (!Util.isUnset(request.acceleratorId)) {
16924
+ query["AcceleratorId"] = request.acceleratorId;
16925
+ }
16926
+
16927
+ if (!Util.isUnset(request.clientToken)) {
16928
+ query["ClientToken"] = request.clientToken;
16929
+ }
16930
+
16931
+ if (!Util.isUnset(request.endpointGroupId)) {
16932
+ query["EndpointGroupId"] = request.endpointGroupId;
16933
+ }
16934
+
16935
+ if (!Util.isUnset(request.endpoints)) {
16936
+ query["Endpoints"] = request.endpoints;
16937
+ }
16938
+
16939
+ if (!Util.isUnset(request.regionId)) {
16940
+ query["RegionId"] = request.regionId;
16941
+ }
16942
+
16943
+ let req = new $OpenApi.OpenApiRequest({
16944
+ query: OpenApiUtil.query(query),
16945
+ });
16946
+ let params = new $OpenApi.Params({
16947
+ action: "CreateBasicEndpoints",
16948
+ version: "2019-11-20",
16949
+ protocol: "HTTPS",
16950
+ pathname: "/",
16951
+ method: "POST",
16952
+ authType: "AK",
16953
+ style: "RPC",
16954
+ reqBodyType: "formData",
16955
+ bodyType: "json",
16956
+ });
16957
+ return $tea.cast<CreateBasicEndpointsResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointsResponse({}));
16958
+ }
16959
+
16960
+ async createBasicEndpoints(request: CreateBasicEndpointsRequest): Promise<CreateBasicEndpointsResponse> {
16961
+ let runtime = new $Util.RuntimeOptions({ });
16962
+ return await this.createBasicEndpointsWithOptions(request, runtime);
16963
+ }
16964
+
15514
16965
  async createBasicIpSetWithOptions(request: CreateBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicIpSetResponse> {
15515
16966
  Util.validateModel(request);
15516
16967
  let query = { };
@@ -17594,26 +19045,141 @@ export default class Client extends OpenApi {
17594
19045
  return await this.dissociateAdditionalCertificatesFromListenerWithOptions(request, runtime);
17595
19046
  }
17596
19047
 
17597
- async enableApplicationMonitorWithOptions(request: EnableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationMonitorResponse> {
19048
+ async enableApplicationMonitorWithOptions(request: EnableApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationMonitorResponse> {
19049
+ Util.validateModel(request);
19050
+ let query = { };
19051
+ if (!Util.isUnset(request.clientToken)) {
19052
+ query["ClientToken"] = request.clientToken;
19053
+ }
19054
+
19055
+ if (!Util.isUnset(request.regionId)) {
19056
+ query["RegionId"] = request.regionId;
19057
+ }
19058
+
19059
+ if (!Util.isUnset(request.taskId)) {
19060
+ query["TaskId"] = request.taskId;
19061
+ }
19062
+
19063
+ let req = new $OpenApi.OpenApiRequest({
19064
+ query: OpenApiUtil.query(query),
19065
+ });
19066
+ let params = new $OpenApi.Params({
19067
+ action: "EnableApplicationMonitor",
19068
+ version: "2019-11-20",
19069
+ protocol: "HTTPS",
19070
+ pathname: "/",
19071
+ method: "POST",
19072
+ authType: "AK",
19073
+ style: "RPC",
19074
+ reqBodyType: "formData",
19075
+ bodyType: "json",
19076
+ });
19077
+ return $tea.cast<EnableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new EnableApplicationMonitorResponse({}));
19078
+ }
19079
+
19080
+ async enableApplicationMonitor(request: EnableApplicationMonitorRequest): Promise<EnableApplicationMonitorResponse> {
19081
+ let runtime = new $Util.RuntimeOptions({ });
19082
+ return await this.enableApplicationMonitorWithOptions(request, runtime);
19083
+ }
19084
+
19085
+ async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
19086
+ Util.validateModel(request);
19087
+ let query = { };
19088
+ if (!Util.isUnset(request.aclId)) {
19089
+ query["AclId"] = request.aclId;
19090
+ }
19091
+
19092
+ if (!Util.isUnset(request.regionId)) {
19093
+ query["RegionId"] = request.regionId;
19094
+ }
19095
+
19096
+ let req = new $OpenApi.OpenApiRequest({
19097
+ query: OpenApiUtil.query(query),
19098
+ });
19099
+ let params = new $OpenApi.Params({
19100
+ action: "GetAcl",
19101
+ version: "2019-11-20",
19102
+ protocol: "HTTPS",
19103
+ pathname: "/",
19104
+ method: "POST",
19105
+ authType: "AK",
19106
+ style: "RPC",
19107
+ reqBodyType: "formData",
19108
+ bodyType: "json",
19109
+ });
19110
+ return $tea.cast<GetAclResponse>(await this.callApi(params, req, runtime), new GetAclResponse({}));
19111
+ }
19112
+
19113
+ async getAcl(request: GetAclRequest): Promise<GetAclResponse> {
19114
+ let runtime = new $Util.RuntimeOptions({ });
19115
+ return await this.getAclWithOptions(request, runtime);
19116
+ }
19117
+
19118
+ async getBasicAccelerateIpWithOptions(request: GetBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpResponse> {
19119
+ Util.validateModel(request);
19120
+ let query = { };
19121
+ if (!Util.isUnset(request.accelerateIpId)) {
19122
+ query["AccelerateIpId"] = request.accelerateIpId;
19123
+ }
19124
+
19125
+ if (!Util.isUnset(request.clientToken)) {
19126
+ query["ClientToken"] = request.clientToken;
19127
+ }
19128
+
19129
+ if (!Util.isUnset(request.regionId)) {
19130
+ query["RegionId"] = request.regionId;
19131
+ }
19132
+
19133
+ let req = new $OpenApi.OpenApiRequest({
19134
+ query: OpenApiUtil.query(query),
19135
+ });
19136
+ let params = new $OpenApi.Params({
19137
+ action: "GetBasicAccelerateIp",
19138
+ version: "2019-11-20",
19139
+ protocol: "HTTPS",
19140
+ pathname: "/",
19141
+ method: "POST",
19142
+ authType: "AK",
19143
+ style: "RPC",
19144
+ reqBodyType: "formData",
19145
+ bodyType: "json",
19146
+ });
19147
+ return $tea.cast<GetBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpResponse({}));
19148
+ }
19149
+
19150
+ async getBasicAccelerateIp(request: GetBasicAccelerateIpRequest): Promise<GetBasicAccelerateIpResponse> {
19151
+ let runtime = new $Util.RuntimeOptions({ });
19152
+ return await this.getBasicAccelerateIpWithOptions(request, runtime);
19153
+ }
19154
+
19155
+ async getBasicAccelerateIpEndpointRelationWithOptions(request: GetBasicAccelerateIpEndpointRelationRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
17598
19156
  Util.validateModel(request);
17599
19157
  let query = { };
19158
+ if (!Util.isUnset(request.accelerateIpId)) {
19159
+ query["AccelerateIpId"] = request.accelerateIpId;
19160
+ }
19161
+
19162
+ if (!Util.isUnset(request.acceleratorId)) {
19163
+ query["AcceleratorId"] = request.acceleratorId;
19164
+ }
19165
+
17600
19166
  if (!Util.isUnset(request.clientToken)) {
17601
19167
  query["ClientToken"] = request.clientToken;
17602
19168
  }
17603
19169
 
17604
- if (!Util.isUnset(request.regionId)) {
17605
- query["RegionId"] = request.regionId;
19170
+ if (!Util.isUnset(request.endpointId)) {
19171
+ query["EndpointId"] = request.endpointId;
17606
19172
  }
17607
19173
 
17608
- if (!Util.isUnset(request.taskId)) {
17609
- query["TaskId"] = request.taskId;
19174
+ if (!Util.isUnset(request.regionId)) {
19175
+ query["RegionId"] = request.regionId;
17610
19176
  }
17611
19177
 
17612
19178
  let req = new $OpenApi.OpenApiRequest({
17613
19179
  query: OpenApiUtil.query(query),
17614
19180
  });
17615
19181
  let params = new $OpenApi.Params({
17616
- action: "EnableApplicationMonitor",
19182
+ action: "GetBasicAccelerateIpEndpointRelation",
17617
19183
  version: "2019-11-20",
17618
19184
  protocol: "HTTPS",
17619
19185
  pathname: "/",
@@ -17623,19 +19189,23 @@ export default class Client extends OpenApi {
17623
19189
  reqBodyType: "formData",
17624
19190
  bodyType: "json",
17625
19191
  });
17626
- return $tea.cast<EnableApplicationMonitorResponse>(await this.callApi(params, req, runtime), new EnableApplicationMonitorResponse({}));
19192
+ return $tea.cast<GetBasicAccelerateIpEndpointRelationResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpEndpointRelationResponse({}));
17627
19193
  }
17628
19194
 
17629
- async enableApplicationMonitor(request: EnableApplicationMonitorRequest): Promise<EnableApplicationMonitorResponse> {
19195
+ async getBasicAccelerateIpEndpointRelation(request: GetBasicAccelerateIpEndpointRelationRequest): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
17630
19196
  let runtime = new $Util.RuntimeOptions({ });
17631
- return await this.enableApplicationMonitorWithOptions(request, runtime);
19197
+ return await this.getBasicAccelerateIpEndpointRelationWithOptions(request, runtime);
17632
19198
  }
17633
19199
 
17634
- async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
19200
+ async getBasicAccelerateIpIdleCountWithOptions(request: GetBasicAccelerateIpIdleCountRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpIdleCountResponse> {
17635
19201
  Util.validateModel(request);
17636
19202
  let query = { };
17637
- if (!Util.isUnset(request.aclId)) {
17638
- query["AclId"] = request.aclId;
19203
+ if (!Util.isUnset(request.clientToken)) {
19204
+ query["ClientToken"] = request.clientToken;
19205
+ }
19206
+
19207
+ if (!Util.isUnset(request.ipSetId)) {
19208
+ query["IpSetId"] = request.ipSetId;
17639
19209
  }
17640
19210
 
17641
19211
  if (!Util.isUnset(request.regionId)) {
@@ -17646,7 +19216,7 @@ export default class Client extends OpenApi {
17646
19216
  query: OpenApiUtil.query(query),
17647
19217
  });
17648
19218
  let params = new $OpenApi.Params({
17649
- action: "GetAcl",
19219
+ action: "GetBasicAccelerateIpIdleCount",
17650
19220
  version: "2019-11-20",
17651
19221
  protocol: "HTTPS",
17652
19222
  pathname: "/",
@@ -17656,23 +19226,19 @@ export default class Client extends OpenApi {
17656
19226
  reqBodyType: "formData",
17657
19227
  bodyType: "json",
17658
19228
  });
17659
- return $tea.cast<GetAclResponse>(await this.callApi(params, req, runtime), new GetAclResponse({}));
19229
+ return $tea.cast<GetBasicAccelerateIpIdleCountResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpIdleCountResponse({}));
17660
19230
  }
17661
19231
 
17662
- async getAcl(request: GetAclRequest): Promise<GetAclResponse> {
19232
+ async getBasicAccelerateIpIdleCount(request: GetBasicAccelerateIpIdleCountRequest): Promise<GetBasicAccelerateIpIdleCountResponse> {
17663
19233
  let runtime = new $Util.RuntimeOptions({ });
17664
- return await this.getAclWithOptions(request, runtime);
19234
+ return await this.getBasicAccelerateIpIdleCountWithOptions(request, runtime);
17665
19235
  }
17666
19236
 
17667
- async getBasicAccelerateIpWithOptions(request: GetBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpResponse> {
19237
+ async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
17668
19238
  Util.validateModel(request);
17669
19239
  let query = { };
17670
- if (!Util.isUnset(request.accelerateIpId)) {
17671
- query["AccelerateIpId"] = request.accelerateIpId;
17672
- }
17673
-
17674
- if (!Util.isUnset(request.clientToken)) {
17675
- query["ClientToken"] = request.clientToken;
19240
+ if (!Util.isUnset(request.acceleratorId)) {
19241
+ query["AcceleratorId"] = request.acceleratorId;
17676
19242
  }
17677
19243
 
17678
19244
  if (!Util.isUnset(request.regionId)) {
@@ -17683,7 +19249,7 @@ export default class Client extends OpenApi {
17683
19249
  query: OpenApiUtil.query(query),
17684
19250
  });
17685
19251
  let params = new $OpenApi.Params({
17686
- action: "GetBasicAccelerateIp",
19252
+ action: "GetBasicAccelerator",
17687
19253
  version: "2019-11-20",
17688
19254
  protocol: "HTTPS",
17689
19255
  pathname: "/",
@@ -17693,19 +19259,23 @@ export default class Client extends OpenApi {
17693
19259
  reqBodyType: "formData",
17694
19260
  bodyType: "json",
17695
19261
  });
17696
- return $tea.cast<GetBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpResponse({}));
19262
+ return $tea.cast<GetBasicAcceleratorResponse>(await this.callApi(params, req, runtime), new GetBasicAcceleratorResponse({}));
17697
19263
  }
17698
19264
 
17699
- async getBasicAccelerateIp(request: GetBasicAccelerateIpRequest): Promise<GetBasicAccelerateIpResponse> {
19265
+ async getBasicAccelerator(request: GetBasicAcceleratorRequest): Promise<GetBasicAcceleratorResponse> {
17700
19266
  let runtime = new $Util.RuntimeOptions({ });
17701
- return await this.getBasicAccelerateIpWithOptions(request, runtime);
19267
+ return await this.getBasicAcceleratorWithOptions(request, runtime);
17702
19268
  }
17703
19269
 
17704
- async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
19270
+ async getBasicEndpointWithOptions(request: GetBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointResponse> {
17705
19271
  Util.validateModel(request);
17706
19272
  let query = { };
17707
- if (!Util.isUnset(request.acceleratorId)) {
17708
- query["AcceleratorId"] = request.acceleratorId;
19273
+ if (!Util.isUnset(request.clientToken)) {
19274
+ query["ClientToken"] = request.clientToken;
19275
+ }
19276
+
19277
+ if (!Util.isUnset(request.endpointId)) {
19278
+ query["EndpointId"] = request.endpointId;
17709
19279
  }
17710
19280
 
17711
19281
  if (!Util.isUnset(request.regionId)) {
@@ -17716,7 +19286,7 @@ export default class Client extends OpenApi {
17716
19286
  query: OpenApiUtil.query(query),
17717
19287
  });
17718
19288
  let params = new $OpenApi.Params({
17719
- action: "GetBasicAccelerator",
19289
+ action: "GetBasicEndpoint",
17720
19290
  version: "2019-11-20",
17721
19291
  protocol: "HTTPS",
17722
19292
  pathname: "/",
@@ -17726,12 +19296,12 @@ export default class Client extends OpenApi {
17726
19296
  reqBodyType: "formData",
17727
19297
  bodyType: "json",
17728
19298
  });
17729
- return $tea.cast<GetBasicAcceleratorResponse>(await this.callApi(params, req, runtime), new GetBasicAcceleratorResponse({}));
19299
+ return $tea.cast<GetBasicEndpointResponse>(await this.callApi(params, req, runtime), new GetBasicEndpointResponse({}));
17730
19300
  }
17731
19301
 
17732
- async getBasicAccelerator(request: GetBasicAcceleratorRequest): Promise<GetBasicAcceleratorResponse> {
19302
+ async getBasicEndpoint(request: GetBasicEndpointRequest): Promise<GetBasicEndpointResponse> {
17733
19303
  let runtime = new $Util.RuntimeOptions({ });
17734
- return await this.getBasicAcceleratorWithOptions(request, runtime);
19304
+ return await this.getBasicEndpointWithOptions(request, runtime);
17735
19305
  }
17736
19306
 
17737
19307
  async getBasicEndpointGroupWithOptions(request: GetBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointGroupResponse> {
@@ -18175,7 +19745,207 @@ export default class Client extends OpenApi {
18175
19745
  query: OpenApiUtil.query(query),
18176
19746
  });
18177
19747
  let params = new $OpenApi.Params({
18178
- action: "ListAvailableBusiRegions",
19748
+ action: "ListAvailableBusiRegions",
19749
+ version: "2019-11-20",
19750
+ protocol: "HTTPS",
19751
+ pathname: "/",
19752
+ method: "POST",
19753
+ authType: "AK",
19754
+ style: "RPC",
19755
+ reqBodyType: "formData",
19756
+ bodyType: "json",
19757
+ });
19758
+ return $tea.cast<ListAvailableBusiRegionsResponse>(await this.callApi(params, req, runtime), new ListAvailableBusiRegionsResponse({}));
19759
+ }
19760
+
19761
+ async listAvailableBusiRegions(request: ListAvailableBusiRegionsRequest): Promise<ListAvailableBusiRegionsResponse> {
19762
+ let runtime = new $Util.RuntimeOptions({ });
19763
+ return await this.listAvailableBusiRegionsWithOptions(request, runtime);
19764
+ }
19765
+
19766
+ async listBandwidthPackagesWithOptions(request: ListBandwidthPackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthPackagesResponse> {
19767
+ Util.validateModel(request);
19768
+ let query = { };
19769
+ if (!Util.isUnset(request.bandwidthPackageId)) {
19770
+ query["BandwidthPackageId"] = request.bandwidthPackageId;
19771
+ }
19772
+
19773
+ if (!Util.isUnset(request.pageNumber)) {
19774
+ query["PageNumber"] = request.pageNumber;
19775
+ }
19776
+
19777
+ if (!Util.isUnset(request.pageSize)) {
19778
+ query["PageSize"] = request.pageSize;
19779
+ }
19780
+
19781
+ if (!Util.isUnset(request.regionId)) {
19782
+ query["RegionId"] = request.regionId;
19783
+ }
19784
+
19785
+ if (!Util.isUnset(request.resourceGroupId)) {
19786
+ query["ResourceGroupId"] = request.resourceGroupId;
19787
+ }
19788
+
19789
+ if (!Util.isUnset(request.state)) {
19790
+ query["State"] = request.state;
19791
+ }
19792
+
19793
+ if (!Util.isUnset(request.tag)) {
19794
+ query["Tag"] = request.tag;
19795
+ }
19796
+
19797
+ if (!Util.isUnset(request.type)) {
19798
+ query["Type"] = request.type;
19799
+ }
19800
+
19801
+ let req = new $OpenApi.OpenApiRequest({
19802
+ query: OpenApiUtil.query(query),
19803
+ });
19804
+ let params = new $OpenApi.Params({
19805
+ action: "ListBandwidthPackages",
19806
+ version: "2019-11-20",
19807
+ protocol: "HTTPS",
19808
+ pathname: "/",
19809
+ method: "POST",
19810
+ authType: "AK",
19811
+ style: "RPC",
19812
+ reqBodyType: "formData",
19813
+ bodyType: "json",
19814
+ });
19815
+ return $tea.cast<ListBandwidthPackagesResponse>(await this.callApi(params, req, runtime), new ListBandwidthPackagesResponse({}));
19816
+ }
19817
+
19818
+ async listBandwidthPackages(request: ListBandwidthPackagesRequest): Promise<ListBandwidthPackagesResponse> {
19819
+ let runtime = new $Util.RuntimeOptions({ });
19820
+ return await this.listBandwidthPackagesWithOptions(request, runtime);
19821
+ }
19822
+
19823
+ async listBandwidthackagesWithOptions(request: ListBandwidthackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthackagesResponse> {
19824
+ Util.validateModel(request);
19825
+ let query = { };
19826
+ if (!Util.isUnset(request.pageNumber)) {
19827
+ query["PageNumber"] = request.pageNumber;
19828
+ }
19829
+
19830
+ if (!Util.isUnset(request.pageSize)) {
19831
+ query["PageSize"] = request.pageSize;
19832
+ }
19833
+
19834
+ if (!Util.isUnset(request.regionId)) {
19835
+ query["RegionId"] = request.regionId;
19836
+ }
19837
+
19838
+ let req = new $OpenApi.OpenApiRequest({
19839
+ query: OpenApiUtil.query(query),
19840
+ });
19841
+ let params = new $OpenApi.Params({
19842
+ action: "ListBandwidthackages",
19843
+ version: "2019-11-20",
19844
+ protocol: "HTTPS",
19845
+ pathname: "/",
19846
+ method: "POST",
19847
+ authType: "AK",
19848
+ style: "RPC",
19849
+ reqBodyType: "formData",
19850
+ bodyType: "json",
19851
+ });
19852
+ return $tea.cast<ListBandwidthackagesResponse>(await this.callApi(params, req, runtime), new ListBandwidthackagesResponse({}));
19853
+ }
19854
+
19855
+ async listBandwidthackages(request: ListBandwidthackagesRequest): Promise<ListBandwidthackagesResponse> {
19856
+ let runtime = new $Util.RuntimeOptions({ });
19857
+ return await this.listBandwidthackagesWithOptions(request, runtime);
19858
+ }
19859
+
19860
+ async listBasicAccelerateIpEndpointRelationsWithOptions(request: ListBasicAccelerateIpEndpointRelationsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
19861
+ Util.validateModel(request);
19862
+ let query = { };
19863
+ if (!Util.isUnset(request.accelerateIpId)) {
19864
+ query["AccelerateIpId"] = request.accelerateIpId;
19865
+ }
19866
+
19867
+ if (!Util.isUnset(request.acceleratorId)) {
19868
+ query["AcceleratorId"] = request.acceleratorId;
19869
+ }
19870
+
19871
+ if (!Util.isUnset(request.clientToken)) {
19872
+ query["ClientToken"] = request.clientToken;
19873
+ }
19874
+
19875
+ if (!Util.isUnset(request.endpointId)) {
19876
+ query["EndpointId"] = request.endpointId;
19877
+ }
19878
+
19879
+ if (!Util.isUnset(request.maxResults)) {
19880
+ query["MaxResults"] = request.maxResults;
19881
+ }
19882
+
19883
+ if (!Util.isUnset(request.nextToken)) {
19884
+ query["NextToken"] = request.nextToken;
19885
+ }
19886
+
19887
+ if (!Util.isUnset(request.regionId)) {
19888
+ query["RegionId"] = request.regionId;
19889
+ }
19890
+
19891
+ let req = new $OpenApi.OpenApiRequest({
19892
+ query: OpenApiUtil.query(query),
19893
+ });
19894
+ let params = new $OpenApi.Params({
19895
+ action: "ListBasicAccelerateIpEndpointRelations",
19896
+ version: "2019-11-20",
19897
+ protocol: "HTTPS",
19898
+ pathname: "/",
19899
+ method: "POST",
19900
+ authType: "AK",
19901
+ style: "RPC",
19902
+ reqBodyType: "formData",
19903
+ bodyType: "json",
19904
+ });
19905
+ return $tea.cast<ListBasicAccelerateIpEndpointRelationsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpEndpointRelationsResponse({}));
19906
+ }
19907
+
19908
+ async listBasicAccelerateIpEndpointRelations(request: ListBasicAccelerateIpEndpointRelationsRequest): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
19909
+ let runtime = new $Util.RuntimeOptions({ });
19910
+ return await this.listBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
19911
+ }
19912
+
19913
+ async listBasicAccelerateIpsWithOptions(request: ListBasicAccelerateIpsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpsResponse> {
19914
+ Util.validateModel(request);
19915
+ let query = { };
19916
+ if (!Util.isUnset(request.accelerateIpAddress)) {
19917
+ query["AccelerateIpAddress"] = request.accelerateIpAddress;
19918
+ }
19919
+
19920
+ if (!Util.isUnset(request.accelerateIpId)) {
19921
+ query["AccelerateIpId"] = request.accelerateIpId;
19922
+ }
19923
+
19924
+ if (!Util.isUnset(request.clientToken)) {
19925
+ query["ClientToken"] = request.clientToken;
19926
+ }
19927
+
19928
+ if (!Util.isUnset(request.ipSetId)) {
19929
+ query["IpSetId"] = request.ipSetId;
19930
+ }
19931
+
19932
+ if (!Util.isUnset(request.maxResults)) {
19933
+ query["MaxResults"] = request.maxResults;
19934
+ }
19935
+
19936
+ if (!Util.isUnset(request.nextToken)) {
19937
+ query["NextToken"] = request.nextToken;
19938
+ }
19939
+
19940
+ if (!Util.isUnset(request.regionId)) {
19941
+ query["RegionId"] = request.regionId;
19942
+ }
19943
+
19944
+ let req = new $OpenApi.OpenApiRequest({
19945
+ query: OpenApiUtil.query(query),
19946
+ });
19947
+ let params = new $OpenApi.Params({
19948
+ action: "ListBasicAccelerateIps",
18179
19949
  version: "2019-11-20",
18180
19950
  protocol: "HTTPS",
18181
19951
  pathname: "/",
@@ -18185,19 +19955,19 @@ export default class Client extends OpenApi {
18185
19955
  reqBodyType: "formData",
18186
19956
  bodyType: "json",
18187
19957
  });
18188
- return $tea.cast<ListAvailableBusiRegionsResponse>(await this.callApi(params, req, runtime), new ListAvailableBusiRegionsResponse({}));
19958
+ return $tea.cast<ListBasicAccelerateIpsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpsResponse({}));
18189
19959
  }
18190
19960
 
18191
- async listAvailableBusiRegions(request: ListAvailableBusiRegionsRequest): Promise<ListAvailableBusiRegionsResponse> {
19961
+ async listBasicAccelerateIps(request: ListBasicAccelerateIpsRequest): Promise<ListBasicAccelerateIpsResponse> {
18192
19962
  let runtime = new $Util.RuntimeOptions({ });
18193
- return await this.listAvailableBusiRegionsWithOptions(request, runtime);
19963
+ return await this.listBasicAccelerateIpsWithOptions(request, runtime);
18194
19964
  }
18195
19965
 
18196
- async listBandwidthPackagesWithOptions(request: ListBandwidthPackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthPackagesResponse> {
19966
+ async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
18197
19967
  Util.validateModel(request);
18198
19968
  let query = { };
18199
- if (!Util.isUnset(request.bandwidthPackageId)) {
18200
- query["BandwidthPackageId"] = request.bandwidthPackageId;
19969
+ if (!Util.isUnset(request.acceleratorId)) {
19970
+ query["AcceleratorId"] = request.acceleratorId;
18201
19971
  }
18202
19972
 
18203
19973
  if (!Util.isUnset(request.pageNumber)) {
@@ -18224,15 +19994,11 @@ export default class Client extends OpenApi {
18224
19994
  query["Tag"] = request.tag;
18225
19995
  }
18226
19996
 
18227
- if (!Util.isUnset(request.type)) {
18228
- query["Type"] = request.type;
18229
- }
18230
-
18231
19997
  let req = new $OpenApi.OpenApiRequest({
18232
19998
  query: OpenApiUtil.query(query),
18233
19999
  });
18234
20000
  let params = new $OpenApi.Params({
18235
- action: "ListBandwidthPackages",
20001
+ action: "ListBasicAccelerators",
18236
20002
  version: "2019-11-20",
18237
20003
  protocol: "HTTPS",
18238
20004
  pathname: "/",
@@ -18242,87 +20008,54 @@ export default class Client extends OpenApi {
18242
20008
  reqBodyType: "formData",
18243
20009
  bodyType: "json",
18244
20010
  });
18245
- return $tea.cast<ListBandwidthPackagesResponse>(await this.callApi(params, req, runtime), new ListBandwidthPackagesResponse({}));
20011
+ return $tea.cast<ListBasicAcceleratorsResponse>(await this.callApi(params, req, runtime), new ListBasicAcceleratorsResponse({}));
18246
20012
  }
18247
20013
 
18248
- async listBandwidthPackages(request: ListBandwidthPackagesRequest): Promise<ListBandwidthPackagesResponse> {
20014
+ async listBasicAccelerators(request: ListBasicAcceleratorsRequest): Promise<ListBasicAcceleratorsResponse> {
18249
20015
  let runtime = new $Util.RuntimeOptions({ });
18250
- return await this.listBandwidthPackagesWithOptions(request, runtime);
20016
+ return await this.listBasicAcceleratorsWithOptions(request, runtime);
18251
20017
  }
18252
20018
 
18253
- async listBandwidthackagesWithOptions(request: ListBandwidthackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListBandwidthackagesResponse> {
20019
+ async listBasicEndpointsWithOptions(request: ListBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicEndpointsResponse> {
18254
20020
  Util.validateModel(request);
18255
20021
  let query = { };
18256
- if (!Util.isUnset(request.pageNumber)) {
18257
- query["PageNumber"] = request.pageNumber;
20022
+ if (!Util.isUnset(request.clientToken)) {
20023
+ query["ClientToken"] = request.clientToken;
18258
20024
  }
18259
20025
 
18260
- if (!Util.isUnset(request.pageSize)) {
18261
- query["PageSize"] = request.pageSize;
20026
+ if (!Util.isUnset(request.endpointGroupId)) {
20027
+ query["EndpointGroupId"] = request.endpointGroupId;
18262
20028
  }
18263
20029
 
18264
- if (!Util.isUnset(request.regionId)) {
18265
- query["RegionId"] = request.regionId;
20030
+ if (!Util.isUnset(request.endpointId)) {
20031
+ query["EndpointId"] = request.endpointId;
18266
20032
  }
18267
20033
 
18268
- let req = new $OpenApi.OpenApiRequest({
18269
- query: OpenApiUtil.query(query),
18270
- });
18271
- let params = new $OpenApi.Params({
18272
- action: "ListBandwidthackages",
18273
- version: "2019-11-20",
18274
- protocol: "HTTPS",
18275
- pathname: "/",
18276
- method: "POST",
18277
- authType: "AK",
18278
- style: "RPC",
18279
- reqBodyType: "formData",
18280
- bodyType: "json",
18281
- });
18282
- return $tea.cast<ListBandwidthackagesResponse>(await this.callApi(params, req, runtime), new ListBandwidthackagesResponse({}));
18283
- }
18284
-
18285
- async listBandwidthackages(request: ListBandwidthackagesRequest): Promise<ListBandwidthackagesResponse> {
18286
- let runtime = new $Util.RuntimeOptions({ });
18287
- return await this.listBandwidthackagesWithOptions(request, runtime);
18288
- }
20034
+ if (!Util.isUnset(request.endpointType)) {
20035
+ query["EndpointType"] = request.endpointType;
20036
+ }
18289
20037
 
18290
- async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
18291
- Util.validateModel(request);
18292
- let query = { };
18293
- if (!Util.isUnset(request.acceleratorId)) {
18294
- query["AcceleratorId"] = request.acceleratorId;
20038
+ if (!Util.isUnset(request.maxResults)) {
20039
+ query["MaxResults"] = request.maxResults;
18295
20040
  }
18296
20041
 
18297
- if (!Util.isUnset(request.pageNumber)) {
18298
- query["PageNumber"] = request.pageNumber;
20042
+ if (!Util.isUnset(request.name)) {
20043
+ query["Name"] = request.name;
18299
20044
  }
18300
20045
 
18301
- if (!Util.isUnset(request.pageSize)) {
18302
- query["PageSize"] = request.pageSize;
20046
+ if (!Util.isUnset(request.nextToken)) {
20047
+ query["NextToken"] = request.nextToken;
18303
20048
  }
18304
20049
 
18305
20050
  if (!Util.isUnset(request.regionId)) {
18306
20051
  query["RegionId"] = request.regionId;
18307
20052
  }
18308
20053
 
18309
- if (!Util.isUnset(request.resourceGroupId)) {
18310
- query["ResourceGroupId"] = request.resourceGroupId;
18311
- }
18312
-
18313
- if (!Util.isUnset(request.state)) {
18314
- query["State"] = request.state;
18315
- }
18316
-
18317
- if (!Util.isUnset(request.tag)) {
18318
- query["Tag"] = request.tag;
18319
- }
18320
-
18321
20054
  let req = new $OpenApi.OpenApiRequest({
18322
20055
  query: OpenApiUtil.query(query),
18323
20056
  });
18324
20057
  let params = new $OpenApi.Params({
18325
- action: "ListBasicAccelerators",
20058
+ action: "ListBasicEndpoints",
18326
20059
  version: "2019-11-20",
18327
20060
  protocol: "HTTPS",
18328
20061
  pathname: "/",
@@ -18332,12 +20065,12 @@ export default class Client extends OpenApi {
18332
20065
  reqBodyType: "formData",
18333
20066
  bodyType: "json",
18334
20067
  });
18335
- return $tea.cast<ListBasicAcceleratorsResponse>(await this.callApi(params, req, runtime), new ListBasicAcceleratorsResponse({}));
20068
+ return $tea.cast<ListBasicEndpointsResponse>(await this.callApi(params, req, runtime), new ListBasicEndpointsResponse({}));
18336
20069
  }
18337
20070
 
18338
- async listBasicAccelerators(request: ListBasicAcceleratorsRequest): Promise<ListBasicAcceleratorsResponse> {
20071
+ async listBasicEndpoints(request: ListBasicEndpointsRequest): Promise<ListBasicEndpointsResponse> {
18339
20072
  let runtime = new $Util.RuntimeOptions({ });
18340
- return await this.listBasicAcceleratorsWithOptions(request, runtime);
20073
+ return await this.listBasicEndpointsWithOptions(request, runtime);
18341
20074
  }
18342
20075
 
18343
20076
  async listBusiRegionsWithOptions(request: ListBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListBusiRegionsResponse> {
@@ -19002,6 +20735,55 @@ export default class Client extends OpenApi {
19002
20735
  return await this.listSystemSecurityPoliciesWithOptions(request, runtime);
19003
20736
  }
19004
20737
 
20738
+ async listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
20739
+ Util.validateModel(request);
20740
+ let query = { };
20741
+ if (!Util.isUnset(request.clientToken)) {
20742
+ query["ClientToken"] = request.clientToken;
20743
+ }
20744
+
20745
+ if (!Util.isUnset(request.nextToken)) {
20746
+ query["NextToken"] = request.nextToken;
20747
+ }
20748
+
20749
+ if (!Util.isUnset(request.regionId)) {
20750
+ query["RegionId"] = request.regionId;
20751
+ }
20752
+
20753
+ if (!Util.isUnset(request.resourceId)) {
20754
+ query["ResourceId"] = request.resourceId;
20755
+ }
20756
+
20757
+ if (!Util.isUnset(request.resourceType)) {
20758
+ query["ResourceType"] = request.resourceType;
20759
+ }
20760
+
20761
+ if (!Util.isUnset(request.tag)) {
20762
+ query["Tag"] = request.tag;
20763
+ }
20764
+
20765
+ let req = new $OpenApi.OpenApiRequest({
20766
+ query: OpenApiUtil.query(query),
20767
+ });
20768
+ let params = new $OpenApi.Params({
20769
+ action: "ListTagResources",
20770
+ version: "2019-11-20",
20771
+ protocol: "HTTPS",
20772
+ pathname: "/",
20773
+ method: "POST",
20774
+ authType: "AK",
20775
+ style: "RPC",
20776
+ reqBodyType: "formData",
20777
+ bodyType: "json",
20778
+ });
20779
+ return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
20780
+ }
20781
+
20782
+ async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
20783
+ let runtime = new $Util.RuntimeOptions({ });
20784
+ return await this.listTagResourcesWithOptions(request, runtime);
20785
+ }
20786
+
19005
20787
  async removeEntriesFromAclWithOptions(request: RemoveEntriesFromAclRequest, runtime: $Util.RuntimeOptions): Promise<RemoveEntriesFromAclResponse> {
19006
20788
  Util.validateModel(request);
19007
20789
  let query = { };
@@ -19088,6 +20870,100 @@ export default class Client extends OpenApi {
19088
20870
  return await this.replaceBandwidthPackageWithOptions(request, runtime);
19089
20871
  }
19090
20872
 
20873
+ async tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
20874
+ Util.validateModel(request);
20875
+ let query = { };
20876
+ if (!Util.isUnset(request.clientToken)) {
20877
+ query["ClientToken"] = request.clientToken;
20878
+ }
20879
+
20880
+ if (!Util.isUnset(request.regionId)) {
20881
+ query["RegionId"] = request.regionId;
20882
+ }
20883
+
20884
+ if (!Util.isUnset(request.resourceId)) {
20885
+ query["ResourceId"] = request.resourceId;
20886
+ }
20887
+
20888
+ if (!Util.isUnset(request.resourceType)) {
20889
+ query["ResourceType"] = request.resourceType;
20890
+ }
20891
+
20892
+ if (!Util.isUnset(request.tag)) {
20893
+ query["Tag"] = request.tag;
20894
+ }
20895
+
20896
+ let req = new $OpenApi.OpenApiRequest({
20897
+ query: OpenApiUtil.query(query),
20898
+ });
20899
+ let params = new $OpenApi.Params({
20900
+ action: "TagResources",
20901
+ version: "2019-11-20",
20902
+ protocol: "HTTPS",
20903
+ pathname: "/",
20904
+ method: "POST",
20905
+ authType: "AK",
20906
+ style: "RPC",
20907
+ reqBodyType: "formData",
20908
+ bodyType: "json",
20909
+ });
20910
+ return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
20911
+ }
20912
+
20913
+ async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
20914
+ let runtime = new $Util.RuntimeOptions({ });
20915
+ return await this.tagResourcesWithOptions(request, runtime);
20916
+ }
20917
+
20918
+ async untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
20919
+ Util.validateModel(request);
20920
+ let query = { };
20921
+ if (!Util.isUnset(request.all)) {
20922
+ query["All"] = request.all;
20923
+ }
20924
+
20925
+ if (!Util.isUnset(request.clientToken)) {
20926
+ query["ClientToken"] = request.clientToken;
20927
+ }
20928
+
20929
+ if (!Util.isUnset(request.regionId)) {
20930
+ query["RegionId"] = request.regionId;
20931
+ }
20932
+
20933
+ if (!Util.isUnset(request.resourceId)) {
20934
+ query["ResourceId"] = request.resourceId;
20935
+ }
20936
+
20937
+ if (!Util.isUnset(request.resourceType)) {
20938
+ query["ResourceType"] = request.resourceType;
20939
+ }
20940
+
20941
+ if (!Util.isUnset(request.tagKey)) {
20942
+ query["TagKey"] = request.tagKey;
20943
+ }
20944
+
20945
+ let req = new $OpenApi.OpenApiRequest({
20946
+ query: OpenApiUtil.query(query),
20947
+ });
20948
+ let params = new $OpenApi.Params({
20949
+ action: "UntagResources",
20950
+ version: "2019-11-20",
20951
+ protocol: "HTTPS",
20952
+ pathname: "/",
20953
+ method: "POST",
20954
+ authType: "AK",
20955
+ style: "RPC",
20956
+ reqBodyType: "formData",
20957
+ bodyType: "json",
20958
+ });
20959
+ return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
20960
+ }
20961
+
20962
+ async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
20963
+ let runtime = new $Util.RuntimeOptions({ });
20964
+ return await this.untagResourcesWithOptions(request, runtime);
20965
+ }
20966
+
19091
20967
  async updateAcceleratorWithOptions(request: UpdateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorResponse> {
19092
20968
  Util.validateModel(request);
19093
20969
  let query = { };
@@ -19553,6 +21429,51 @@ export default class Client extends OpenApi {
19553
21429
  return await this.updateBasicAcceleratorWithOptions(request, runtime);
19554
21430
  }
19555
21431
 
21432
+ async updateBasicEndpointWithOptions(request: UpdateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointResponse> {
21433
+ Util.validateModel(request);
21434
+ let query = { };
21435
+ if (!Util.isUnset(request.clientToken)) {
21436
+ query["ClientToken"] = request.clientToken;
21437
+ }
21438
+
21439
+ if (!Util.isUnset(request.endpointGroupId)) {
21440
+ query["EndpointGroupId"] = request.endpointGroupId;
21441
+ }
21442
+
21443
+ if (!Util.isUnset(request.endpointId)) {
21444
+ query["EndpointId"] = request.endpointId;
21445
+ }
21446
+
21447
+ if (!Util.isUnset(request.name)) {
21448
+ query["Name"] = request.name;
21449
+ }
21450
+
21451
+ if (!Util.isUnset(request.regionId)) {
21452
+ query["RegionId"] = request.regionId;
21453
+ }
21454
+
21455
+ let req = new $OpenApi.OpenApiRequest({
21456
+ query: OpenApiUtil.query(query),
21457
+ });
21458
+ let params = new $OpenApi.Params({
21459
+ action: "UpdateBasicEndpoint",
21460
+ version: "2019-11-20",
21461
+ protocol: "HTTPS",
21462
+ pathname: "/",
21463
+ method: "POST",
21464
+ authType: "AK",
21465
+ style: "RPC",
21466
+ reqBodyType: "formData",
21467
+ bodyType: "json",
21468
+ });
21469
+ return $tea.cast<UpdateBasicEndpointResponse>(await this.callApi(params, req, runtime), new UpdateBasicEndpointResponse({}));
21470
+ }
21471
+
21472
+ async updateBasicEndpoint(request: UpdateBasicEndpointRequest): Promise<UpdateBasicEndpointResponse> {
21473
+ let runtime = new $Util.RuntimeOptions({ });
21474
+ return await this.updateBasicEndpointWithOptions(request, runtime);
21475
+ }
21476
+
19556
21477
  async updateBasicEndpointGroupWithOptions(request: UpdateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointGroupResponse> {
19557
21478
  Util.validateModel(request);
19558
21479
  let query = { };