@alicloud/ga20191120 1.0.19 → 1.0.21

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
@@ -726,7 +726,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
726
726
  autoUseCoupon?: string;
727
727
  bandwidthBillingType?: string;
728
728
  clientToken?: string;
729
+ dryRun?: boolean;
729
730
  duration?: number;
731
+ instanceChargeType?: string;
730
732
  ipSetConfig?: CreateAcceleratorRequestIpSetConfig;
731
733
  name?: string;
732
734
  pricingCycle?: string;
@@ -743,7 +745,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
743
745
  autoUseCoupon: 'AutoUseCoupon',
744
746
  bandwidthBillingType: 'BandwidthBillingType',
745
747
  clientToken: 'ClientToken',
748
+ dryRun: 'DryRun',
746
749
  duration: 'Duration',
750
+ instanceChargeType: 'InstanceChargeType',
747
751
  ipSetConfig: 'IpSetConfig',
748
752
  name: 'Name',
749
753
  pricingCycle: 'PricingCycle',
@@ -763,7 +767,9 @@ export class CreateAcceleratorRequest extends $tea.Model {
763
767
  autoUseCoupon: 'string',
764
768
  bandwidthBillingType: 'string',
765
769
  clientToken: 'string',
770
+ dryRun: 'boolean',
766
771
  duration: 'number',
772
+ instanceChargeType: 'string',
767
773
  ipSetConfig: CreateAcceleratorRequestIpSetConfig,
768
774
  name: 'string',
769
775
  pricingCycle: 'string',
@@ -1399,6 +1405,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1399
1405
  promotionOptionNo?: string;
1400
1406
  regionId?: string;
1401
1407
  resourceGroupId?: string;
1408
+ tag?: CreateBasicAcceleratorRequestTag[];
1402
1409
  static names(): { [key: string]: string } {
1403
1410
  return {
1404
1411
  autoPay: 'AutoPay',
@@ -1414,6 +1421,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1414
1421
  promotionOptionNo: 'PromotionOptionNo',
1415
1422
  regionId: 'RegionId',
1416
1423
  resourceGroupId: 'ResourceGroupId',
1424
+ tag: 'Tag',
1417
1425
  };
1418
1426
  }
1419
1427
 
@@ -1432,6 +1440,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1432
1440
  promotionOptionNo: 'string',
1433
1441
  regionId: 'string',
1434
1442
  resourceGroupId: 'string',
1443
+ tag: { 'type': 'array', 'itemType': CreateBasicAcceleratorRequestTag },
1435
1444
  };
1436
1445
  }
1437
1446
 
@@ -4389,6 +4398,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
4389
4398
  spec?: string;
4390
4399
  state?: string;
4391
4400
  tags?: DescribeAcceleratorResponseBodyTags[];
4401
+ upgradableStatus?: string;
4392
4402
  static names(): { [key: string]: string } {
4393
4403
  return {
4394
4404
  acceleratorId: 'AcceleratorId',
@@ -4414,6 +4424,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
4414
4424
  spec: 'Spec',
4415
4425
  state: 'State',
4416
4426
  tags: 'Tags',
4427
+ upgradableStatus: 'UpgradableStatus',
4417
4428
  };
4418
4429
  }
4419
4430
 
@@ -4442,6 +4453,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
4442
4453
  spec: 'string',
4443
4454
  state: 'string',
4444
4455
  tags: { 'type': 'array', 'itemType': DescribeAcceleratorResponseBodyTags },
4456
+ upgradableStatus: 'string',
4445
4457
  };
4446
4458
  }
4447
4459
 
@@ -4553,6 +4565,81 @@ export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
4553
4565
  }
4554
4566
  }
4555
4567
 
4568
+ export class DescribeAcceleratorServiceStatusRequest extends $tea.Model {
4569
+ regionId?: string;
4570
+ static names(): { [key: string]: string } {
4571
+ return {
4572
+ regionId: 'RegionId',
4573
+ };
4574
+ }
4575
+
4576
+ static types(): { [key: string]: any } {
4577
+ return {
4578
+ regionId: 'string',
4579
+ };
4580
+ }
4581
+
4582
+ constructor(map?: { [key: string]: any }) {
4583
+ super(map);
4584
+ }
4585
+ }
4586
+
4587
+ export class DescribeAcceleratorServiceStatusResponseBody extends $tea.Model {
4588
+ code?: string;
4589
+ message?: string;
4590
+ requestId?: string;
4591
+ status?: string;
4592
+ success?: string;
4593
+ static names(): { [key: string]: string } {
4594
+ return {
4595
+ code: 'Code',
4596
+ message: 'Message',
4597
+ requestId: 'RequestId',
4598
+ status: 'Status',
4599
+ success: 'Success',
4600
+ };
4601
+ }
4602
+
4603
+ static types(): { [key: string]: any } {
4604
+ return {
4605
+ code: 'string',
4606
+ message: 'string',
4607
+ requestId: 'string',
4608
+ status: 'string',
4609
+ success: 'string',
4610
+ };
4611
+ }
4612
+
4613
+ constructor(map?: { [key: string]: any }) {
4614
+ super(map);
4615
+ }
4616
+ }
4617
+
4618
+ export class DescribeAcceleratorServiceStatusResponse extends $tea.Model {
4619
+ headers: { [key: string]: string };
4620
+ statusCode: number;
4621
+ body: DescribeAcceleratorServiceStatusResponseBody;
4622
+ static names(): { [key: string]: string } {
4623
+ return {
4624
+ headers: 'headers',
4625
+ statusCode: 'statusCode',
4626
+ body: 'body',
4627
+ };
4628
+ }
4629
+
4630
+ static types(): { [key: string]: any } {
4631
+ return {
4632
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4633
+ statusCode: 'number',
4634
+ body: DescribeAcceleratorServiceStatusResponseBody,
4635
+ };
4636
+ }
4637
+
4638
+ constructor(map?: { [key: string]: any }) {
4639
+ super(map);
4640
+ }
4641
+ }
4642
+
4556
4643
  export class DescribeApplicationMonitorRequest extends $tea.Model {
4557
4644
  clientToken?: string;
4558
4645
  regionId?: string;
@@ -9302,6 +9389,84 @@ export class ListDomainsResponse extends $tea.Model {
9302
9389
  }
9303
9390
  }
9304
9391
 
9392
+ export class ListEndpointGroupIpAddressCidrBlocksRequest extends $tea.Model {
9393
+ endpointGroupRegion?: string;
9394
+ regionId?: string;
9395
+ static names(): { [key: string]: string } {
9396
+ return {
9397
+ endpointGroupRegion: 'EndpointGroupRegion',
9398
+ regionId: 'RegionId',
9399
+ };
9400
+ }
9401
+
9402
+ static types(): { [key: string]: any } {
9403
+ return {
9404
+ endpointGroupRegion: 'string',
9405
+ regionId: 'string',
9406
+ };
9407
+ }
9408
+
9409
+ constructor(map?: { [key: string]: any }) {
9410
+ super(map);
9411
+ }
9412
+ }
9413
+
9414
+ export class ListEndpointGroupIpAddressCidrBlocksResponseBody extends $tea.Model {
9415
+ endpointGroupRegion?: string;
9416
+ ipAddressCidrBlocks?: string[];
9417
+ requestId?: string;
9418
+ resourceGroupId?: string;
9419
+ state?: string;
9420
+ static names(): { [key: string]: string } {
9421
+ return {
9422
+ endpointGroupRegion: 'EndpointGroupRegion',
9423
+ ipAddressCidrBlocks: 'IpAddressCidrBlocks',
9424
+ requestId: 'RequestId',
9425
+ resourceGroupId: 'ResourceGroupId',
9426
+ state: 'State',
9427
+ };
9428
+ }
9429
+
9430
+ static types(): { [key: string]: any } {
9431
+ return {
9432
+ endpointGroupRegion: 'string',
9433
+ ipAddressCidrBlocks: { 'type': 'array', 'itemType': 'string' },
9434
+ requestId: 'string',
9435
+ resourceGroupId: 'string',
9436
+ state: 'string',
9437
+ };
9438
+ }
9439
+
9440
+ constructor(map?: { [key: string]: any }) {
9441
+ super(map);
9442
+ }
9443
+ }
9444
+
9445
+ export class ListEndpointGroupIpAddressCidrBlocksResponse extends $tea.Model {
9446
+ headers: { [key: string]: string };
9447
+ statusCode: number;
9448
+ body: ListEndpointGroupIpAddressCidrBlocksResponseBody;
9449
+ static names(): { [key: string]: string } {
9450
+ return {
9451
+ headers: 'headers',
9452
+ statusCode: 'statusCode',
9453
+ body: 'body',
9454
+ };
9455
+ }
9456
+
9457
+ static types(): { [key: string]: any } {
9458
+ return {
9459
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
9460
+ statusCode: 'number',
9461
+ body: ListEndpointGroupIpAddressCidrBlocksResponseBody,
9462
+ };
9463
+ }
9464
+
9465
+ constructor(map?: { [key: string]: any }) {
9466
+ super(map);
9467
+ }
9468
+ }
9469
+
9305
9470
  export class ListEndpointGroupsRequest extends $tea.Model {
9306
9471
  acceleratorId?: string;
9307
9472
  accessLogSwitch?: string;
@@ -10067,6 +10232,150 @@ export class ListTagResourcesResponse extends $tea.Model {
10067
10232
  }
10068
10233
  }
10069
10234
 
10235
+ export class OpenAcceleratorServiceRequest extends $tea.Model {
10236
+ clientToken?: string;
10237
+ regionId?: string;
10238
+ static names(): { [key: string]: string } {
10239
+ return {
10240
+ clientToken: 'ClientToken',
10241
+ regionId: 'RegionId',
10242
+ };
10243
+ }
10244
+
10245
+ static types(): { [key: string]: any } {
10246
+ return {
10247
+ clientToken: 'string',
10248
+ regionId: 'string',
10249
+ };
10250
+ }
10251
+
10252
+ constructor(map?: { [key: string]: any }) {
10253
+ super(map);
10254
+ }
10255
+ }
10256
+
10257
+ export class OpenAcceleratorServiceResponseBody extends $tea.Model {
10258
+ code?: string;
10259
+ message?: string;
10260
+ orderId?: number;
10261
+ requestId?: string;
10262
+ success?: string;
10263
+ static names(): { [key: string]: string } {
10264
+ return {
10265
+ code: 'Code',
10266
+ message: 'Message',
10267
+ orderId: 'OrderId',
10268
+ requestId: 'RequestId',
10269
+ success: 'Success',
10270
+ };
10271
+ }
10272
+
10273
+ static types(): { [key: string]: any } {
10274
+ return {
10275
+ code: 'string',
10276
+ message: 'string',
10277
+ orderId: 'number',
10278
+ requestId: 'string',
10279
+ success: 'string',
10280
+ };
10281
+ }
10282
+
10283
+ constructor(map?: { [key: string]: any }) {
10284
+ super(map);
10285
+ }
10286
+ }
10287
+
10288
+ export class OpenAcceleratorServiceResponse extends $tea.Model {
10289
+ headers: { [key: string]: string };
10290
+ statusCode: number;
10291
+ body: OpenAcceleratorServiceResponseBody;
10292
+ static names(): { [key: string]: string } {
10293
+ return {
10294
+ headers: 'headers',
10295
+ statusCode: 'statusCode',
10296
+ body: 'body',
10297
+ };
10298
+ }
10299
+
10300
+ static types(): { [key: string]: any } {
10301
+ return {
10302
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
10303
+ statusCode: 'number',
10304
+ body: OpenAcceleratorServiceResponseBody,
10305
+ };
10306
+ }
10307
+
10308
+ constructor(map?: { [key: string]: any }) {
10309
+ super(map);
10310
+ }
10311
+ }
10312
+
10313
+ export class QueryCrossBorderApprovalStatusRequest extends $tea.Model {
10314
+ regionId?: string;
10315
+ static names(): { [key: string]: string } {
10316
+ return {
10317
+ regionId: 'RegionId',
10318
+ };
10319
+ }
10320
+
10321
+ static types(): { [key: string]: any } {
10322
+ return {
10323
+ regionId: 'string',
10324
+ };
10325
+ }
10326
+
10327
+ constructor(map?: { [key: string]: any }) {
10328
+ super(map);
10329
+ }
10330
+ }
10331
+
10332
+ export class QueryCrossBorderApprovalStatusResponseBody extends $tea.Model {
10333
+ approvalStatus?: string;
10334
+ requestId?: string;
10335
+ static names(): { [key: string]: string } {
10336
+ return {
10337
+ approvalStatus: 'ApprovalStatus',
10338
+ requestId: 'RequestId',
10339
+ };
10340
+ }
10341
+
10342
+ static types(): { [key: string]: any } {
10343
+ return {
10344
+ approvalStatus: 'string',
10345
+ requestId: 'string',
10346
+ };
10347
+ }
10348
+
10349
+ constructor(map?: { [key: string]: any }) {
10350
+ super(map);
10351
+ }
10352
+ }
10353
+
10354
+ export class QueryCrossBorderApprovalStatusResponse extends $tea.Model {
10355
+ headers: { [key: string]: string };
10356
+ statusCode: number;
10357
+ body: QueryCrossBorderApprovalStatusResponseBody;
10358
+ static names(): { [key: string]: string } {
10359
+ return {
10360
+ headers: 'headers',
10361
+ statusCode: 'statusCode',
10362
+ body: 'body',
10363
+ };
10364
+ }
10365
+
10366
+ static types(): { [key: string]: any } {
10367
+ return {
10368
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
10369
+ statusCode: 'number',
10370
+ body: QueryCrossBorderApprovalStatusResponseBody,
10371
+ };
10372
+ }
10373
+
10374
+ constructor(map?: { [key: string]: any }) {
10375
+ super(map);
10376
+ }
10377
+ }
10378
+
10070
10379
  export class RemoveEntriesFromAclRequest extends $tea.Model {
10071
10380
  aclEntries?: RemoveEntriesFromAclRequestAclEntries[];
10072
10381
  aclId?: string;
@@ -12613,6 +12922,28 @@ export class CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpoint
12613
12922
  }
12614
12923
  }
12615
12924
 
12925
+ export class CreateBasicAcceleratorRequestTag extends $tea.Model {
12926
+ key?: string;
12927
+ value?: string;
12928
+ static names(): { [key: string]: string } {
12929
+ return {
12930
+ key: 'Key',
12931
+ value: 'Value',
12932
+ };
12933
+ }
12934
+
12935
+ static types(): { [key: string]: any } {
12936
+ return {
12937
+ key: 'string',
12938
+ value: 'string',
12939
+ };
12940
+ }
12941
+
12942
+ constructor(map?: { [key: string]: any }) {
12943
+ super(map);
12944
+ }
12945
+ }
12946
+
12616
12947
  export class CreateBasicEndpointsRequestEndpoints extends $tea.Model {
12617
12948
  endpointAddress?: string;
12618
12949
  endpointSubAddress?: string;
@@ -12946,12 +13277,14 @@ export class CreateCustomRoutingEndpointsRequestEndpointConfigurations extends $
12946
13277
 
12947
13278
  export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
12948
13279
  enableClientIPPreservation?: boolean;
13280
+ enableProxyProtocol?: boolean;
12949
13281
  endpoint?: string;
12950
13282
  type?: string;
12951
13283
  weight?: number;
12952
13284
  static names(): { [key: string]: string } {
12953
13285
  return {
12954
13286
  enableClientIPPreservation: 'EnableClientIPPreservation',
13287
+ enableProxyProtocol: 'EnableProxyProtocol',
12955
13288
  endpoint: 'Endpoint',
12956
13289
  type: 'Type',
12957
13290
  weight: 'Weight',
@@ -12961,6 +13294,7 @@ export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model
12961
13294
  static types(): { [key: string]: any } {
12962
13295
  return {
12963
13296
  enableClientIPPreservation: 'boolean',
13297
+ enableProxyProtocol: 'boolean',
12964
13298
  endpoint: 'string',
12965
13299
  type: 'string',
12966
13300
  weight: 'number',
@@ -14778,6 +15112,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
14778
15112
  state?: string;
14779
15113
  tags?: ListAcceleratorsResponseBodyAcceleratorsTags[];
14780
15114
  type?: string;
15115
+ upgradableStatus?: string;
14781
15116
  static names(): { [key: string]: string } {
14782
15117
  return {
14783
15118
  acceleratorId: 'AcceleratorId',
@@ -14803,6 +15138,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
14803
15138
  state: 'State',
14804
15139
  tags: 'Tags',
14805
15140
  type: 'Type',
15141
+ upgradableStatus: 'UpgradableStatus',
14806
15142
  };
14807
15143
  }
14808
15144
 
@@ -14831,6 +15167,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
14831
15167
  state: 'string',
14832
15168
  tags: { 'type': 'array', 'itemType': ListAcceleratorsResponseBodyAcceleratorsTags },
14833
15169
  type: 'string',
15170
+ upgradableStatus: 'string',
14834
15171
  };
14835
15172
  }
14836
15173
 
@@ -16867,12 +17204,14 @@ export class UpdateCustomRoutingEndpointsRequestEndpointConfigurations extends $
16867
17204
 
16868
17205
  export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
16869
17206
  enableClientIPPreservation?: boolean;
17207
+ enableProxyProtocol?: boolean;
16870
17208
  endpoint?: string;
16871
17209
  type?: string;
16872
17210
  weight?: number;
16873
17211
  static names(): { [key: string]: string } {
16874
17212
  return {
16875
17213
  enableClientIPPreservation: 'EnableClientIPPreservation',
17214
+ enableProxyProtocol: 'EnableProxyProtocol',
16876
17215
  endpoint: 'Endpoint',
16877
17216
  type: 'Type',
16878
17217
  weight: 'Weight',
@@ -16882,6 +17221,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
16882
17221
  static types(): { [key: string]: any } {
16883
17222
  return {
16884
17223
  enableClientIPPreservation: 'boolean',
17224
+ enableProxyProtocol: 'boolean',
16885
17225
  endpoint: 'string',
16886
17226
  type: 'string',
16887
17227
  weight: 'number',
@@ -17547,10 +17887,6 @@ export default class Client extends OpenApi {
17547
17887
 
17548
17888
  /**
17549
17889
  * When you call this operation, take note of the following items:
17550
- * * When you call this operation, the system checks whether the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos. In this case, the following rules apply to the GA instance:
17551
- * * If the GA instance does not assume the service-linked role AliyunServiceRoleForGaAntiDdos, the system automatically creates the service-linked role and attaches the policy AliyunServiceRolePolicyForGaAntiDdos to the service-linked role. This allows GA to access the Anti-DDoS Pro/Premium instance.
17552
- * * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
17553
- * For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
17554
17890
  * * **AttachDdosToAccelerator** is an asynchronous operation. After you call the operation, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) or [ListAccelerators](~~153236~~) operation to query the status of the GA instance.
17555
17891
  * * If the GA instance is in the **configuring** state, the Anti-DDoS Pro/Premium instance is being associated with the GA instance. In this case, you can perform only query operations.
17556
17892
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -17598,10 +17934,6 @@ export default class Client extends OpenApi {
17598
17934
 
17599
17935
  /**
17600
17936
  * When you call this operation, take note of the following items:
17601
- * * When you call this operation, the system checks whether the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos. In this case, the following rules apply to the GA instance:
17602
- * * If the GA instance does not assume the service-linked role AliyunServiceRoleForGaAntiDdos, the system automatically creates the service-linked role and attaches the policy AliyunServiceRolePolicyForGaAntiDdos to the service-linked role. This allows GA to access the Anti-DDoS Pro/Premium instance.
17603
- * * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
17604
- * For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
17605
17937
  * * **AttachDdosToAccelerator** is an asynchronous operation. After you call the operation, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) or [ListAccelerators](~~153236~~) operation to query the status of the GA instance.
17606
17938
  * * If the GA instance is in the **configuring** state, the Anti-DDoS Pro/Premium instance is being associated with the GA instance. In this case, you can perform only query operations.
17607
17939
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -17748,7 +18080,7 @@ export default class Client extends OpenApi {
17748
18080
  }
17749
18081
 
17750
18082
  /**
17751
- * * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the state of the bandwidth plan that you attempt to disassociate.
18083
+ * * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you attempt to disassociate.
17752
18084
  * * If the bandwidth plan is in the **unbinding** state, it indicates that the bandwidth plan is being disassociated. In this case, you can perform only query operations.
17753
18085
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
17754
18086
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -17790,7 +18122,7 @@ export default class Client extends OpenApi {
17790
18122
  }
17791
18123
 
17792
18124
  /**
17793
- * * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the state of the bandwidth plan that you attempt to disassociate.
18125
+ * * **BandwidthPackageRemoveAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you attempt to disassociate.
17794
18126
  * * If the bandwidth plan is in the **unbinding** state, it indicates that the bandwidth plan is being disassociated. In this case, you can perform only query operations.
17795
18127
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
17796
18128
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -17804,8 +18136,7 @@ export default class Client extends OpenApi {
17804
18136
  }
17805
18137
 
17806
18138
  /**
17807
- * ## Usage notes
17808
- * The **ChangeResourceGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
18139
+ * You cannot call the **ChangeResourceGroup** operation again on the same GA instance before the previous operation is complete.
17809
18140
  *
17810
18141
  * @param request ChangeResourceGroupRequest
17811
18142
  * @param runtime runtime options for this request RuntimeOptions
@@ -17852,8 +18183,7 @@ export default class Client extends OpenApi {
17852
18183
  }
17853
18184
 
17854
18185
  /**
17855
- * ## Usage notes
17856
- * The **ChangeResourceGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
18186
+ * You cannot call the **ChangeResourceGroup** operation again on the same GA instance before the previous operation is complete.
17857
18187
  *
17858
18188
  * @param request ChangeResourceGroupRequest
17859
18189
  * @return ChangeResourceGroupResponse
@@ -17940,8 +18270,8 @@ export default class Client extends OpenApi {
17940
18270
  }
17941
18271
 
17942
18272
  /**
17943
- * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns the ID of a GA instance, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
17944
- * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can perform only query operations.
18273
+ * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
18274
+ * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
17945
18275
  * * If the GA instance is in the **active** state, it indicates that the GA instance is created.
17946
18276
  *
17947
18277
  * @param request CreateAcceleratorRequest
@@ -17975,10 +18305,18 @@ export default class Client extends OpenApi {
17975
18305
  query["ClientToken"] = request.clientToken;
17976
18306
  }
17977
18307
 
18308
+ if (!Util.isUnset(request.dryRun)) {
18309
+ query["DryRun"] = request.dryRun;
18310
+ }
18311
+
17978
18312
  if (!Util.isUnset(request.duration)) {
17979
18313
  query["Duration"] = request.duration;
17980
18314
  }
17981
18315
 
18316
+ if (!Util.isUnset(request.instanceChargeType)) {
18317
+ query["InstanceChargeType"] = request.instanceChargeType;
18318
+ }
18319
+
17982
18320
  if (!Util.isUnset(request.ipSetConfig)) {
17983
18321
  query["IpSetConfig"] = request.ipSetConfig;
17984
18322
  }
@@ -18029,8 +18367,8 @@ export default class Client extends OpenApi {
18029
18367
  }
18030
18368
 
18031
18369
  /**
18032
- * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns the ID of a GA instance, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
18033
- * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can perform only query operations.
18370
+ * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
18371
+ * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
18034
18372
  * * If the GA instance is in the **active** state, it indicates that the GA instance is created.
18035
18373
  *
18036
18374
  * @param request CreateAcceleratorRequest
@@ -18208,13 +18546,12 @@ export default class Client extends OpenApi {
18208
18546
  }
18209
18547
 
18210
18548
  /**
18211
- * ##
18212
18549
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
18213
18550
  * * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
18214
18551
  * * **Enhanced**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud.
18215
- * * **Premium**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
18552
+ * * **Premium**: Both the default acceleration region and the default service region are outside the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
18216
18553
  * When you call this operation, take note of the following items:
18217
- * * The **CreateBandwidthPackage** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
18554
+ * * **CreateBandwidthPackage** is an asynchronous operation. After you send a request, the system returns the ID of a bandwidth plan, but the bandwidth plan is still being created in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
18218
18555
  * * If the bandwidth plan is in the **init** state, it indicates that the bandwidth plan is being created. In this case, you can perform only query operations.
18219
18556
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
18220
18557
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -18320,13 +18657,12 @@ export default class Client extends OpenApi {
18320
18657
  }
18321
18658
 
18322
18659
  /**
18323
- * ##
18324
18660
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
18325
18661
  * * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
18326
18662
  * * **Enhanced**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud.
18327
- * * **Premium**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
18663
+ * * **Premium**: Both the default acceleration region and the default service region are outside the Chinese mainland. The accelerated service can be deployed on and off Alibaba Cloud. If you want to accelerate data transfer for clients in the Chinese mainland, you must select China (Hong Kong) as the acceleration region.
18328
18664
  * When you call this operation, take note of the following items:
18329
- * * The **CreateBandwidthPackage** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
18665
+ * * **CreateBandwidthPackage** is an asynchronous operation. After you send a request, the system returns the ID of a bandwidth plan, but the bandwidth plan is still being created in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan.
18330
18666
  * * If the bandwidth plan is in the **init** state, it indicates that the bandwidth plan is being created. In this case, you can perform only query operations.
18331
18667
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
18332
18668
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -18524,10 +18860,9 @@ export default class Client extends OpenApi {
18524
18860
  }
18525
18861
 
18526
18862
  /**
18527
- * ## Usage notes
18528
- * Basic GA instances use high-quality global network bandwidth and the transmission network of Alibaba Cloud to provide users with point-to-point acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP protocols). For more information, see [Overview of GA instances](~~153127~~).
18863
+ * Basic GA instances leverage the immense bandwidth of Alibaba Cloud\\"s high-quality global network to provide end-to-end acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP). For more information, see [Overview of GA instances](~~153127~~).
18529
18864
  * **CreateBasicAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicAccelerator](~~353188~~) or [ListBasicAccelerators](~~353189~~) operation to query the status of a basic GA instance:
18530
- * * If the basic GA instance is in the **init** state, it indicates the basic GA instance is being created. In this case, you can perform only query operations.
18865
+ * * If the basic GA instance is in the **init** state, it indicates that the basic GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
18531
18866
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
18532
18867
  *
18533
18868
  * @param request CreateBasicAcceleratorRequest
@@ -18589,6 +18924,10 @@ export default class Client extends OpenApi {
18589
18924
  query["ResourceGroupId"] = request.resourceGroupId;
18590
18925
  }
18591
18926
 
18927
+ if (!Util.isUnset(request.tag)) {
18928
+ query["Tag"] = request.tag;
18929
+ }
18930
+
18592
18931
  let req = new $OpenApi.OpenApiRequest({
18593
18932
  query: OpenApiUtil.query(query),
18594
18933
  });
@@ -18607,10 +18946,9 @@ export default class Client extends OpenApi {
18607
18946
  }
18608
18947
 
18609
18948
  /**
18610
- * ## Usage notes
18611
- * Basic GA instances use high-quality global network bandwidth and the transmission network of Alibaba Cloud to provide users with point-to-point acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP protocols). For more information, see [Overview of GA instances](~~153127~~).
18949
+ * Basic GA instances leverage the immense bandwidth of Alibaba Cloud\\"s high-quality global network to provide end-to-end acceleration services. You can use basic GA instances to accelerate content delivery at Layer 3 (IP). For more information, see [Overview of GA instances](~~153127~~).
18612
18950
  * **CreateBasicAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicAccelerator](~~353188~~) or [ListBasicAccelerators](~~353189~~) operation to query the status of a basic GA instance:
18613
- * * If the basic GA instance is in the **init** state, it indicates the basic GA instance is being created. In this case, you can perform only query operations.
18951
+ * * If the basic GA instance is in the **init** state, it indicates that the basic GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
18614
18952
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
18615
18953
  *
18616
18954
  * @param request CreateBasicAcceleratorRequest
@@ -18706,11 +19044,10 @@ export default class Client extends OpenApi {
18706
19044
  }
18707
19045
 
18708
19046
  /**
18709
- * ##
18710
- * * The **CreateBasicEndpointGroup** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of an endpoint group.
19047
+ * * **CreateBasicEndpointGroup** is an asynchronous operation. After a request is sent, the system returns an endpoint group ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of the task.
18711
19048
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
18712
19049
  * * If the endpoint group is in the **active** state, the endpoint group is created.
18713
- * * The **CreateBasicEndpointGroup** operation cannot be repeatedly called for the same basic GA instance within a specific period of time.
19050
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
18714
19051
  *
18715
19052
  * @param request CreateBasicEndpointGroupRequest
18716
19053
  * @param runtime runtime options for this request RuntimeOptions
@@ -18773,11 +19110,10 @@ export default class Client extends OpenApi {
18773
19110
  }
18774
19111
 
18775
19112
  /**
18776
- * ##
18777
- * * The **CreateBasicEndpointGroup** operation is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of an endpoint group.
19113
+ * * **CreateBasicEndpointGroup** is an asynchronous operation. After a request is sent, the system returns an endpoint group ID and runs the task in the background. You can call the [GetBasicEndpointGroup](~~362984~~) operation to query the status of the task.
18778
19114
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
18779
19115
  * * If the endpoint group is in the **active** state, the endpoint group is created.
18780
- * * The **CreateBasicEndpointGroup** operation cannot be repeatedly called for the same basic GA instance within a specific period of time.
19116
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
18781
19117
  *
18782
19118
  * @param request CreateBasicEndpointGroupRequest
18783
19119
  * @return CreateBasicEndpointGroupResponse
@@ -18788,9 +19124,8 @@ export default class Client extends OpenApi {
18788
19124
  }
18789
19125
 
18790
19126
  /**
18791
- * ### Usage notes
18792
- * * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, the endpoints are being created. In this case, you can perform only query operations. - If all endpoints are in the **active** state, the endpoints are created.
18793
- * * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
19127
+ * * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, it indicates that the endpoints are being created. In this case, you can continue to perform query operations on the endpoints. If all endpoints are in the **active** state, it indicates that the endpoints are created.
19128
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
18794
19129
  *
18795
19130
  * @param request CreateBasicEndpointsRequest
18796
19131
  * @param runtime runtime options for this request RuntimeOptions
@@ -18837,9 +19172,8 @@ export default class Client extends OpenApi {
18837
19172
  }
18838
19173
 
18839
19174
  /**
18840
- * ### Usage notes
18841
- * * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, the endpoints are being created. In this case, you can perform only query operations. - If all endpoints are in the **active** state, the endpoints are created.
18842
- * * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
19175
+ * * **CreateBasicEndpoints** is an asynchronous operation. After you call this operation, the system returns a request ID and runs the task in the background. You can call the [ListBasicEndpoints](~~466831~~) operation to query the status of endpoints. - If one or more endpoints are in the **init** state, it indicates that the endpoints are being created. In this case, you can continue to perform query operations on the endpoints. If all endpoints are in the **active** state, it indicates that the endpoints are created.
19176
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
18843
19177
  *
18844
19178
  * @param request CreateBasicEndpointsRequest
18845
19179
  * @return CreateBasicEndpointsResponse
@@ -18850,12 +19184,12 @@ export default class Client extends OpenApi {
18850
19184
  }
18851
19185
 
18852
19186
  /**
18853
- * Before you call this operation, take note of the following limits:
18854
- * * You can add only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
18855
- * * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region.
19187
+ * Take note of the following limits:
19188
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
19189
+ * * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns an acceleration region ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of the task.
18856
19190
  * * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
18857
19191
  * * If the acceleration region is in the **active** state, the acceleration region is created.
18858
- * * The **CreateBasicIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
19192
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
18859
19193
  *
18860
19194
  * @param request CreateBasicIpSetRequest
18861
19195
  * @param runtime runtime options for this request RuntimeOptions
@@ -18906,12 +19240,12 @@ export default class Client extends OpenApi {
18906
19240
  }
18907
19241
 
18908
19242
  /**
18909
- * Before you call this operation, take note of the following limits:
18910
- * * You can add only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
18911
- * * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region.
19243
+ * Take note of the following limits:
19244
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
19245
+ * * **CreateBasicIpSet** is an asynchronous operation. After you send a request, the system returns an acceleration region ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of the task.
18912
19246
  * * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
18913
19247
  * * If the acceleration region is in the **active** state, the acceleration region is created.
18914
- * * The **CreateBasicIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
19248
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
18915
19249
  *
18916
19250
  * @param request CreateBasicIpSetRequest
18917
19251
  * @return CreateBasicIpSetResponse
@@ -18922,19 +19256,7 @@ export default class Client extends OpenApi {
18922
19256
  }
18923
19257
 
18924
19258
  /**
18925
- * After you configure a custom routing listener for a Global Accelerator (GA) instance, the GA instance generates a port mapping table based on the listener port range, mapping information (protocols and port ranges) of the associated endpoint groups, and IP addresses of endpoints (vSwitches), and forwards client requests to the specified IP addresses and ports in the vSwitches.
18926
- * You can call this operation to create mapping configurations for an endpoint group of a custom routing listener. When you call this operation, take note of the following items:
18927
- * * **CreateCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether mapping configurations are created for the endpoint group.
18928
- * * If the endpoint group is in the **updating** state, it indicates that mapping configurations are being created for the endpoint group. In this case, you can perform only query operations.
18929
- * * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
18930
- * * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
18931
- * ### Prerequisites
18932
- * Make sure that the following operations are performed before you call this operation:
18933
- * * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
18934
- * * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
18935
- * * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
18936
- * * The permissions to use custom routing listeners are acquired and a custom routing listener is created for the GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
18937
- * * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
19259
+ * readAndWrite
18938
19260
  *
18939
19261
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
18940
19262
  * @param runtime runtime options for this request RuntimeOptions
@@ -18981,19 +19303,7 @@ export default class Client extends OpenApi {
18981
19303
  }
18982
19304
 
18983
19305
  /**
18984
- * After you configure a custom routing listener for a Global Accelerator (GA) instance, the GA instance generates a port mapping table based on the listener port range, mapping information (protocols and port ranges) of the associated endpoint groups, and IP addresses of endpoints (vSwitches), and forwards client requests to the specified IP addresses and ports in the vSwitches.
18985
- * You can call this operation to create mapping configurations for an endpoint group of a custom routing listener. When you call this operation, take note of the following items:
18986
- * * **CreateCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether mapping configurations are created for the endpoint group.
18987
- * * If the endpoint group is in the **updating** state, it indicates that mapping configurations are being created for the endpoint group. In this case, you can perform only query operations.
18988
- * * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
18989
- * * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
18990
- * ### Prerequisites
18991
- * Make sure that the following operations are performed before you call this operation:
18992
- * * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
18993
- * * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
18994
- * * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
18995
- * * The permissions to use custom routing listeners are acquired and a custom routing listener is created for the GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
18996
- * * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
19306
+ * readAndWrite
18997
19307
  *
18998
19308
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
18999
19309
  * @return CreateCustomRoutingEndpointGroupDestinationsResponse
@@ -19174,19 +19484,7 @@ export default class Client extends OpenApi {
19174
19484
  }
19175
19485
 
19176
19486
  /**
19177
- * After you configure a custom routing listener for a Global Accelerator (GA) instance, the instance generates a port mapping table based on the listener port range, the protocols and port ranges of the associated endpoint groups, and the IP addresses of endpoints (vSwitches), and forwards client requests to specified IP addresses and ports in the vSwitches.
19178
- * This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
19179
- * * **CreateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether endpoints are created in the endpoint group.
19180
- * * If the endpoint group is in the **updating** state, it indicates that endpoints are being created. In this case, you can perform only query operations.
19181
- * * If the endpoint group is in the **active** state, it indicates that endpoints are created.
19182
- * * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
19183
- * ### Prerequisites
19184
- * The following operations are complete before you call this operation:
19185
- * * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
19186
- * * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
19187
- * * Deploy an application that serves as the endpoint of the GA instance. The application is used to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
19188
- * * Apply for permissions to use custom routing listeners and create a custom routing listener for the standard GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
19189
- * * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
19487
+ * readAndWrite
19190
19488
  *
19191
19489
  * @param request CreateCustomRoutingEndpointsRequest
19192
19490
  * @param runtime runtime options for this request RuntimeOptions
@@ -19229,19 +19527,7 @@ export default class Client extends OpenApi {
19229
19527
  }
19230
19528
 
19231
19529
  /**
19232
- * After you configure a custom routing listener for a Global Accelerator (GA) instance, the instance generates a port mapping table based on the listener port range, the protocols and port ranges of the associated endpoint groups, and the IP addresses of endpoints (vSwitches), and forwards client requests to specified IP addresses and ports in the vSwitches.
19233
- * This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
19234
- * * **CreateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and determine whether endpoints are created in the endpoint group.
19235
- * * If the endpoint group is in the **updating** state, it indicates that endpoints are being created. In this case, you can perform only query operations.
19236
- * * If the endpoint group is in the **active** state, it indicates that endpoints are created.
19237
- * * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
19238
- * ### Prerequisites
19239
- * The following operations are complete before you call this operation:
19240
- * * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
19241
- * * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
19242
- * * Deploy an application that serves as the endpoint of the GA instance. The application is used to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
19243
- * * Apply for permissions to use custom routing listeners and create a custom routing listener for the standard GA instance. Custom routing listeners are in invitational preview. To use custom routing listeners, contact your account manager. For more information about how to create a custom routing listener, see [CreateListener](~~153253~~).
19244
- * * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
19530
+ * readAndWrite
19245
19531
  *
19246
19532
  * @param request CreateCustomRoutingEndpointsRequest
19247
19533
  * @return CreateCustomRoutingEndpointsResponse
@@ -19566,11 +19852,10 @@ export default class Client extends OpenApi {
19566
19852
  }
19567
19853
 
19568
19854
  /**
19569
- * ## Usage notes
19570
- * * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of acceleration regions.
19855
+ * * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
19571
19856
  * * If acceleration regions are in the **init** state, it indicates that the acceleration regions are being created. In this case, you can perform only query operations.
19572
19857
  * * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
19573
- * * The **CreateIpSets** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
19858
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
19574
19859
  *
19575
19860
  * @param request CreateIpSetsRequest
19576
19861
  * @param runtime runtime options for this request RuntimeOptions
@@ -19613,11 +19898,10 @@ export default class Client extends OpenApi {
19613
19898
  }
19614
19899
 
19615
19900
  /**
19616
- * ## Usage notes
19617
- * * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of acceleration regions.
19901
+ * * **CreateIpSets** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
19618
19902
  * * If acceleration regions are in the **init** state, it indicates that the acceleration regions are being created. In this case, you can perform only query operations.
19619
19903
  * * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
19620
- * * The **CreateIpSets** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
19904
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
19621
19905
  *
19622
19906
  * @param request CreateIpSetsRequest
19623
19907
  * @return CreateIpSetsResponse
@@ -19801,9 +20085,9 @@ export default class Client extends OpenApi {
19801
20085
 
19802
20086
  /**
19803
20087
  * * Subscription GA instances cannot be deleted.
19804
- * * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
19805
- * * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
19806
- * * If the GA instance is in the **deleting** state, it indicates that the GA instance is being deleted. In this case, you can perform only query operations.
20088
+ * * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans first. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
20089
+ * * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
20090
+ * * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
19807
20091
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
19808
20092
  *
19809
20093
  * @param request DeleteAcceleratorRequest
@@ -19840,9 +20124,9 @@ export default class Client extends OpenApi {
19840
20124
 
19841
20125
  /**
19842
20126
  * * Subscription GA instances cannot be deleted.
19843
- * * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
19844
- * * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
19845
- * * If the GA instance is in the **deleting** state, it indicates that the GA instance is being deleted. In this case, you can perform only query operations.
20127
+ * * GA instances that have bandwidth plans associated cannot be deleted. To delete such GA instances, disassociate the bandwidth plans first. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
20128
+ * * **DeleteAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [DescribeAccelerator](~~153235~~) operation to query the state of a GA instance.
20129
+ * * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
19846
20130
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
19847
20131
  *
19848
20132
  * @param request DeleteAcceleratorRequest
@@ -19972,7 +20256,7 @@ export default class Client extends OpenApi {
19972
20256
  /**
19973
20257
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
19974
20258
  * * Bandwidth plans that are associated with Global Accelerator (GA) instances cannot be deleted. Before you can delete a bandwidth plan that is associated with a GA instance, you must disassociate the bandwidth plan from the GA instance. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
19975
- * * **DeleteBandwidthPackage** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you want to delete.
20259
+ * * **DeleteBandwidthPackage** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
19976
20260
  * * If the bandwidth plan is in the **deleting** state, it indicates that the bandwidth plan is being deleted. In this case, you can perform only query operations.
19977
20261
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
19978
20262
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -20016,7 +20300,7 @@ export default class Client extends OpenApi {
20016
20300
  /**
20017
20301
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
20018
20302
  * * Bandwidth plans that are associated with Global Accelerator (GA) instances cannot be deleted. Before you can delete a bandwidth plan that is associated with a GA instance, you must disassociate the bandwidth plan from the GA instance. For information about how to disassociate a bandwidth plan from a GA instance, see [BandwidthPackageRemoveAccelerator](~~153240~~).
20019
- * * **DeleteBandwidthPackage** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the bandwidth plan that you want to delete.
20303
+ * * **DeleteBandwidthPackage** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
20020
20304
  * * If the bandwidth plan is in the **deleting** state, it indicates that the bandwidth plan is being deleted. In this case, you can perform only query operations.
20021
20305
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
20022
20306
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -20312,10 +20596,10 @@ export default class Client extends OpenApi {
20312
20596
  }
20313
20597
 
20314
20598
  /**
20315
- * * **DeleteBasicIpSet** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [GetBasicIpSet](~~362987~~) operation to query the state of an acceleration region.
20599
+ * * \\*\\*DeleteBasicIpSet\\*\\* is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region:
20316
20600
  * * If the acceleration region is in the **deleting** state, it indicates that the acceleration region is being deleted. In this case, you can perform only query operations.
20317
20601
  * * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
20318
- * * The **DeleteBasicIpSet** cannot be called repeatedly for the same basic GA instance within a specific period of time.
20602
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
20319
20603
  *
20320
20604
  * @param request DeleteBasicIpSetRequest
20321
20605
  * @param runtime runtime options for this request RuntimeOptions
@@ -20354,10 +20638,10 @@ export default class Client extends OpenApi {
20354
20638
  }
20355
20639
 
20356
20640
  /**
20357
- * * **DeleteBasicIpSet** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [GetBasicIpSet](~~362987~~) operation to query the state of an acceleration region.
20641
+ * * \\*\\*DeleteBasicIpSet\\*\\* is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [GetBasicIpSet](~~362987~~) operation to query the status of an acceleration region:
20358
20642
  * * If the acceleration region is in the **deleting** state, it indicates that the acceleration region is being deleted. In this case, you can perform only query operations.
20359
20643
  * * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
20360
- * * The **DeleteBasicIpSet** cannot be called repeatedly for the same basic GA instance within a specific period of time.
20644
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
20361
20645
  *
20362
20646
  * @param request DeleteBasicIpSetRequest
20363
20647
  * @return DeleteBasicIpSetResponse
@@ -20368,11 +20652,10 @@ export default class Client extends OpenApi {
20368
20652
  }
20369
20653
 
20370
20654
  /**
20371
- * ### Usage notes
20372
- * * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of an endpoint group and verify whether mappings are deleted from the endpoint group.
20655
+ * * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
20373
20656
  * * If the endpoint group is in the **updating** state, it indicates that mappings are being deleted from the endpoint group. In this case, you can perform only query operations.
20374
- * * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response of the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, the mappings are deleted from the endpoint group.
20375
- * * The **DeleteCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
20657
+ * * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response when you call the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, it indicates the mappings are deleted from the endpoint group.
20658
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
20376
20659
  *
20377
20660
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
20378
20661
  * @param runtime runtime options for this request RuntimeOptions
@@ -20419,11 +20702,10 @@ export default class Client extends OpenApi {
20419
20702
  }
20420
20703
 
20421
20704
  /**
20422
- * ### Usage notes
20423
- * * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of an endpoint group and verify whether mappings are deleted from the endpoint group.
20705
+ * * **DeleteCustomRoutingEndpointGroupDestinations** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
20424
20706
  * * If the endpoint group is in the **updating** state, it indicates that mappings are being deleted from the endpoint group. In this case, you can perform only query operations.
20425
- * * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response of the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, the mappings are deleted from the endpoint group.
20426
- * * The **DeleteCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
20707
+ * * If the endpoint group is in the **active** state and no information about the mappings that you want to delete is found in the response when you call the [DescribeCustomRoutingEndpointGroupDestinations](~~449378~~) operation, it indicates the mappings are deleted from the endpoint group.
20708
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
20427
20709
  *
20428
20710
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
20429
20711
  * @return DeleteCustomRoutingEndpointGroupDestinationsResponse
@@ -20558,11 +20840,10 @@ export default class Client extends OpenApi {
20558
20840
  }
20559
20841
 
20560
20842
  /**
20561
- * ### Usage notes
20562
- * * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and check whether endpoints are deleted.
20563
- * * If an endpoint group is in the **updating** state, the endpoints are being deleted. In this case, you can perform only query operations.
20564
- * * If an endpoint group is in the **active** state and the endpoints cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoints are deleted.
20565
- * * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
20843
+ * * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
20844
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
20845
+ * * If an endpoint group is in the **active** state and the endpoint cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoint is deleted.
20846
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
20566
20847
  *
20567
20848
  * @param request DeleteCustomRoutingEndpointsRequest
20568
20849
  * @param runtime runtime options for this request RuntimeOptions
@@ -20605,11 +20886,10 @@ export default class Client extends OpenApi {
20605
20886
  }
20606
20887
 
20607
20888
  /**
20608
- * ### Usage notes
20609
- * * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of an endpoint group and check whether endpoints are deleted.
20610
- * * If an endpoint group is in the **updating** state, the endpoints are being deleted. In this case, you can perform only query operations.
20611
- * * If an endpoint group is in the **active** state and the endpoints cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoints are deleted.
20612
- * * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
20889
+ * * **DeleteCustomRoutingEndpoints** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) to query the status of the task.
20890
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
20891
+ * * If an endpoint group is in the **active** state and the endpoint cannot be found after you call the [DescribeCustomRoutingEndpoint](~~449386~~) operation, the endpoint is deleted.
20892
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
20613
20893
  *
20614
20894
  * @param request DeleteCustomRoutingEndpointsRequest
20615
20895
  * @return DeleteCustomRoutingEndpointsResponse
@@ -20726,9 +21006,9 @@ export default class Client extends OpenApi {
20726
21006
  }
20727
21007
 
20728
21008
  /**
20729
- * * **DeleteEndpointGroups** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
20730
- * * If the endpoint group is in the **deleting** state, it indicates that the endpoint group is being deleted. In this case, you can perform only query operations.
20731
- * * If the endpoint group cannot be queried, it indicates that the endpoint group is deleted.
21009
+ * * **DeleteEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the status of the task.
21010
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
21011
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
20732
21012
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20733
21013
  *
20734
21014
  * @param request DeleteEndpointGroupsRequest
@@ -20772,9 +21052,9 @@ export default class Client extends OpenApi {
20772
21052
  }
20773
21053
 
20774
21054
  /**
20775
- * * **DeleteEndpointGroups** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
20776
- * * If the endpoint group is in the **deleting** state, it indicates that the endpoint group is being deleted. In this case, you can perform only query operations.
20777
- * * If the endpoint group cannot be queried, it indicates that the endpoint group is deleted.
21055
+ * * **DeleteEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the status of the task.
21056
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
21057
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
20778
21058
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20779
21059
  *
20780
21060
  * @param request DeleteEndpointGroupsRequest
@@ -20786,9 +21066,9 @@ export default class Client extends OpenApi {
20786
21066
  }
20787
21067
 
20788
21068
  /**
20789
- * * **DeleteForwardingRules** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListForwardingRules](~~205817~~) operation to query the state of a forwarding rule.
20790
- * * If the forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
20791
- * * If the forwarding rule cannot be queried, the forwarding rule is deleted.
21069
+ * * **DeleteForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of the task.
21070
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
21071
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
20792
21072
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20793
21073
  *
20794
21074
  * @param request DeleteForwardingRulesRequest
@@ -20836,9 +21116,9 @@ export default class Client extends OpenApi {
20836
21116
  }
20837
21117
 
20838
21118
  /**
20839
- * * **DeleteForwardingRules** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListForwardingRules](~~205817~~) operation to query the state of a forwarding rule.
20840
- * * If the forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
20841
- * * If the forwarding rule cannot be queried, the forwarding rule is deleted.
21119
+ * * **DeleteForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of the task.
21120
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
21121
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
20842
21122
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20843
21123
  *
20844
21124
  * @param request DeleteForwardingRulesRequest
@@ -20962,8 +21242,8 @@ export default class Client extends OpenApi {
20962
21242
  }
20963
21243
 
20964
21244
  /**
20965
- * * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener.
20966
- * * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can perform only query operations.
21245
+ * * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the state of the listener.
21246
+ * * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can continue to perform query operations on the listener.
20967
21247
  * * If the listener cannot be queried, it indicates that the listener is deleted.
20968
21248
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
20969
21249
  *
@@ -21004,8 +21284,8 @@ export default class Client extends OpenApi {
21004
21284
  }
21005
21285
 
21006
21286
  /**
21007
- * * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener.
21008
- * * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can perform only query operations.
21287
+ * * **DeleteListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the state of the listener.
21288
+ * * If the listener is in the **deleting** state, it indicates that the listener is being deleted. In this case, you can continue to perform query operations on the listener.
21009
21289
  * * If the listener cannot be queried, it indicates that the listener is deleted.
21010
21290
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
21011
21291
  *
@@ -21147,6 +21427,35 @@ export default class Client extends OpenApi {
21147
21427
  return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
21148
21428
  }
21149
21429
 
21430
+ async describeAcceleratorServiceStatusWithOptions(request: DescribeAcceleratorServiceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAcceleratorServiceStatusResponse> {
21431
+ Util.validateModel(request);
21432
+ let query = { };
21433
+ if (!Util.isUnset(request.regionId)) {
21434
+ query["RegionId"] = request.regionId;
21435
+ }
21436
+
21437
+ let req = new $OpenApi.OpenApiRequest({
21438
+ query: OpenApiUtil.query(query),
21439
+ });
21440
+ let params = new $OpenApi.Params({
21441
+ action: "DescribeAcceleratorServiceStatus",
21442
+ version: "2019-11-20",
21443
+ protocol: "HTTPS",
21444
+ pathname: "/",
21445
+ method: "POST",
21446
+ authType: "AK",
21447
+ style: "RPC",
21448
+ reqBodyType: "formData",
21449
+ bodyType: "json",
21450
+ });
21451
+ return $tea.cast<DescribeAcceleratorServiceStatusResponse>(await this.callApi(params, req, runtime), new DescribeAcceleratorServiceStatusResponse({}));
21452
+ }
21453
+
21454
+ async describeAcceleratorServiceStatus(request: DescribeAcceleratorServiceStatusRequest): Promise<DescribeAcceleratorServiceStatusResponse> {
21455
+ let runtime = new $Util.RuntimeOptions({ });
21456
+ return await this.describeAcceleratorServiceStatusWithOptions(request, runtime);
21457
+ }
21458
+
21150
21459
  async describeApplicationMonitorWithOptions(request: DescribeApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationMonitorResponse> {
21151
21460
  Util.validateModel(request);
21152
21461
  let query = { };
@@ -23470,6 +23779,39 @@ export default class Client extends OpenApi {
23470
23779
  return await this.listDomainsWithOptions(request, runtime);
23471
23780
  }
23472
23781
 
23782
+ async listEndpointGroupIpAddressCidrBlocksWithOptions(request: ListEndpointGroupIpAddressCidrBlocksRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
23783
+ Util.validateModel(request);
23784
+ let query = { };
23785
+ if (!Util.isUnset(request.endpointGroupRegion)) {
23786
+ query["EndpointGroupRegion"] = request.endpointGroupRegion;
23787
+ }
23788
+
23789
+ if (!Util.isUnset(request.regionId)) {
23790
+ query["RegionId"] = request.regionId;
23791
+ }
23792
+
23793
+ let req = new $OpenApi.OpenApiRequest({
23794
+ query: OpenApiUtil.query(query),
23795
+ });
23796
+ let params = new $OpenApi.Params({
23797
+ action: "ListEndpointGroupIpAddressCidrBlocks",
23798
+ version: "2019-11-20",
23799
+ protocol: "HTTPS",
23800
+ pathname: "/",
23801
+ method: "POST",
23802
+ authType: "AK",
23803
+ style: "RPC",
23804
+ reqBodyType: "formData",
23805
+ bodyType: "json",
23806
+ });
23807
+ return $tea.cast<ListEndpointGroupIpAddressCidrBlocksResponse>(await this.callApi(params, req, runtime), new ListEndpointGroupIpAddressCidrBlocksResponse({}));
23808
+ }
23809
+
23810
+ async listEndpointGroupIpAddressCidrBlocks(request: ListEndpointGroupIpAddressCidrBlocksRequest): Promise<ListEndpointGroupIpAddressCidrBlocksResponse> {
23811
+ let runtime = new $Util.RuntimeOptions({ });
23812
+ return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
23813
+ }
23814
+
23473
23815
  async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
23474
23816
  Util.validateModel(request);
23475
23817
  let query = { };
@@ -23937,11 +24279,70 @@ export default class Client extends OpenApi {
23937
24279
  return await this.listTagResourcesWithOptions(request, runtime);
23938
24280
  }
23939
24281
 
24282
+ async openAcceleratorServiceWithOptions(request: OpenAcceleratorServiceRequest, runtime: $Util.RuntimeOptions): Promise<OpenAcceleratorServiceResponse> {
24283
+ Util.validateModel(request);
24284
+ let query = { };
24285
+ if (!Util.isUnset(request.clientToken)) {
24286
+ query["ClientToken"] = request.clientToken;
24287
+ }
24288
+
24289
+ if (!Util.isUnset(request.regionId)) {
24290
+ query["RegionId"] = request.regionId;
24291
+ }
24292
+
24293
+ let req = new $OpenApi.OpenApiRequest({
24294
+ query: OpenApiUtil.query(query),
24295
+ });
24296
+ let params = new $OpenApi.Params({
24297
+ action: "OpenAcceleratorService",
24298
+ version: "2019-11-20",
24299
+ protocol: "HTTPS",
24300
+ pathname: "/",
24301
+ method: "POST",
24302
+ authType: "AK",
24303
+ style: "RPC",
24304
+ reqBodyType: "formData",
24305
+ bodyType: "json",
24306
+ });
24307
+ return $tea.cast<OpenAcceleratorServiceResponse>(await this.callApi(params, req, runtime), new OpenAcceleratorServiceResponse({}));
24308
+ }
24309
+
24310
+ async openAcceleratorService(request: OpenAcceleratorServiceRequest): Promise<OpenAcceleratorServiceResponse> {
24311
+ let runtime = new $Util.RuntimeOptions({ });
24312
+ return await this.openAcceleratorServiceWithOptions(request, runtime);
24313
+ }
24314
+
24315
+ async queryCrossBorderApprovalStatusWithOptions(request: QueryCrossBorderApprovalStatusRequest, runtime: $Util.RuntimeOptions): Promise<QueryCrossBorderApprovalStatusResponse> {
24316
+ Util.validateModel(request);
24317
+ let query = { };
24318
+ if (!Util.isUnset(request.regionId)) {
24319
+ query["RegionId"] = request.regionId;
24320
+ }
24321
+
24322
+ let req = new $OpenApi.OpenApiRequest({
24323
+ query: OpenApiUtil.query(query),
24324
+ });
24325
+ let params = new $OpenApi.Params({
24326
+ action: "QueryCrossBorderApprovalStatus",
24327
+ version: "2019-11-20",
24328
+ protocol: "HTTPS",
24329
+ pathname: "/",
24330
+ method: "POST",
24331
+ authType: "AK",
24332
+ style: "RPC",
24333
+ reqBodyType: "formData",
24334
+ bodyType: "json",
24335
+ });
24336
+ return $tea.cast<QueryCrossBorderApprovalStatusResponse>(await this.callApi(params, req, runtime), new QueryCrossBorderApprovalStatusResponse({}));
24337
+ }
24338
+
24339
+ async queryCrossBorderApprovalStatus(request: QueryCrossBorderApprovalStatusRequest): Promise<QueryCrossBorderApprovalStatusResponse> {
24340
+ let runtime = new $Util.RuntimeOptions({ });
24341
+ return await this.queryCrossBorderApprovalStatusWithOptions(request, runtime);
24342
+ }
24343
+
23940
24344
  /**
23941
- * * The **RemoveEntriesFromAcl** operation is asynchronous. After you send a request, the system returns the request ID, but the operation is still being performed in the system background. You can call the [GetAcl](~~258292~~) or [ListAcls](~~258291~~) operation to query the status of an ACL:
23942
- * * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
23943
- * * If an ACL is in the **active** state, the IP entries are deleted.
23944
- * * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
24345
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
23945
24346
  *
23946
24347
  * @param request RemoveEntriesFromAclRequest
23947
24348
  * @param runtime runtime options for this request RuntimeOptions
@@ -23988,10 +24389,7 @@ export default class Client extends OpenApi {
23988
24389
  }
23989
24390
 
23990
24391
  /**
23991
- * * The **RemoveEntriesFromAcl** operation is asynchronous. After you send a request, the system returns the request ID, but the operation is still being performed in the system background. You can call the [GetAcl](~~258292~~) or [ListAcls](~~258291~~) operation to query the status of an ACL:
23992
- * * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
23993
- * * If an ACL is in the **active** state, the IP entries are deleted.
23994
- * * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
24392
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
23995
24393
  *
23996
24394
  * @param request RemoveEntriesFromAclRequest
23997
24395
  * @return RemoveEntriesFromAclResponse
@@ -24317,8 +24715,8 @@ export default class Client extends OpenApi {
24317
24715
  }
24318
24716
 
24319
24717
  /**
24320
- * After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification modification to a GA instance. When you call this operation to confirm the specification modification to a GA instance, take note of the following items:
24321
- * * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of the GA instance.
24718
+ * After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification of a GA instance that is modified. When you call this operation to confirm the specification of a GA instance, take note of the following items:
24719
+ * * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
24322
24720
  * * If the GA instance is in the **configuring** state, it indicates that the specification of the instance is being modified. In this case, you can perform only query operations.
24323
24721
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
24324
24722
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -24356,8 +24754,8 @@ export default class Client extends OpenApi {
24356
24754
  }
24357
24755
 
24358
24756
  /**
24359
- * After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification modification to a GA instance. When you call this operation to confirm the specification modification to a GA instance, take note of the following items:
24360
- * * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of the GA instance.
24757
+ * After you modify the specification of a GA instance, you must confirm the modification. The **UpdateAcceleratorConfirm** operation is used to confirm the specification of a GA instance that is modified. When you call this operation to confirm the specification of a GA instance, take note of the following items:
24758
+ * * **UpdateAcceleratorConfirm** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
24361
24759
  * * If the GA instance is in the **configuring** state, it indicates that the specification of the instance is being modified. In this case, you can perform only query operations.
24362
24760
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
24363
24761
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -24370,6 +24768,16 @@ export default class Client extends OpenApi {
24370
24768
  return await this.updateAcceleratorConfirmWithOptions(request, runtime);
24371
24769
  }
24372
24770
 
24771
+ /**
24772
+ * ### Prerequisites
24773
+ * You can call this operation to change the type of transmission network for a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**. Before you call this operation, make sure that the following requirements are met:
24774
+ * * Cloud Data Transfer (CDT) is activated. When you call the [CreateAccelerator](~~206786~~) operation and set **BandwidthBillingType** to **CDT** to create a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**, CDT is automatically activated. The data transfer fees are managed by CDT.
24775
+ * * If you want to set **CrossBorderMode** to **private**, which specifies cross-border Express Connect circuit as the type of transmission network, make sure that your enterprise account completed real-name verification. For more information, see [Real-name verification](~~52595~~).
24776
+ *
24777
+ * @param request UpdateAcceleratorCrossBorderModeRequest
24778
+ * @param runtime runtime options for this request RuntimeOptions
24779
+ * @return UpdateAcceleratorCrossBorderModeResponse
24780
+ */
24373
24781
  async updateAcceleratorCrossBorderModeWithOptions(request: UpdateAcceleratorCrossBorderModeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorCrossBorderModeResponse> {
24374
24782
  Util.validateModel(request);
24375
24783
  let query = { };
@@ -24406,6 +24814,15 @@ export default class Client extends OpenApi {
24406
24814
  return $tea.cast<UpdateAcceleratorCrossBorderModeResponse>(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderModeResponse({}));
24407
24815
  }
24408
24816
 
24817
+ /**
24818
+ * ### Prerequisites
24819
+ * You can call this operation to change the type of transmission network for a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**. Before you call this operation, make sure that the following requirements are met:
24820
+ * * Cloud Data Transfer (CDT) is activated. When you call the [CreateAccelerator](~~206786~~) operation and set **BandwidthBillingType** to **CDT** to create a **standard** GA instance whose bandwidth metering method is **pay-by-data-transfer**, CDT is automatically activated. The data transfer fees are managed by CDT.
24821
+ * * If you want to set **CrossBorderMode** to **private**, which specifies cross-border Express Connect circuit as the type of transmission network, make sure that your enterprise account completed real-name verification. For more information, see [Real-name verification](~~52595~~).
24822
+ *
24823
+ * @param request UpdateAcceleratorCrossBorderModeRequest
24824
+ * @return UpdateAcceleratorCrossBorderModeResponse
24825
+ */
24409
24826
  async updateAcceleratorCrossBorderMode(request: UpdateAcceleratorCrossBorderModeRequest): Promise<UpdateAcceleratorCrossBorderModeResponse> {
24410
24827
  let runtime = new $Util.RuntimeOptions({ });
24411
24828
  return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
@@ -24457,11 +24874,11 @@ export default class Client extends OpenApi {
24457
24874
  }
24458
24875
 
24459
24876
  /**
24460
- * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can call this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24461
- * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24462
- * * If the certificate that you want to replace is in the **updating** state, it indicates that the additional certificate is being replaced for the HTTP listener. In this case, you can perform only query operations.
24877
+ * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can use this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24878
+ * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24879
+ * * If the certificate that you want to replace is in the **updating** state, it is being replaced for the HTTP listener. In this case, you can perform only query operations.
24463
24880
  * * If the replacement certificate is in the **active** state, it indicates that the replacement operation is complete and the replacement certificate is associated with the HTTP listener.
24464
- * * The **UpdateAdditionalCertificateWithListener** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
24881
+ * * You cannot perform the **UpdateAdditionalCertificateWithListener** operation again on the same Global Accelerator (GA) instance before the previous operation is complete.
24465
24882
  *
24466
24883
  * @param request UpdateAdditionalCertificateWithListenerRequest
24467
24884
  * @param runtime runtime options for this request RuntimeOptions
@@ -24516,11 +24933,11 @@ export default class Client extends OpenApi {
24516
24933
  }
24517
24934
 
24518
24935
  /**
24519
- * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can call this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24520
- * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24521
- * * If the certificate that you want to replace is in the **updating** state, it indicates that the additional certificate is being replaced for the HTTP listener. In this case, you can perform only query operations.
24936
+ * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can use this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24937
+ * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24938
+ * * If the certificate that you want to replace is in the **updating** state, it is being replaced for the HTTP listener. In this case, you can perform only query operations.
24522
24939
  * * If the replacement certificate is in the **active** state, it indicates that the replacement operation is complete and the replacement certificate is associated with the HTTP listener.
24523
- * * The **UpdateAdditionalCertificateWithListener** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
24940
+ * * You cannot perform the **UpdateAdditionalCertificateWithListener** operation again on the same Global Accelerator (GA) instance before the previous operation is complete.
24524
24941
  *
24525
24942
  * @param request UpdateAdditionalCertificateWithListenerRequest
24526
24943
  * @return UpdateAdditionalCertificateWithListenerResponse
@@ -24683,15 +25100,15 @@ export default class Client extends OpenApi {
24683
25100
  }
24684
25101
 
24685
25102
  /**
24686
- * When you call this operation, take note of the following items:
24687
- * * **UpdateBandwidthPackage** is a synchronous operation when it is called to modify the configurations excluding the bandwidth value of a bandwidth plan. The new configurations take effect immediately after the operation is performed.
24688
- * * **UpdateBandwidthPackage** is an asynchronous operation when it is called to modify the configurations including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query whether the bandwidth plan is modified.
24689
- * * If the parameter settings of the bandwidth plan remain unchanged, it indicates that the bandwidth plan is being modified. In this case, you can perform only query operations.
24690
- * * If the parameter settings of the bandwidth plan change, it indicates that the bandwidth plan is modified.
24691
- * * **UpdateBandwidthPackage** is an asynchronous operation when it is called to modify the configurations including the bandwidth value of a bandwidth plan that is associated with a GA instance. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of the GA instance and determine whether its associated bandwidth plan is modified.
24692
- * * If the GA instance is in the **configuring** state, it indicates that the bandwidth plan is being modified. In this case, you can perform only query operations.
24693
- * * If the GA instance is in the **active** state, it indicates that the bandwidth plan is modified.
24694
- * * The **UpdateBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
25103
+ * Take note of the following items:
25104
+ * * **UpdateBandwidthPackage** is a synchronous operation when you call the operation to modify the configuration excluding the bandwidth value of a bandwidth plan. The new configuration immediately takes effect after the operation is performed.
25105
+ * * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
25106
+ * * If the parameter values of the bandwidth plan remain unchanged, the bandwidth plan is being modified. In this case, you can perform only query operations.
25107
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
25108
+ * * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is associated with a GA instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of the task.
25109
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
25110
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
25111
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
24695
25112
  *
24696
25113
  * @param request UpdateBandwidthPackageRequest
24697
25114
  * @param runtime runtime options for this request RuntimeOptions
@@ -24750,15 +25167,15 @@ export default class Client extends OpenApi {
24750
25167
  }
24751
25168
 
24752
25169
  /**
24753
- * When you call this operation, take note of the following items:
24754
- * * **UpdateBandwidthPackage** is a synchronous operation when it is called to modify the configurations excluding the bandwidth value of a bandwidth plan. The new configurations take effect immediately after the operation is performed.
24755
- * * **UpdateBandwidthPackage** is an asynchronous operation when it is called to modify the configurations including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query whether the bandwidth plan is modified.
24756
- * * If the parameter settings of the bandwidth plan remain unchanged, it indicates that the bandwidth plan is being modified. In this case, you can perform only query operations.
24757
- * * If the parameter settings of the bandwidth plan change, it indicates that the bandwidth plan is modified.
24758
- * * **UpdateBandwidthPackage** is an asynchronous operation when it is called to modify the configurations including the bandwidth value of a bandwidth plan that is associated with a GA instance. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the state of the GA instance and determine whether its associated bandwidth plan is modified.
24759
- * * If the GA instance is in the **configuring** state, it indicates that the bandwidth plan is being modified. In this case, you can perform only query operations.
24760
- * * If the GA instance is in the **active** state, it indicates that the bandwidth plan is modified.
24761
- * * The **UpdateBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
25170
+ * Take note of the following items:
25171
+ * * **UpdateBandwidthPackage** is a synchronous operation when you call the operation to modify the configuration excluding the bandwidth value of a bandwidth plan. The new configuration immediately takes effect after the operation is performed.
25172
+ * * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is not associated with a Global Accelerator (GA) instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeBandwidthPackage](~~153241~~) operation to query the status of the task.
25173
+ * * If the parameter values of the bandwidth plan remain unchanged, the bandwidth plan is being modified. In this case, you can perform only query operations.
25174
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
25175
+ * * **UpdateBandwidthPackage** is an asynchronous operation when you call the operation to modify the configuration including the bandwidth value of a bandwidth plan that is associated with a GA instance. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of the task.
25176
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
25177
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
25178
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
24762
25179
  *
24763
25180
  * @param request UpdateBandwidthPackageRequest
24764
25181
  * @return UpdateBandwidthPackageResponse
@@ -25108,9 +25525,9 @@ export default class Client extends OpenApi {
25108
25525
  }
25109
25526
 
25110
25527
  /**
25111
- * * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the state of an endpoint group associated with a custom routing listener to check whether access policies of traffic are modified for endpoints in the endpoint group.
25112
- * * If the endpoint group is in the **updating** state, access policies of traffic are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
25113
- * * If the endpoint group is in the **active** state, access policies of traffic are modified for endpoints in the endpoint group.
25528
+ * * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of the task.
25529
+ * * If the endpoint group is in the **updating** state, traffic policies are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
25530
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
25114
25531
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
25115
25532
  *
25116
25533
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -25154,9 +25571,9 @@ export default class Client extends OpenApi {
25154
25571
  }
25155
25572
 
25156
25573
  /**
25157
- * * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the state of an endpoint group associated with a custom routing listener to check whether access policies of traffic are modified for endpoints in the endpoint group.
25158
- * * If the endpoint group is in the **updating** state, access policies of traffic are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
25159
- * * If the endpoint group is in the **active** state, access policies of traffic are modified for endpoints in the endpoint group.
25574
+ * * **UpdateCustomRoutingEndpointTrafficPolicies** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the status of the task.
25575
+ * * If the endpoint group is in the **updating** state, traffic policies are being modified for endpoints in the endpoint group. In this case, you can perform only query operations.
25576
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
25160
25577
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
25161
25578
  *
25162
25579
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -25228,9 +25645,8 @@ export default class Client extends OpenApi {
25228
25645
  }
25229
25646
 
25230
25647
  /**
25231
- * ### Usage notes
25232
- * You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an ICP number for the domain name.
25233
- * You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
25648
+ * You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an Internet content provider (ICP) number for the domain name.
25649
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
25234
25650
  *
25235
25651
  * @param request UpdateDomainRequest
25236
25652
  * @param runtime runtime options for this request RuntimeOptions
@@ -25269,9 +25685,8 @@ export default class Client extends OpenApi {
25269
25685
  }
25270
25686
 
25271
25687
  /**
25272
- * ### Usage notes
25273
- * You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an ICP number for the domain name.
25274
- * You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
25688
+ * You can call this operation to modify an accelerated domain name. If the new accelerated domain name is hosted in the Chinese mainland, you must obtain an Internet content provider (ICP) number for the domain name.
25689
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
25275
25690
  *
25276
25691
  * @param request UpdateDomainRequest
25277
25692
  * @return UpdateDomainResponse
@@ -25282,8 +25697,8 @@ export default class Client extends OpenApi {
25282
25697
  }
25283
25698
 
25284
25699
  /**
25285
- * You can call this operation to obtain and update the ICP filing status of an accelerated domain name.
25286
- * You cannot repeatedly call the **UpdateDomainState** operation by using the same Alibaba Cloud account within a specific period of time.
25700
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
25701
+ * The **UpdateDomainState** operation holds an exclusive lock on the GA instance. While the operation is in progress, you cannot call the same operation with the same Alibaba Cloud account.
25287
25702
  *
25288
25703
  * @param request UpdateDomainStateRequest
25289
25704
  * @param runtime runtime options for this request RuntimeOptions
@@ -25318,8 +25733,8 @@ export default class Client extends OpenApi {
25318
25733
  }
25319
25734
 
25320
25735
  /**
25321
- * You can call this operation to obtain and update the ICP filing status of an accelerated domain name.
25322
- * You cannot repeatedly call the **UpdateDomainState** operation by using the same Alibaba Cloud account within a specific period of time.
25736
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
25737
+ * The **UpdateDomainState** operation holds an exclusive lock on the GA instance. While the operation is in progress, you cannot call the same operation with the same Alibaba Cloud account.
25323
25738
  *
25324
25739
  * @param request UpdateDomainStateRequest
25325
25740
  * @return UpdateDomainStateResponse
@@ -25611,11 +26026,10 @@ export default class Client extends OpenApi {
25611
26026
  }
25612
26027
 
25613
26028
  /**
25614
- * ## Usage notes
25615
26029
  * * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of an acceleration region.
25616
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
25617
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
25618
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
26030
+ * * If the acceleration region is in the **updating** state, it indicates that the acceleration region is being modified. In this case, you can continue to perform query operations on the acceleration regions.
26031
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
26032
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
25619
26033
  *
25620
26034
  * @param request UpdateIpSetRequest
25621
26035
  * @param runtime runtime options for this request RuntimeOptions
@@ -25658,11 +26072,10 @@ export default class Client extends OpenApi {
25658
26072
  }
25659
26073
 
25660
26074
  /**
25661
- * ## Usage notes
25662
26075
  * * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of an acceleration region.
25663
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
25664
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
25665
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
26076
+ * * If the acceleration region is in the **updating** state, it indicates that the acceleration region is being modified. In this case, you can continue to perform query operations on the acceleration regions.
26077
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
26078
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
25666
26079
  *
25667
26080
  * @param request UpdateIpSetRequest
25668
26081
  * @return UpdateIpSetResponse
@@ -25673,10 +26086,10 @@ export default class Client extends OpenApi {
25673
26086
  }
25674
26087
 
25675
26088
  /**
25676
- * * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeIpSet](~~153246~~) operation to query the state of an acceleration region.
25677
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
25678
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
25679
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
26089
+ * * **UpdateIpSet** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
26090
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
26091
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
26092
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
25680
26093
  *
25681
26094
  * @param request UpdateIpSetsRequest
25682
26095
  * @param runtime runtime options for this request RuntimeOptions
@@ -25711,10 +26124,10 @@ export default class Client extends OpenApi {
25711
26124
  }
25712
26125
 
25713
26126
  /**
25714
- * * **UpdateIpSet** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeIpSet](~~153246~~) operation to query the state of an acceleration region.
25715
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
25716
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
25717
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
26127
+ * * **UpdateIpSet** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeIpSet](~~153246~~) operation to query the status of the task.
26128
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
26129
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
26130
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
25718
26131
  *
25719
26132
  * @param request UpdateIpSetsRequest
25720
26133
  * @return UpdateIpSetsResponse
@@ -25725,9 +26138,9 @@ export default class Client extends OpenApi {
25725
26138
  }
25726
26139
 
25727
26140
  /**
25728
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
26141
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
25729
26142
  * When you call this operation, take note of the following items:
25730
- * * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener.
26143
+ * * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the status of a listener.
25731
26144
  * * If the listener is in the **updating** state, it indicates that its configurations are being modified. In this case, you can perform only query operations.
25732
26145
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
25733
26146
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
@@ -25809,9 +26222,9 @@ export default class Client extends OpenApi {
25809
26222
  }
25810
26223
 
25811
26224
  /**
25812
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
26225
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
25813
26226
  * When you call this operation, take note of the following items:
25814
- * * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener.
26227
+ * * **UpdateListener** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeListener](~~153254~~) operation to query the status of a listener.
25815
26228
  * * If the listener is in the **updating** state, it indicates that its configurations are being modified. In this case, you can perform only query operations.
25816
26229
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
25817
26230
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.