@alicloud/ga20191120 1.0.20 → 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/dist/client.js CHANGED
@@ -595,7 +595,9 @@ class CreateAcceleratorRequest extends $tea.Model {
595
595
  autoUseCoupon: 'AutoUseCoupon',
596
596
  bandwidthBillingType: 'BandwidthBillingType',
597
597
  clientToken: 'ClientToken',
598
+ dryRun: 'DryRun',
598
599
  duration: 'Duration',
600
+ instanceChargeType: 'InstanceChargeType',
599
601
  ipSetConfig: 'IpSetConfig',
600
602
  name: 'Name',
601
603
  pricingCycle: 'PricingCycle',
@@ -614,7 +616,9 @@ class CreateAcceleratorRequest extends $tea.Model {
614
616
  autoUseCoupon: 'string',
615
617
  bandwidthBillingType: 'string',
616
618
  clientToken: 'string',
619
+ dryRun: 'boolean',
617
620
  duration: 'number',
621
+ instanceChargeType: 'string',
618
622
  ipSetConfig: CreateAcceleratorRequestIpSetConfig,
619
623
  name: 'string',
620
624
  pricingCycle: 'string',
@@ -3498,6 +3502,7 @@ class DescribeAcceleratorResponseBody extends $tea.Model {
3498
3502
  spec: 'Spec',
3499
3503
  state: 'State',
3500
3504
  tags: 'Tags',
3505
+ upgradableStatus: 'UpgradableStatus',
3501
3506
  };
3502
3507
  }
3503
3508
  static types() {
@@ -3525,6 +3530,7 @@ class DescribeAcceleratorResponseBody extends $tea.Model {
3525
3530
  spec: 'string',
3526
3531
  state: 'string',
3527
3532
  tags: { 'type': 'array', 'itemType': DescribeAcceleratorResponseBodyTags },
3533
+ upgradableStatus: 'string',
3528
3534
  };
3529
3535
  }
3530
3536
  }
@@ -3611,6 +3617,66 @@ class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
3611
3617
  }
3612
3618
  }
3613
3619
  exports.DescribeAcceleratorAutoRenewAttributeResponse = DescribeAcceleratorAutoRenewAttributeResponse;
3620
+ class DescribeAcceleratorServiceStatusRequest extends $tea.Model {
3621
+ constructor(map) {
3622
+ super(map);
3623
+ }
3624
+ static names() {
3625
+ return {
3626
+ regionId: 'RegionId',
3627
+ };
3628
+ }
3629
+ static types() {
3630
+ return {
3631
+ regionId: 'string',
3632
+ };
3633
+ }
3634
+ }
3635
+ exports.DescribeAcceleratorServiceStatusRequest = DescribeAcceleratorServiceStatusRequest;
3636
+ class DescribeAcceleratorServiceStatusResponseBody extends $tea.Model {
3637
+ constructor(map) {
3638
+ super(map);
3639
+ }
3640
+ static names() {
3641
+ return {
3642
+ code: 'Code',
3643
+ message: 'Message',
3644
+ requestId: 'RequestId',
3645
+ status: 'Status',
3646
+ success: 'Success',
3647
+ };
3648
+ }
3649
+ static types() {
3650
+ return {
3651
+ code: 'string',
3652
+ message: 'string',
3653
+ requestId: 'string',
3654
+ status: 'string',
3655
+ success: 'string',
3656
+ };
3657
+ }
3658
+ }
3659
+ exports.DescribeAcceleratorServiceStatusResponseBody = DescribeAcceleratorServiceStatusResponseBody;
3660
+ class DescribeAcceleratorServiceStatusResponse extends $tea.Model {
3661
+ constructor(map) {
3662
+ super(map);
3663
+ }
3664
+ static names() {
3665
+ return {
3666
+ headers: 'headers',
3667
+ statusCode: 'statusCode',
3668
+ body: 'body',
3669
+ };
3670
+ }
3671
+ static types() {
3672
+ return {
3673
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3674
+ statusCode: 'number',
3675
+ body: DescribeAcceleratorServiceStatusResponseBody,
3676
+ };
3677
+ }
3678
+ }
3679
+ exports.DescribeAcceleratorServiceStatusResponse = DescribeAcceleratorServiceStatusResponse;
3614
3680
  class DescribeApplicationMonitorRequest extends $tea.Model {
3615
3681
  constructor(map) {
3616
3682
  super(map);
@@ -7317,6 +7383,68 @@ class ListDomainsResponse extends $tea.Model {
7317
7383
  }
7318
7384
  }
7319
7385
  exports.ListDomainsResponse = ListDomainsResponse;
7386
+ class ListEndpointGroupIpAddressCidrBlocksRequest extends $tea.Model {
7387
+ constructor(map) {
7388
+ super(map);
7389
+ }
7390
+ static names() {
7391
+ return {
7392
+ endpointGroupRegion: 'EndpointGroupRegion',
7393
+ regionId: 'RegionId',
7394
+ };
7395
+ }
7396
+ static types() {
7397
+ return {
7398
+ endpointGroupRegion: 'string',
7399
+ regionId: 'string',
7400
+ };
7401
+ }
7402
+ }
7403
+ exports.ListEndpointGroupIpAddressCidrBlocksRequest = ListEndpointGroupIpAddressCidrBlocksRequest;
7404
+ class ListEndpointGroupIpAddressCidrBlocksResponseBody extends $tea.Model {
7405
+ constructor(map) {
7406
+ super(map);
7407
+ }
7408
+ static names() {
7409
+ return {
7410
+ endpointGroupRegion: 'EndpointGroupRegion',
7411
+ ipAddressCidrBlocks: 'IpAddressCidrBlocks',
7412
+ requestId: 'RequestId',
7413
+ resourceGroupId: 'ResourceGroupId',
7414
+ state: 'State',
7415
+ };
7416
+ }
7417
+ static types() {
7418
+ return {
7419
+ endpointGroupRegion: 'string',
7420
+ ipAddressCidrBlocks: { 'type': 'array', 'itemType': 'string' },
7421
+ requestId: 'string',
7422
+ resourceGroupId: 'string',
7423
+ state: 'string',
7424
+ };
7425
+ }
7426
+ }
7427
+ exports.ListEndpointGroupIpAddressCidrBlocksResponseBody = ListEndpointGroupIpAddressCidrBlocksResponseBody;
7428
+ class ListEndpointGroupIpAddressCidrBlocksResponse extends $tea.Model {
7429
+ constructor(map) {
7430
+ super(map);
7431
+ }
7432
+ static names() {
7433
+ return {
7434
+ headers: 'headers',
7435
+ statusCode: 'statusCode',
7436
+ body: 'body',
7437
+ };
7438
+ }
7439
+ static types() {
7440
+ return {
7441
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7442
+ statusCode: 'number',
7443
+ body: ListEndpointGroupIpAddressCidrBlocksResponseBody,
7444
+ };
7445
+ }
7446
+ }
7447
+ exports.ListEndpointGroupIpAddressCidrBlocksResponse = ListEndpointGroupIpAddressCidrBlocksResponse;
7320
7448
  class ListEndpointGroupsRequest extends $tea.Model {
7321
7449
  constructor(map) {
7322
7450
  super(map);
@@ -7917,6 +8045,122 @@ class ListTagResourcesResponse extends $tea.Model {
7917
8045
  }
7918
8046
  }
7919
8047
  exports.ListTagResourcesResponse = ListTagResourcesResponse;
8048
+ class OpenAcceleratorServiceRequest extends $tea.Model {
8049
+ constructor(map) {
8050
+ super(map);
8051
+ }
8052
+ static names() {
8053
+ return {
8054
+ clientToken: 'ClientToken',
8055
+ regionId: 'RegionId',
8056
+ };
8057
+ }
8058
+ static types() {
8059
+ return {
8060
+ clientToken: 'string',
8061
+ regionId: 'string',
8062
+ };
8063
+ }
8064
+ }
8065
+ exports.OpenAcceleratorServiceRequest = OpenAcceleratorServiceRequest;
8066
+ class OpenAcceleratorServiceResponseBody extends $tea.Model {
8067
+ constructor(map) {
8068
+ super(map);
8069
+ }
8070
+ static names() {
8071
+ return {
8072
+ code: 'Code',
8073
+ message: 'Message',
8074
+ orderId: 'OrderId',
8075
+ requestId: 'RequestId',
8076
+ success: 'Success',
8077
+ };
8078
+ }
8079
+ static types() {
8080
+ return {
8081
+ code: 'string',
8082
+ message: 'string',
8083
+ orderId: 'number',
8084
+ requestId: 'string',
8085
+ success: 'string',
8086
+ };
8087
+ }
8088
+ }
8089
+ exports.OpenAcceleratorServiceResponseBody = OpenAcceleratorServiceResponseBody;
8090
+ class OpenAcceleratorServiceResponse extends $tea.Model {
8091
+ constructor(map) {
8092
+ super(map);
8093
+ }
8094
+ static names() {
8095
+ return {
8096
+ headers: 'headers',
8097
+ statusCode: 'statusCode',
8098
+ body: 'body',
8099
+ };
8100
+ }
8101
+ static types() {
8102
+ return {
8103
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8104
+ statusCode: 'number',
8105
+ body: OpenAcceleratorServiceResponseBody,
8106
+ };
8107
+ }
8108
+ }
8109
+ exports.OpenAcceleratorServiceResponse = OpenAcceleratorServiceResponse;
8110
+ class QueryCrossBorderApprovalStatusRequest extends $tea.Model {
8111
+ constructor(map) {
8112
+ super(map);
8113
+ }
8114
+ static names() {
8115
+ return {
8116
+ regionId: 'RegionId',
8117
+ };
8118
+ }
8119
+ static types() {
8120
+ return {
8121
+ regionId: 'string',
8122
+ };
8123
+ }
8124
+ }
8125
+ exports.QueryCrossBorderApprovalStatusRequest = QueryCrossBorderApprovalStatusRequest;
8126
+ class QueryCrossBorderApprovalStatusResponseBody extends $tea.Model {
8127
+ constructor(map) {
8128
+ super(map);
8129
+ }
8130
+ static names() {
8131
+ return {
8132
+ approvalStatus: 'ApprovalStatus',
8133
+ requestId: 'RequestId',
8134
+ };
8135
+ }
8136
+ static types() {
8137
+ return {
8138
+ approvalStatus: 'string',
8139
+ requestId: 'string',
8140
+ };
8141
+ }
8142
+ }
8143
+ exports.QueryCrossBorderApprovalStatusResponseBody = QueryCrossBorderApprovalStatusResponseBody;
8144
+ class QueryCrossBorderApprovalStatusResponse extends $tea.Model {
8145
+ constructor(map) {
8146
+ super(map);
8147
+ }
8148
+ static names() {
8149
+ return {
8150
+ headers: 'headers',
8151
+ statusCode: 'statusCode',
8152
+ body: 'body',
8153
+ };
8154
+ }
8155
+ static types() {
8156
+ return {
8157
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8158
+ statusCode: 'number',
8159
+ body: QueryCrossBorderApprovalStatusResponseBody,
8160
+ };
8161
+ }
8162
+ }
8163
+ exports.QueryCrossBorderApprovalStatusResponse = QueryCrossBorderApprovalStatusResponse;
7920
8164
  class RemoveEntriesFromAclRequest extends $tea.Model {
7921
8165
  constructor(map) {
7922
8166
  super(map);
@@ -10230,6 +10474,7 @@ class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
10230
10474
  static names() {
10231
10475
  return {
10232
10476
  enableClientIPPreservation: 'EnableClientIPPreservation',
10477
+ enableProxyProtocol: 'EnableProxyProtocol',
10233
10478
  endpoint: 'Endpoint',
10234
10479
  type: 'Type',
10235
10480
  weight: 'Weight',
@@ -10238,6 +10483,7 @@ class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
10238
10483
  static types() {
10239
10484
  return {
10240
10485
  enableClientIPPreservation: 'boolean',
10486
+ enableProxyProtocol: 'boolean',
10241
10487
  endpoint: 'string',
10242
10488
  type: 'string',
10243
10489
  weight: 'number',
@@ -11692,6 +11938,7 @@ class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
11692
11938
  state: 'State',
11693
11939
  tags: 'Tags',
11694
11940
  type: 'Type',
11941
+ upgradableStatus: 'UpgradableStatus',
11695
11942
  };
11696
11943
  }
11697
11944
  static types() {
@@ -11719,6 +11966,7 @@ class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
11719
11966
  state: 'string',
11720
11967
  tags: { 'type': 'array', 'itemType': ListAcceleratorsResponseBodyAcceleratorsTags },
11721
11968
  type: 'string',
11969
+ upgradableStatus: 'string',
11722
11970
  };
11723
11971
  }
11724
11972
  }
@@ -13304,6 +13552,7 @@ class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
13304
13552
  static names() {
13305
13553
  return {
13306
13554
  enableClientIPPreservation: 'EnableClientIPPreservation',
13555
+ enableProxyProtocol: 'EnableProxyProtocol',
13307
13556
  endpoint: 'Endpoint',
13308
13557
  type: 'Type',
13309
13558
  weight: 'Weight',
@@ -13312,6 +13561,7 @@ class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
13312
13561
  static types() {
13313
13562
  return {
13314
13563
  enableClientIPPreservation: 'boolean',
13564
+ enableProxyProtocol: 'boolean',
13315
13565
  endpoint: 'string',
13316
13566
  type: 'string',
13317
13567
  weight: 'number',
@@ -13857,10 +14107,6 @@ class Client extends openapi_client_1.default {
13857
14107
  }
13858
14108
  /**
13859
14109
  * When you call this operation, take note of the following items:
13860
- * * 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:
13861
- * * 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.
13862
- * * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
13863
- * For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
13864
14110
  * * **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.
13865
14111
  * * 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.
13866
14112
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -13903,10 +14149,6 @@ class Client extends openapi_client_1.default {
13903
14149
  }
13904
14150
  /**
13905
14151
  * When you call this operation, take note of the following items:
13906
- * * 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:
13907
- * * 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.
13908
- * * If the GA instance assumes the service-linked role AliyunServiceRoleForGaAntiDdos, the system does not create the service-linked role again.
13909
- * For more information, see [AliyunServiceRoleForGaAntiDdos](~~186805~~).
13910
14152
  * * **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.
13911
14153
  * * 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.
13912
14154
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -14037,7 +14279,7 @@ class Client extends openapi_client_1.default {
14037
14279
  return await this.bandwidthPackageAddAcceleratorWithOptions(request, runtime);
14038
14280
  }
14039
14281
  /**
14040
- * * **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.
14282
+ * * **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.
14041
14283
  * * 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.
14042
14284
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
14043
14285
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -14075,7 +14317,7 @@ class Client extends openapi_client_1.default {
14075
14317
  return $tea.cast(await this.callApi(params, req, runtime), new BandwidthPackageRemoveAcceleratorResponse({}));
14076
14318
  }
14077
14319
  /**
14078
- * * **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.
14320
+ * * **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.
14079
14321
  * * 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.
14080
14322
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
14081
14323
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -14234,9 +14476,15 @@ class Client extends openapi_client_1.default {
14234
14476
  if (!tea_util_1.default.isUnset(request.clientToken)) {
14235
14477
  query["ClientToken"] = request.clientToken;
14236
14478
  }
14479
+ if (!tea_util_1.default.isUnset(request.dryRun)) {
14480
+ query["DryRun"] = request.dryRun;
14481
+ }
14237
14482
  if (!tea_util_1.default.isUnset(request.duration)) {
14238
14483
  query["Duration"] = request.duration;
14239
14484
  }
14485
+ if (!tea_util_1.default.isUnset(request.instanceChargeType)) {
14486
+ query["InstanceChargeType"] = request.instanceChargeType;
14487
+ }
14240
14488
  if (!tea_util_1.default.isUnset(request.ipSetConfig)) {
14241
14489
  query["IpSetConfig"] = request.ipSetConfig;
14242
14490
  }
@@ -14433,13 +14681,12 @@ class Client extends openapi_client_1.default {
14433
14681
  return await this.createApplicationMonitorWithOptions(request, runtime);
14434
14682
  }
14435
14683
  /**
14436
- * ##
14437
14684
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
14438
14685
  * * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
14439
14686
  * * **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.
14440
- * * **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.
14687
+ * * **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.
14441
14688
  * When you call this operation, take note of the following items:
14442
- * * 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.
14689
+ * * **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.
14443
14690
  * * 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.
14444
14691
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
14445
14692
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -14525,13 +14772,12 @@ class Client extends openapi_client_1.default {
14525
14772
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBandwidthPackageResponse({}));
14526
14773
  }
14527
14774
  /**
14528
- * ##
14529
14775
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
14530
14776
  * * **Basic**: Both the default acceleration region and the default service region are in the Chinese mainland. The accelerated service is deployed on Alibaba Cloud.
14531
14777
  * * **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.
14532
- * * **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.
14778
+ * * **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.
14533
14779
  * When you call this operation, take note of the following items:
14534
- * * 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.
14780
+ * * **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.
14535
14781
  * * 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.
14536
14782
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
14537
14783
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -14709,10 +14955,9 @@ class Client extends openapi_client_1.default {
14709
14955
  return await this.createBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
14710
14956
  }
14711
14957
  /**
14712
- * ## Usage notes
14713
- * 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~~).
14958
+ * 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~~).
14714
14959
  * **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:
14715
- * * 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.
14960
+ * * 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.
14716
14961
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
14717
14962
  *
14718
14963
  * @param request CreateBasicAcceleratorRequest
@@ -14781,10 +15026,9 @@ class Client extends openapi_client_1.default {
14781
15026
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicAcceleratorResponse({}));
14782
15027
  }
14783
15028
  /**
14784
- * ## Usage notes
14785
- * 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~~).
15029
+ * 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~~).
14786
15030
  * **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:
14787
- * * 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.
15031
+ * * 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.
14788
15032
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
14789
15033
  *
14790
15034
  * @param request CreateBasicAcceleratorRequest
@@ -14867,11 +15111,10 @@ class Client extends openapi_client_1.default {
14867
15111
  return await this.createBasicEndpointWithOptions(request, runtime);
14868
15112
  }
14869
15113
  /**
14870
- * ##
14871
- * * 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.
15114
+ * * **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.
14872
15115
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
14873
15116
  * * If the endpoint group is in the **active** state, the endpoint group is created.
14874
- * * The **CreateBasicEndpointGroup** operation cannot be repeatedly called for the same basic GA instance within a specific period of time.
15117
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
14875
15118
  *
14876
15119
  * @param request CreateBasicEndpointGroupRequest
14877
15120
  * @param runtime runtime options for this request RuntimeOptions
@@ -14924,11 +15167,10 @@ class Client extends openapi_client_1.default {
14924
15167
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicEndpointGroupResponse({}));
14925
15168
  }
14926
15169
  /**
14927
- * ##
14928
- * * 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.
15170
+ * * **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.
14929
15171
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
14930
15172
  * * If the endpoint group is in the **active** state, the endpoint group is created.
14931
- * * The **CreateBasicEndpointGroup** operation cannot be repeatedly called for the same basic GA instance within a specific period of time.
15173
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
14932
15174
  *
14933
15175
  * @param request CreateBasicEndpointGroupRequest
14934
15176
  * @return CreateBasicEndpointGroupResponse
@@ -14938,9 +15180,8 @@ class Client extends openapi_client_1.default {
14938
15180
  return await this.createBasicEndpointGroupWithOptions(request, runtime);
14939
15181
  }
14940
15182
  /**
14941
- * ### Usage notes
14942
- * * **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.
14943
- * * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
15183
+ * * **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.
15184
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
14944
15185
  *
14945
15186
  * @param request CreateBasicEndpointsRequest
14946
15187
  * @param runtime runtime options for this request RuntimeOptions
@@ -14981,9 +15222,8 @@ class Client extends openapi_client_1.default {
14981
15222
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicEndpointsResponse({}));
14982
15223
  }
14983
15224
  /**
14984
- * ### Usage notes
14985
- * * **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.
14986
- * * The **CreateBasicEndpoints** operation cannot be repeatedly called for the same GA instance within a specific period of time.
15225
+ * * **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.
15226
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
14987
15227
  *
14988
15228
  * @param request CreateBasicEndpointsRequest
14989
15229
  * @return CreateBasicEndpointsResponse
@@ -14993,12 +15233,12 @@ class Client extends openapi_client_1.default {
14993
15233
  return await this.createBasicEndpointsWithOptions(request, runtime);
14994
15234
  }
14995
15235
  /**
14996
- * Before you call this operation, take note of the following limits:
14997
- * * You can add only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
14998
- * * **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.
15236
+ * Take note of the following limits:
15237
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
15238
+ * * **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.
14999
15239
  * * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
15000
15240
  * * If the acceleration region is in the **active** state, the acceleration region is created.
15001
- * * The **CreateBasicIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
15241
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
15002
15242
  *
15003
15243
  * @param request CreateBasicIpSetRequest
15004
15244
  * @param runtime runtime options for this request RuntimeOptions
@@ -15042,12 +15282,12 @@ class Client extends openapi_client_1.default {
15042
15282
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicIpSetResponse({}));
15043
15283
  }
15044
15284
  /**
15045
- * Before you call this operation, take note of the following limits:
15046
- * * You can add only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
15047
- * * **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.
15285
+ * Take note of the following limits:
15286
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
15287
+ * * **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.
15048
15288
  * * If the acceleration region is in the **init** state, the acceleration region is being created. In this case, you can perform only query operations.
15049
15289
  * * If the acceleration region is in the **active** state, the acceleration region is created.
15050
- * * The **CreateBasicIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
15290
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
15051
15291
  *
15052
15292
  * @param request CreateBasicIpSetRequest
15053
15293
  * @return CreateBasicIpSetResponse
@@ -15057,19 +15297,7 @@ class Client extends openapi_client_1.default {
15057
15297
  return await this.createBasicIpSetWithOptions(request, runtime);
15058
15298
  }
15059
15299
  /**
15060
- * 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.
15061
- * 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:
15062
- * * **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.
15063
- * * 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.
15064
- * * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
15065
- * * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
15066
- * ### Prerequisites
15067
- * Make sure that the following operations are performed before you call this operation:
15068
- * * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
15069
- * * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
15070
- * * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
15071
- * * 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~~).
15072
- * * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
15300
+ * readAndWrite
15073
15301
  *
15074
15302
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
15075
15303
  * @param runtime runtime options for this request RuntimeOptions
@@ -15110,19 +15338,7 @@ class Client extends openapi_client_1.default {
15110
15338
  return $tea.cast(await this.callApi(params, req, runtime), new CreateCustomRoutingEndpointGroupDestinationsResponse({}));
15111
15339
  }
15112
15340
  /**
15113
- * 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.
15114
- * 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:
15115
- * * **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.
15116
- * * 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.
15117
- * * If the endpoint group is in the **active** state, it indicates that mapping configurations are created for the endpoint group.
15118
- * * The **CreateCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same GA instance within a specific period of time.
15119
- * ### Prerequisites
15120
- * Make sure that the following operations are performed before you call this operation:
15121
- * * A standard GA instance is created. For more information, see [CreateAccelerator](~~206786~~).
15122
- * * A bandwidth plan is associated with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
15123
- * * An application is deployed to receive requests that are forwarded from GA. You can specify only vSwitches as endpoints for custom routing listeners.
15124
- * * 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~~).
15125
- * * An endpoint group is created for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
15341
+ * readAndWrite
15126
15342
  *
15127
15343
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
15128
15344
  * @return CreateCustomRoutingEndpointGroupDestinationsResponse
@@ -15288,19 +15504,7 @@ class Client extends openapi_client_1.default {
15288
15504
  return await this.createCustomRoutingEndpointTrafficPoliciesWithOptions(request, runtime);
15289
15505
  }
15290
15506
  /**
15291
- * 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.
15292
- * This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
15293
- * * **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.
15294
- * * 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.
15295
- * * If the endpoint group is in the **active** state, it indicates that endpoints are created.
15296
- * * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
15297
- * ### Prerequisites
15298
- * The following operations are complete before you call this operation:
15299
- * * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
15300
- * * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
15301
- * * 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.
15302
- * * 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~~).
15303
- * * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
15507
+ * readAndWrite
15304
15508
  *
15305
15509
  * @param request CreateCustomRoutingEndpointsRequest
15306
15510
  * @param runtime runtime options for this request RuntimeOptions
@@ -15338,19 +15542,7 @@ class Client extends openapi_client_1.default {
15338
15542
  return $tea.cast(await this.callApi(params, req, runtime), new CreateCustomRoutingEndpointsResponse({}));
15339
15543
  }
15340
15544
  /**
15341
- * 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.
15342
- * This operation is used to create endpoints for custom routing listeners. When you call this operation, take note of the following items:
15343
- * * **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.
15344
- * * 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.
15345
- * * If the endpoint group is in the **active** state, it indicates that endpoints are created.
15346
- * * The **CreateCustomRoutingEndpoints** operation cannot be called repeatedly for the same GA instance within a specific period of time.
15347
- * ### Prerequisites
15348
- * The following operations are complete before you call this operation:
15349
- * * Create a standard GA instance. For more information, see [CreateAccelerator](~~206786~~).
15350
- * * Associate a bandwidth plan with the standard GA instance. For more information, see [BandwidthPackageAddAccelerator](~~153239~~).
15351
- * * 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.
15352
- * * 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~~).
15353
- * * Create an endpoint group for the custom routing listener. For more information, see [CreateCustomRoutingEndpointGroups](~~449363~~).
15545
+ * readAndWrite
15354
15546
  *
15355
15547
  * @param request CreateCustomRoutingEndpointsRequest
15356
15548
  * @return CreateCustomRoutingEndpointsResponse
@@ -15633,11 +15825,10 @@ class Client extends openapi_client_1.default {
15633
15825
  return await this.createForwardingRulesWithOptions(request, runtime);
15634
15826
  }
15635
15827
  /**
15636
- * ## Usage notes
15637
- * * **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.
15828
+ * * **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.
15638
15829
  * * 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.
15639
15830
  * * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
15640
- * * The **CreateIpSets** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
15831
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
15641
15832
  *
15642
15833
  * @param request CreateIpSetsRequest
15643
15834
  * @param runtime runtime options for this request RuntimeOptions
@@ -15675,11 +15866,10 @@ class Client extends openapi_client_1.default {
15675
15866
  return $tea.cast(await this.callApi(params, req, runtime), new CreateIpSetsResponse({}));
15676
15867
  }
15677
15868
  /**
15678
- * ## Usage notes
15679
- * * **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.
15869
+ * * **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.
15680
15870
  * * 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.
15681
15871
  * * If acceleration regions are in the **active** state, it indicates that the acceleration regions are created.
15682
- * * The **CreateIpSets** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
15872
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
15683
15873
  *
15684
15874
  * @param request CreateIpSetsRequest
15685
15875
  * @return CreateIpSetsResponse
@@ -15838,9 +16028,9 @@ class Client extends openapi_client_1.default {
15838
16028
  }
15839
16029
  /**
15840
16030
  * * Subscription GA instances cannot be deleted.
15841
- * * 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~~).
15842
- * * **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.
15843
- * * 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.
16031
+ * * 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~~).
16032
+ * * **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.
16033
+ * * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
15844
16034
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
15845
16035
  *
15846
16036
  * @param request DeleteAcceleratorRequest
@@ -15874,9 +16064,9 @@ class Client extends openapi_client_1.default {
15874
16064
  }
15875
16065
  /**
15876
16066
  * * Subscription GA instances cannot be deleted.
15877
- * * 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~~).
15878
- * * **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.
15879
- * * 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.
16067
+ * * 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~~).
16068
+ * * **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.
16069
+ * * If the GA instance is in the **deleting** state, the GA instance is being deleted. In this case, you can perform only query operations.
15880
16070
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
15881
16071
  *
15882
16072
  * @param request DeleteAcceleratorRequest
@@ -15994,7 +16184,7 @@ class Client extends openapi_client_1.default {
15994
16184
  /**
15995
16185
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
15996
16186
  * * 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~~).
15997
- * * **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.
16187
+ * * **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.
15998
16188
  * * 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.
15999
16189
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
16000
16190
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -16034,7 +16224,7 @@ class Client extends openapi_client_1.default {
16034
16224
  /**
16035
16225
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
16036
16226
  * * 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~~).
16037
- * * **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.
16227
+ * * **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.
16038
16228
  * * 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.
16039
16229
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
16040
16230
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -16303,10 +16493,10 @@ class Client extends openapi_client_1.default {
16303
16493
  return await this.deleteBasicEndpointGroupWithOptions(request, runtime);
16304
16494
  }
16305
16495
  /**
16306
- * * **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.
16496
+ * * \\*\\*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:
16307
16497
  * * 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.
16308
16498
  * * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
16309
- * * The **DeleteBasicIpSet** cannot be called repeatedly for the same basic GA instance within a specific period of time.
16499
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
16310
16500
  *
16311
16501
  * @param request DeleteBasicIpSetRequest
16312
16502
  * @param runtime runtime options for this request RuntimeOptions
@@ -16341,10 +16531,10 @@ class Client extends openapi_client_1.default {
16341
16531
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteBasicIpSetResponse({}));
16342
16532
  }
16343
16533
  /**
16344
- * * **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.
16534
+ * * \\*\\*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:
16345
16535
  * * 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.
16346
16536
  * * If the information of the acceleration region is not displayed in the response, it indicates that the acceleration region is deleted.
16347
- * * The **DeleteBasicIpSet** cannot be called repeatedly for the same basic GA instance within a specific period of time.
16537
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
16348
16538
  *
16349
16539
  * @param request DeleteBasicIpSetRequest
16350
16540
  * @return DeleteBasicIpSetResponse
@@ -16354,11 +16544,10 @@ class Client extends openapi_client_1.default {
16354
16544
  return await this.deleteBasicIpSetWithOptions(request, runtime);
16355
16545
  }
16356
16546
  /**
16357
- * ### Usage notes
16358
- * * **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.
16547
+ * * **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.
16359
16548
  * * 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.
16360
- * * 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.
16361
- * * The **DeleteCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
16549
+ * * 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.
16550
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
16362
16551
  *
16363
16552
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
16364
16553
  * @param runtime runtime options for this request RuntimeOptions
@@ -16399,11 +16588,10 @@ class Client extends openapi_client_1.default {
16399
16588
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteCustomRoutingEndpointGroupDestinationsResponse({}));
16400
16589
  }
16401
16590
  /**
16402
- * ### Usage notes
16403
- * * **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.
16591
+ * * **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.
16404
16592
  * * 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.
16405
- * * 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.
16406
- * * The **DeleteCustomRoutingEndpointGroupDestinations** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
16593
+ * * 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.
16594
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
16407
16595
  *
16408
16596
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
16409
16597
  * @return DeleteCustomRoutingEndpointGroupDestinationsResponse
@@ -16524,11 +16712,10 @@ class Client extends openapi_client_1.default {
16524
16712
  return await this.deleteCustomRoutingEndpointTrafficPoliciesWithOptions(request, runtime);
16525
16713
  }
16526
16714
  /**
16527
- * ### Usage notes
16528
- * * **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.
16529
- * * If an endpoint group is in the **updating** state, the endpoints are being deleted. In this case, you can perform only query operations.
16530
- * * 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.
16531
- * * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
16715
+ * * **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.
16716
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
16717
+ * * 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.
16718
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
16532
16719
  *
16533
16720
  * @param request DeleteCustomRoutingEndpointsRequest
16534
16721
  * @param runtime runtime options for this request RuntimeOptions
@@ -16566,11 +16753,10 @@ class Client extends openapi_client_1.default {
16566
16753
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteCustomRoutingEndpointsResponse({}));
16567
16754
  }
16568
16755
  /**
16569
- * ### Usage notes
16570
- * * **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.
16571
- * * If an endpoint group is in the **updating** state, the endpoints are being deleted. In this case, you can perform only query operations.
16572
- * * 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.
16573
- * * You cannot repeatedly call the **DeleteCustomRoutingEndpoints** operation for the same Global Accelerator (GA) instance within the specified period of time.
16756
+ * * **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.
16757
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
16758
+ * * 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.
16759
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
16574
16760
  *
16575
16761
  * @param request DeleteCustomRoutingEndpointsRequest
16576
16762
  * @return DeleteCustomRoutingEndpointsResponse
@@ -16676,9 +16862,9 @@ class Client extends openapi_client_1.default {
16676
16862
  return await this.deleteEndpointGroupWithOptions(request, runtime);
16677
16863
  }
16678
16864
  /**
16679
- * * **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.
16680
- * * 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.
16681
- * * If the endpoint group cannot be queried, it indicates that the endpoint group is deleted.
16865
+ * * **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.
16866
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
16867
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
16682
16868
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16683
16869
  *
16684
16870
  * @param request DeleteEndpointGroupsRequest
@@ -16717,9 +16903,9 @@ class Client extends openapi_client_1.default {
16717
16903
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteEndpointGroupsResponse({}));
16718
16904
  }
16719
16905
  /**
16720
- * * **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.
16721
- * * 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.
16722
- * * If the endpoint group cannot be queried, it indicates that the endpoint group is deleted.
16906
+ * * **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.
16907
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
16908
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
16723
16909
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16724
16910
  *
16725
16911
  * @param request DeleteEndpointGroupsRequest
@@ -16730,9 +16916,9 @@ class Client extends openapi_client_1.default {
16730
16916
  return await this.deleteEndpointGroupsWithOptions(request, runtime);
16731
16917
  }
16732
16918
  /**
16733
- * * **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.
16734
- * * If the forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16735
- * * If the forwarding rule cannot be queried, the forwarding rule is deleted.
16919
+ * * **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.
16920
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16921
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
16736
16922
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16737
16923
  *
16738
16924
  * @param request DeleteForwardingRulesRequest
@@ -16774,9 +16960,9 @@ class Client extends openapi_client_1.default {
16774
16960
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteForwardingRulesResponse({}));
16775
16961
  }
16776
16962
  /**
16777
- * * **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.
16778
- * * If the forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16779
- * * If the forwarding rule cannot be queried, the forwarding rule is deleted.
16963
+ * * **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.
16964
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16965
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
16780
16966
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16781
16967
  *
16782
16968
  * @param request DeleteForwardingRulesRequest
@@ -16889,8 +17075,8 @@ class Client extends openapi_client_1.default {
16889
17075
  return await this.deleteIpSetsWithOptions(request, runtime);
16890
17076
  }
16891
17077
  /**
16892
- * * **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.
16893
- * * 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.
17078
+ * * **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.
17079
+ * * 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.
16894
17080
  * * If the listener cannot be queried, it indicates that the listener is deleted.
16895
17081
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
16896
17082
  *
@@ -16927,8 +17113,8 @@ class Client extends openapi_client_1.default {
16927
17113
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteListenerResponse({}));
16928
17114
  }
16929
17115
  /**
16930
- * * **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.
16931
- * * 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.
17116
+ * * **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.
17117
+ * * 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.
16932
17118
  * * If the listener cannot be queried, it indicates that the listener is deleted.
16933
17119
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
16934
17120
  *
@@ -17054,6 +17240,32 @@ class Client extends openapi_client_1.default {
17054
17240
  let runtime = new $Util.RuntimeOptions({});
17055
17241
  return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
17056
17242
  }
17243
+ async describeAcceleratorServiceStatusWithOptions(request, runtime) {
17244
+ tea_util_1.default.validateModel(request);
17245
+ let query = {};
17246
+ if (!tea_util_1.default.isUnset(request.regionId)) {
17247
+ query["RegionId"] = request.regionId;
17248
+ }
17249
+ let req = new $OpenApi.OpenApiRequest({
17250
+ query: openapi_util_1.default.query(query),
17251
+ });
17252
+ let params = new $OpenApi.Params({
17253
+ action: "DescribeAcceleratorServiceStatus",
17254
+ version: "2019-11-20",
17255
+ protocol: "HTTPS",
17256
+ pathname: "/",
17257
+ method: "POST",
17258
+ authType: "AK",
17259
+ style: "RPC",
17260
+ reqBodyType: "formData",
17261
+ bodyType: "json",
17262
+ });
17263
+ return $tea.cast(await this.callApi(params, req, runtime), new DescribeAcceleratorServiceStatusResponse({}));
17264
+ }
17265
+ async describeAcceleratorServiceStatus(request) {
17266
+ let runtime = new $Util.RuntimeOptions({});
17267
+ return await this.describeAcceleratorServiceStatusWithOptions(request, runtime);
17268
+ }
17057
17269
  async describeApplicationMonitorWithOptions(request, runtime) {
17058
17270
  tea_util_1.default.validateModel(request);
17059
17271
  let query = {};
@@ -19055,6 +19267,35 @@ class Client extends openapi_client_1.default {
19055
19267
  let runtime = new $Util.RuntimeOptions({});
19056
19268
  return await this.listDomainsWithOptions(request, runtime);
19057
19269
  }
19270
+ async listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime) {
19271
+ tea_util_1.default.validateModel(request);
19272
+ let query = {};
19273
+ if (!tea_util_1.default.isUnset(request.endpointGroupRegion)) {
19274
+ query["EndpointGroupRegion"] = request.endpointGroupRegion;
19275
+ }
19276
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19277
+ query["RegionId"] = request.regionId;
19278
+ }
19279
+ let req = new $OpenApi.OpenApiRequest({
19280
+ query: openapi_util_1.default.query(query),
19281
+ });
19282
+ let params = new $OpenApi.Params({
19283
+ action: "ListEndpointGroupIpAddressCidrBlocks",
19284
+ version: "2019-11-20",
19285
+ protocol: "HTTPS",
19286
+ pathname: "/",
19287
+ method: "POST",
19288
+ authType: "AK",
19289
+ style: "RPC",
19290
+ reqBodyType: "formData",
19291
+ bodyType: "json",
19292
+ });
19293
+ return $tea.cast(await this.callApi(params, req, runtime), new ListEndpointGroupIpAddressCidrBlocksResponse({}));
19294
+ }
19295
+ async listEndpointGroupIpAddressCidrBlocks(request) {
19296
+ let runtime = new $Util.RuntimeOptions({});
19297
+ return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
19298
+ }
19058
19299
  async listEndpointGroupsWithOptions(request, runtime) {
19059
19300
  tea_util_1.default.validateModel(request);
19060
19301
  let query = {};
@@ -19458,11 +19699,63 @@ class Client extends openapi_client_1.default {
19458
19699
  let runtime = new $Util.RuntimeOptions({});
19459
19700
  return await this.listTagResourcesWithOptions(request, runtime);
19460
19701
  }
19702
+ async openAcceleratorServiceWithOptions(request, runtime) {
19703
+ tea_util_1.default.validateModel(request);
19704
+ let query = {};
19705
+ if (!tea_util_1.default.isUnset(request.clientToken)) {
19706
+ query["ClientToken"] = request.clientToken;
19707
+ }
19708
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19709
+ query["RegionId"] = request.regionId;
19710
+ }
19711
+ let req = new $OpenApi.OpenApiRequest({
19712
+ query: openapi_util_1.default.query(query),
19713
+ });
19714
+ let params = new $OpenApi.Params({
19715
+ action: "OpenAcceleratorService",
19716
+ version: "2019-11-20",
19717
+ protocol: "HTTPS",
19718
+ pathname: "/",
19719
+ method: "POST",
19720
+ authType: "AK",
19721
+ style: "RPC",
19722
+ reqBodyType: "formData",
19723
+ bodyType: "json",
19724
+ });
19725
+ return $tea.cast(await this.callApi(params, req, runtime), new OpenAcceleratorServiceResponse({}));
19726
+ }
19727
+ async openAcceleratorService(request) {
19728
+ let runtime = new $Util.RuntimeOptions({});
19729
+ return await this.openAcceleratorServiceWithOptions(request, runtime);
19730
+ }
19731
+ async queryCrossBorderApprovalStatusWithOptions(request, runtime) {
19732
+ tea_util_1.default.validateModel(request);
19733
+ let query = {};
19734
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19735
+ query["RegionId"] = request.regionId;
19736
+ }
19737
+ let req = new $OpenApi.OpenApiRequest({
19738
+ query: openapi_util_1.default.query(query),
19739
+ });
19740
+ let params = new $OpenApi.Params({
19741
+ action: "QueryCrossBorderApprovalStatus",
19742
+ version: "2019-11-20",
19743
+ protocol: "HTTPS",
19744
+ pathname: "/",
19745
+ method: "POST",
19746
+ authType: "AK",
19747
+ style: "RPC",
19748
+ reqBodyType: "formData",
19749
+ bodyType: "json",
19750
+ });
19751
+ return $tea.cast(await this.callApi(params, req, runtime), new QueryCrossBorderApprovalStatusResponse({}));
19752
+ }
19753
+ async queryCrossBorderApprovalStatus(request) {
19754
+ let runtime = new $Util.RuntimeOptions({});
19755
+ return await this.queryCrossBorderApprovalStatusWithOptions(request, runtime);
19756
+ }
19461
19757
  /**
19462
- * * 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:
19463
- * * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
19464
- * * If an ACL is in the **active** state, the IP entries are deleted.
19465
- * * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
19758
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
19466
19759
  *
19467
19760
  * @param request RemoveEntriesFromAclRequest
19468
19761
  * @param runtime runtime options for this request RuntimeOptions
@@ -19503,10 +19796,7 @@ class Client extends openapi_client_1.default {
19503
19796
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveEntriesFromAclResponse({}));
19504
19797
  }
19505
19798
  /**
19506
- * * 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:
19507
- * * If an ACL is in the **configuring** state, the IP entries are being deleted. In this case, you can perform only query operations.
19508
- * * If an ACL is in the **active** state, the IP entries are deleted.
19509
- * * You cannot repeatedly call the **RemoveEntriesFromAcl** operation for the same Global Accelerator (GA) instance within the specified period of time.
19799
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
19510
19800
  *
19511
19801
  * @param request RemoveEntriesFromAclRequest
19512
19802
  * @return RemoveEntriesFromAclResponse
@@ -19791,8 +20081,8 @@ class Client extends openapi_client_1.default {
19791
20081
  return await this.updateAcceleratorAutoRenewAttributeWithOptions(request, runtime);
19792
20082
  }
19793
20083
  /**
19794
- * 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:
19795
- * * **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.
20084
+ * 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:
20085
+ * * **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.
19796
20086
  * * 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.
19797
20087
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
19798
20088
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -19827,8 +20117,8 @@ class Client extends openapi_client_1.default {
19827
20117
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateAcceleratorConfirmResponse({}));
19828
20118
  }
19829
20119
  /**
19830
- * 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:
19831
- * * **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.
20120
+ * 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:
20121
+ * * **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.
19832
20122
  * * 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.
19833
20123
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
19834
20124
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -19840,6 +20130,16 @@ class Client extends openapi_client_1.default {
19840
20130
  let runtime = new $Util.RuntimeOptions({});
19841
20131
  return await this.updateAcceleratorConfirmWithOptions(request, runtime);
19842
20132
  }
20133
+ /**
20134
+ * ### Prerequisites
20135
+ * 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:
20136
+ * * 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.
20137
+ * * 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~~).
20138
+ *
20139
+ * @param request UpdateAcceleratorCrossBorderModeRequest
20140
+ * @param runtime runtime options for this request RuntimeOptions
20141
+ * @return UpdateAcceleratorCrossBorderModeResponse
20142
+ */
19843
20143
  async updateAcceleratorCrossBorderModeWithOptions(request, runtime) {
19844
20144
  tea_util_1.default.validateModel(request);
19845
20145
  let query = {};
@@ -19871,6 +20171,15 @@ class Client extends openapi_client_1.default {
19871
20171
  });
19872
20172
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderModeResponse({}));
19873
20173
  }
20174
+ /**
20175
+ * ### Prerequisites
20176
+ * 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:
20177
+ * * 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.
20178
+ * * 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~~).
20179
+ *
20180
+ * @param request UpdateAcceleratorCrossBorderModeRequest
20181
+ * @return UpdateAcceleratorCrossBorderModeResponse
20182
+ */
19874
20183
  async updateAcceleratorCrossBorderMode(request) {
19875
20184
  let runtime = new $Util.RuntimeOptions({});
19876
20185
  return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
@@ -20109,15 +20418,15 @@ class Client extends openapi_client_1.default {
20109
20418
  return await this.updateBandwidthPackagaAutoRenewAttributeWithOptions(request, runtime);
20110
20419
  }
20111
20420
  /**
20112
- * When you call this operation, take note of the following items:
20113
- * * **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.
20114
- * * **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.
20115
- * * 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.
20116
- * * If the parameter settings of the bandwidth plan change, it indicates that the bandwidth plan is modified.
20117
- * * **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.
20118
- * * 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.
20119
- * * If the GA instance is in the **active** state, it indicates that the bandwidth plan is modified.
20120
- * * The **UpdateBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
20421
+ * Take note of the following items:
20422
+ * * **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.
20423
+ * * **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.
20424
+ * * 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.
20425
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
20426
+ * * **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.
20427
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
20428
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
20429
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
20121
20430
  *
20122
20431
  * @param request UpdateBandwidthPackageRequest
20123
20432
  * @param runtime runtime options for this request RuntimeOptions
@@ -20167,15 +20476,15 @@ class Client extends openapi_client_1.default {
20167
20476
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateBandwidthPackageResponse({}));
20168
20477
  }
20169
20478
  /**
20170
- * When you call this operation, take note of the following items:
20171
- * * **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.
20172
- * * **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.
20173
- * * 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.
20174
- * * If the parameter settings of the bandwidth plan change, it indicates that the bandwidth plan is modified.
20175
- * * **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.
20176
- * * 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.
20177
- * * If the GA instance is in the **active** state, it indicates that the bandwidth plan is modified.
20178
- * * The **UpdateBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
20479
+ * Take note of the following items:
20480
+ * * **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.
20481
+ * * **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.
20482
+ * * 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.
20483
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
20484
+ * * **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.
20485
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
20486
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
20487
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
20179
20488
  *
20180
20489
  * @param request UpdateBandwidthPackageRequest
20181
20490
  * @return UpdateBandwidthPackageResponse
@@ -20480,9 +20789,9 @@ class Client extends openapi_client_1.default {
20480
20789
  return await this.updateCustomRoutingEndpointGroupDestinationsWithOptions(request, runtime);
20481
20790
  }
20482
20791
  /**
20483
- * * **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.
20484
- * * 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.
20485
- * * If the endpoint group is in the **active** state, access policies of traffic are modified for endpoints in the endpoint group.
20792
+ * * **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.
20793
+ * * 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.
20794
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
20486
20795
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20487
20796
  *
20488
20797
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -20521,9 +20830,9 @@ class Client extends openapi_client_1.default {
20521
20830
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateCustomRoutingEndpointTrafficPoliciesResponse({}));
20522
20831
  }
20523
20832
  /**
20524
- * * **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.
20525
- * * 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.
20526
- * * If the endpoint group is in the **active** state, access policies of traffic are modified for endpoints in the endpoint group.
20833
+ * * **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.
20834
+ * * 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.
20835
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
20527
20836
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20528
20837
  *
20529
20838
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -20588,9 +20897,8 @@ class Client extends openapi_client_1.default {
20588
20897
  return await this.updateCustomRoutingEndpointsWithOptions(request, runtime);
20589
20898
  }
20590
20899
  /**
20591
- * ### Usage notes
20592
- * 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.
20593
- * You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
20900
+ * 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.
20901
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
20594
20902
  *
20595
20903
  * @param request UpdateDomainRequest
20596
20904
  * @param runtime runtime options for this request RuntimeOptions
@@ -20625,9 +20933,8 @@ class Client extends openapi_client_1.default {
20625
20933
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateDomainResponse({}));
20626
20934
  }
20627
20935
  /**
20628
- * ### Usage notes
20629
- * 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.
20630
- * You cannot repeatedly call the \\*\\* UpdateDomain\\*\\* operation by using the same Alibaba Cloud account within a specific period of time.
20936
+ * 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.
20937
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
20631
20938
  *
20632
20939
  * @param request UpdateDomainRequest
20633
20940
  * @return UpdateDomainResponse
@@ -20637,8 +20944,8 @@ class Client extends openapi_client_1.default {
20637
20944
  return await this.updateDomainWithOptions(request, runtime);
20638
20945
  }
20639
20946
  /**
20640
- * You can call this operation to obtain and update the ICP filing status of an accelerated domain name.
20641
- * You cannot repeatedly call the **UpdateDomainState** operation by using the same Alibaba Cloud account within a specific period of time.
20947
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
20948
+ * 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.
20642
20949
  *
20643
20950
  * @param request UpdateDomainStateRequest
20644
20951
  * @param runtime runtime options for this request RuntimeOptions
@@ -20670,8 +20977,8 @@ class Client extends openapi_client_1.default {
20670
20977
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateDomainStateResponse({}));
20671
20978
  }
20672
20979
  /**
20673
- * You can call this operation to obtain and update the ICP filing status of an accelerated domain name.
20674
- * You cannot repeatedly call the **UpdateDomainState** operation by using the same Alibaba Cloud account within a specific period of time.
20980
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
20981
+ * 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.
20675
20982
  *
20676
20983
  * @param request UpdateDomainStateRequest
20677
20984
  * @return UpdateDomainStateResponse
@@ -20923,11 +21230,10 @@ class Client extends openapi_client_1.default {
20923
21230
  return await this.updateForwardingRulesWithOptions(request, runtime);
20924
21231
  }
20925
21232
  /**
20926
- * ## Usage notes
20927
21233
  * * **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.
20928
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
20929
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
20930
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
21234
+ * * 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.
21235
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
21236
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
20931
21237
  *
20932
21238
  * @param request UpdateIpSetRequest
20933
21239
  * @param runtime runtime options for this request RuntimeOptions
@@ -20965,11 +21271,10 @@ class Client extends openapi_client_1.default {
20965
21271
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateIpSetResponse({}));
20966
21272
  }
20967
21273
  /**
20968
- * ## Usage notes
20969
21274
  * * **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.
20970
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
20971
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
20972
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
21275
+ * * 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.
21276
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
21277
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
20973
21278
  *
20974
21279
  * @param request UpdateIpSetRequest
20975
21280
  * @return UpdateIpSetResponse
@@ -20979,10 +21284,10 @@ class Client extends openapi_client_1.default {
20979
21284
  return await this.updateIpSetWithOptions(request, runtime);
20980
21285
  }
20981
21286
  /**
20982
- * * **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.
20983
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
20984
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
20985
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
21287
+ * * **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.
21288
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
21289
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
21290
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
20986
21291
  *
20987
21292
  * @param request UpdateIpSetsRequest
20988
21293
  * @param runtime runtime options for this request RuntimeOptions
@@ -21014,10 +21319,10 @@ class Client extends openapi_client_1.default {
21014
21319
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateIpSetsResponse({}));
21015
21320
  }
21016
21321
  /**
21017
- * * **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.
21018
- * * If the acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
21019
- * * If the acceleration region is in the **active** state, the acceleration region is modified.
21020
- * * The **UpdateIpSet** operation cannot be repeatedly called for the same GA instance within a specific period of time.
21322
+ * * **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.
21323
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
21324
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
21325
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
21021
21326
  *
21022
21327
  * @param request UpdateIpSetsRequest
21023
21328
  * @return UpdateIpSetsResponse
@@ -21027,9 +21332,9 @@ class Client extends openapi_client_1.default {
21027
21332
  return await this.updateIpSetsWithOptions(request, runtime);
21028
21333
  }
21029
21334
  /**
21030
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
21335
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
21031
21336
  * When you call this operation, take note of the following items:
21032
- * * **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.
21337
+ * * **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.
21033
21338
  * * 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.
21034
21339
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
21035
21340
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
@@ -21097,9 +21402,9 @@ class Client extends openapi_client_1.default {
21097
21402
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateListenerResponse({}));
21098
21403
  }
21099
21404
  /**
21100
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
21405
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
21101
21406
  * When you call this operation, take note of the following items:
21102
- * * **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.
21407
+ * * **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.
21103
21408
  * * 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.
21104
21409
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
21105
21410
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.