@alicloud/ga20191120 1.0.20 → 1.0.22

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
  }
@@ -11861,14 +12109,20 @@ class ListAvailableAccelerateAreasResponseBodyAreasRegionList extends $tea.Model
11861
12109
  }
11862
12110
  static names() {
11863
12111
  return {
12112
+ chinaMainland: 'ChinaMainland',
12113
+ ispTypeList: 'IspTypeList',
11864
12114
  localName: 'LocalName',
11865
12115
  regionId: 'RegionId',
12116
+ supportIpv6: 'SupportIpv6',
11866
12117
  };
11867
12118
  }
11868
12119
  static types() {
11869
12120
  return {
12121
+ chinaMainland: 'boolean',
12122
+ ispTypeList: { 'type': 'array', 'itemType': 'string' },
11870
12123
  localName: 'string',
11871
12124
  regionId: 'string',
12125
+ supportIpv6: 'boolean',
11872
12126
  };
11873
12127
  }
11874
12128
  }
@@ -11899,6 +12153,7 @@ class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
11899
12153
  }
11900
12154
  static names() {
11901
12155
  return {
12156
+ chinaMainland: 'ChinaMainland',
11902
12157
  localName: 'LocalName',
11903
12158
  pop: 'Pop',
11904
12159
  regionId: 'RegionId',
@@ -11906,6 +12161,7 @@ class ListAvailableBusiRegionsResponseBodyRegions extends $tea.Model {
11906
12161
  }
11907
12162
  static types() {
11908
12163
  return {
12164
+ chinaMainland: 'boolean',
11909
12165
  localName: 'string',
11910
12166
  pop: 'boolean',
11911
12167
  regionId: 'string',
@@ -13304,6 +13560,7 @@ class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
13304
13560
  static names() {
13305
13561
  return {
13306
13562
  enableClientIPPreservation: 'EnableClientIPPreservation',
13563
+ enableProxyProtocol: 'EnableProxyProtocol',
13307
13564
  endpoint: 'Endpoint',
13308
13565
  type: 'Type',
13309
13566
  weight: 'Weight',
@@ -13312,6 +13569,7 @@ class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model {
13312
13569
  static types() {
13313
13570
  return {
13314
13571
  enableClientIPPreservation: 'boolean',
13572
+ enableProxyProtocol: 'boolean',
13315
13573
  endpoint: 'string',
13316
13574
  type: 'string',
13317
13575
  weight: 'number',
@@ -13857,10 +14115,6 @@ class Client extends openapi_client_1.default {
13857
14115
  }
13858
14116
  /**
13859
14117
  * 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
14118
  * * **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
14119
  * * 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
14120
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -13903,10 +14157,6 @@ class Client extends openapi_client_1.default {
13903
14157
  }
13904
14158
  /**
13905
14159
  * 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
14160
  * * **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
14161
  * * 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
14162
  * * If the GA instance is in the **active** state, the Anti-DDoS Pro/Premium instance is associated with the GA instance.
@@ -14037,7 +14287,7 @@ class Client extends openapi_client_1.default {
14037
14287
  return await this.bandwidthPackageAddAcceleratorWithOptions(request, runtime);
14038
14288
  }
14039
14289
  /**
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.
14290
+ * * **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
14291
  * * 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
14292
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
14043
14293
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -14075,7 +14325,7 @@ class Client extends openapi_client_1.default {
14075
14325
  return $tea.cast(await this.callApi(params, req, runtime), new BandwidthPackageRemoveAcceleratorResponse({}));
14076
14326
  }
14077
14327
  /**
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.
14328
+ * * **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
14329
  * * 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
14330
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is disassociated.
14081
14331
  * * The **BandwidthPackageRemoveAccelerator** cannot be called repeatedly for the same GA instance.
@@ -14234,9 +14484,15 @@ class Client extends openapi_client_1.default {
14234
14484
  if (!tea_util_1.default.isUnset(request.clientToken)) {
14235
14485
  query["ClientToken"] = request.clientToken;
14236
14486
  }
14487
+ if (!tea_util_1.default.isUnset(request.dryRun)) {
14488
+ query["DryRun"] = request.dryRun;
14489
+ }
14237
14490
  if (!tea_util_1.default.isUnset(request.duration)) {
14238
14491
  query["Duration"] = request.duration;
14239
14492
  }
14493
+ if (!tea_util_1.default.isUnset(request.instanceChargeType)) {
14494
+ query["InstanceChargeType"] = request.instanceChargeType;
14495
+ }
14240
14496
  if (!tea_util_1.default.isUnset(request.ipSetConfig)) {
14241
14497
  query["IpSetConfig"] = request.ipSetConfig;
14242
14498
  }
@@ -14433,13 +14689,12 @@ class Client extends openapi_client_1.default {
14433
14689
  return await this.createApplicationMonitorWithOptions(request, runtime);
14434
14690
  }
14435
14691
  /**
14436
- * ##
14437
14692
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
14438
14693
  * * **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
14694
  * * **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.
14695
+ * * **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
14696
  * 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.
14697
+ * * **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
14698
  * * 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
14699
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
14445
14700
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -14525,13 +14780,12 @@ class Client extends openapi_client_1.default {
14525
14780
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBandwidthPackageResponse({}));
14526
14781
  }
14527
14782
  /**
14528
- * ##
14529
14783
  * To use Global Accelerator (GA) for acceleration, you must purchase a basic bandwidth plan. A basic bandwidth plan supports the following bandwidth types:
14530
14784
  * * **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
14785
  * * **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.
14786
+ * * **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
14787
  * 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.
14788
+ * * **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
14789
  * * 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
14790
  * * If the bandwidth plan is in the **active** state, it indicates that the bandwidth plan is created.
14537
14791
  * * The **CreateBandwidthPackage** operation cannot be repeatedly called for the same GA instance within a specific period of time.
@@ -14709,10 +14963,9 @@ class Client extends openapi_client_1.default {
14709
14963
  return await this.createBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
14710
14964
  }
14711
14965
  /**
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~~).
14966
+ * 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
14967
  * **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.
14968
+ * * 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
14969
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
14717
14970
  *
14718
14971
  * @param request CreateBasicAcceleratorRequest
@@ -14781,10 +15034,9 @@ class Client extends openapi_client_1.default {
14781
15034
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicAcceleratorResponse({}));
14782
15035
  }
14783
15036
  /**
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~~).
15037
+ * 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
15038
  * **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.
15039
+ * * 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
15040
  * * If the basic GA instance is in the **active** state, it indicates that the basic GA instance is created.
14789
15041
  *
14790
15042
  * @param request CreateBasicAcceleratorRequest
@@ -14867,11 +15119,10 @@ class Client extends openapi_client_1.default {
14867
15119
  return await this.createBasicEndpointWithOptions(request, runtime);
14868
15120
  }
14869
15121
  /**
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.
15122
+ * * **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
15123
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
14873
15124
  * * 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.
15125
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
14875
15126
  *
14876
15127
  * @param request CreateBasicEndpointGroupRequest
14877
15128
  * @param runtime runtime options for this request RuntimeOptions
@@ -14924,11 +15175,10 @@ class Client extends openapi_client_1.default {
14924
15175
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicEndpointGroupResponse({}));
14925
15176
  }
14926
15177
  /**
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.
15178
+ * * **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
15179
  * * If the endpoint group is in the **init** state, the endpoint is being created. In this case, you can perform only query operations.
14930
15180
  * * 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.
15181
+ * * You cannot call the **CreateBasicEndpointGroup** operation again on the same GA instance before the previous request is completed.
14932
15182
  *
14933
15183
  * @param request CreateBasicEndpointGroupRequest
14934
15184
  * @return CreateBasicEndpointGroupResponse
@@ -14938,9 +15188,8 @@ class Client extends openapi_client_1.default {
14938
15188
  return await this.createBasicEndpointGroupWithOptions(request, runtime);
14939
15189
  }
14940
15190
  /**
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.
15191
+ * * **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.
15192
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
14944
15193
  *
14945
15194
  * @param request CreateBasicEndpointsRequest
14946
15195
  * @param runtime runtime options for this request RuntimeOptions
@@ -14981,9 +15230,8 @@ class Client extends openapi_client_1.default {
14981
15230
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicEndpointsResponse({}));
14982
15231
  }
14983
15232
  /**
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.
15233
+ * * **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.
15234
+ * * You cannot call the **CreateBasicEndpoints** operation again on the same GA instance before the previous operation is complete.
14987
15235
  *
14988
15236
  * @param request CreateBasicEndpointsRequest
14989
15237
  * @return CreateBasicEndpointsResponse
@@ -14993,12 +15241,12 @@ class Client extends openapi_client_1.default {
14993
15241
  return await this.createBasicEndpointsWithOptions(request, runtime);
14994
15242
  }
14995
15243
  /**
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.
15244
+ * Take note of the following limits:
15245
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
15246
+ * * **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
15247
  * * 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
15248
  * * 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.
15249
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
15002
15250
  *
15003
15251
  * @param request CreateBasicIpSetRequest
15004
15252
  * @param runtime runtime options for this request RuntimeOptions
@@ -15042,12 +15290,12 @@ class Client extends openapi_client_1.default {
15042
15290
  return $tea.cast(await this.callApi(params, req, runtime), new CreateBasicIpSetResponse({}));
15043
15291
  }
15044
15292
  /**
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.
15293
+ * Take note of the following limits:
15294
+ * * You can specify only one acceleration region for each basic GA instance, and only IPv4 clients can connect to basic GA instances.
15295
+ * * **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
15296
  * * 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
15297
  * * 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.
15298
+ * * You cannot call the **CreateBasicIpSet** operation again on the same GA instance before the previous task is completed.
15051
15299
  *
15052
15300
  * @param request CreateBasicIpSetRequest
15053
15301
  * @return CreateBasicIpSetResponse
@@ -15057,19 +15305,7 @@ class Client extends openapi_client_1.default {
15057
15305
  return await this.createBasicIpSetWithOptions(request, runtime);
15058
15306
  }
15059
15307
  /**
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~~).
15308
+ * readAndWrite
15073
15309
  *
15074
15310
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
15075
15311
  * @param runtime runtime options for this request RuntimeOptions
@@ -15110,19 +15346,7 @@ class Client extends openapi_client_1.default {
15110
15346
  return $tea.cast(await this.callApi(params, req, runtime), new CreateCustomRoutingEndpointGroupDestinationsResponse({}));
15111
15347
  }
15112
15348
  /**
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~~).
15349
+ * readAndWrite
15126
15350
  *
15127
15351
  * @param request CreateCustomRoutingEndpointGroupDestinationsRequest
15128
15352
  * @return CreateCustomRoutingEndpointGroupDestinationsResponse
@@ -15288,19 +15512,7 @@ class Client extends openapi_client_1.default {
15288
15512
  return await this.createCustomRoutingEndpointTrafficPoliciesWithOptions(request, runtime);
15289
15513
  }
15290
15514
  /**
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~~).
15515
+ * readAndWrite
15304
15516
  *
15305
15517
  * @param request CreateCustomRoutingEndpointsRequest
15306
15518
  * @param runtime runtime options for this request RuntimeOptions
@@ -15338,19 +15550,7 @@ class Client extends openapi_client_1.default {
15338
15550
  return $tea.cast(await this.callApi(params, req, runtime), new CreateCustomRoutingEndpointsResponse({}));
15339
15551
  }
15340
15552
  /**
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~~).
15553
+ * readAndWrite
15354
15554
  *
15355
15555
  * @param request CreateCustomRoutingEndpointsRequest
15356
15556
  * @return CreateCustomRoutingEndpointsResponse
@@ -15633,11 +15833,10 @@ class Client extends openapi_client_1.default {
15633
15833
  return await this.createForwardingRulesWithOptions(request, runtime);
15634
15834
  }
15635
15835
  /**
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.
15836
+ * * **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
15837
  * * 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
15838
  * * 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.
15839
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
15641
15840
  *
15642
15841
  * @param request CreateIpSetsRequest
15643
15842
  * @param runtime runtime options for this request RuntimeOptions
@@ -15675,11 +15874,10 @@ class Client extends openapi_client_1.default {
15675
15874
  return $tea.cast(await this.callApi(params, req, runtime), new CreateIpSetsResponse({}));
15676
15875
  }
15677
15876
  /**
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.
15877
+ * * **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
15878
  * * 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
15879
  * * 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.
15880
+ * * You cannot call the **CreateIpSets** operation again on the same GA instance before the previous operation is completed.
15683
15881
  *
15684
15882
  * @param request CreateIpSetsRequest
15685
15883
  * @return CreateIpSetsResponse
@@ -15838,9 +16036,9 @@ class Client extends openapi_client_1.default {
15838
16036
  }
15839
16037
  /**
15840
16038
  * * 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.
16039
+ * * 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~~).
16040
+ * * **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.
16041
+ * * 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
16042
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
15845
16043
  *
15846
16044
  * @param request DeleteAcceleratorRequest
@@ -15874,9 +16072,9 @@ class Client extends openapi_client_1.default {
15874
16072
  }
15875
16073
  /**
15876
16074
  * * 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.
16075
+ * * 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~~).
16076
+ * * **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.
16077
+ * * 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
16078
  * * If the GA instance cannot be queried, it indicates that the GA instance is deleted.
15881
16079
  *
15882
16080
  * @param request DeleteAcceleratorRequest
@@ -15994,7 +16192,7 @@ class Client extends openapi_client_1.default {
15994
16192
  /**
15995
16193
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
15996
16194
  * * 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.
16195
+ * * **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
16196
  * * 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
16197
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
16000
16198
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -16034,7 +16232,7 @@ class Client extends openapi_client_1.default {
16034
16232
  /**
16035
16233
  * * By default, subscription bandwidth plans cannot be deleted. If you want to delete subscription bandwidth plans, contact your account manager.
16036
16234
  * * 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.
16235
+ * * **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
16236
  * * 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
16237
  * * If the bandwidth plan cannot be found, it indicates that the bandwidth plan is deleted.
16040
16238
  * * The **DeleteBandwidthPackage** operation cannot be called repeatedly for the same bandwidth plan within a specific period of time.
@@ -16303,10 +16501,10 @@ class Client extends openapi_client_1.default {
16303
16501
  return await this.deleteBasicEndpointGroupWithOptions(request, runtime);
16304
16502
  }
16305
16503
  /**
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.
16504
+ * * \\*\\*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
16505
  * * 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
16506
  * * 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.
16507
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
16310
16508
  *
16311
16509
  * @param request DeleteBasicIpSetRequest
16312
16510
  * @param runtime runtime options for this request RuntimeOptions
@@ -16341,10 +16539,10 @@ class Client extends openapi_client_1.default {
16341
16539
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteBasicIpSetResponse({}));
16342
16540
  }
16343
16541
  /**
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.
16542
+ * * \\*\\*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
16543
  * * 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
16544
  * * 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.
16545
+ * * The \\*\\*DeleteBasicIpSet\\*\\* operation cannot be called repeatedly for the same basic GA instance within a specific period of time.
16348
16546
  *
16349
16547
  * @param request DeleteBasicIpSetRequest
16350
16548
  * @return DeleteBasicIpSetResponse
@@ -16354,11 +16552,10 @@ class Client extends openapi_client_1.default {
16354
16552
  return await this.deleteBasicIpSetWithOptions(request, runtime);
16355
16553
  }
16356
16554
  /**
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.
16555
+ * * **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
16556
  * * 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.
16557
+ * * 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.
16558
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
16362
16559
  *
16363
16560
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
16364
16561
  * @param runtime runtime options for this request RuntimeOptions
@@ -16399,11 +16596,10 @@ class Client extends openapi_client_1.default {
16399
16596
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteCustomRoutingEndpointGroupDestinationsResponse({}));
16400
16597
  }
16401
16598
  /**
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.
16599
+ * * **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
16600
  * * 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.
16601
+ * * 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.
16602
+ * * You cannot call the **DeleteCustomRoutingEndpointGroupDestinations** operation again on the same Global Accelerator (GA) instance before the previous request is completed.
16407
16603
  *
16408
16604
  * @param request DeleteCustomRoutingEndpointGroupDestinationsRequest
16409
16605
  * @return DeleteCustomRoutingEndpointGroupDestinationsResponse
@@ -16524,11 +16720,10 @@ class Client extends openapi_client_1.default {
16524
16720
  return await this.deleteCustomRoutingEndpointTrafficPoliciesWithOptions(request, runtime);
16525
16721
  }
16526
16722
  /**
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.
16723
+ * * **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.
16724
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
16725
+ * * 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.
16726
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
16532
16727
  *
16533
16728
  * @param request DeleteCustomRoutingEndpointsRequest
16534
16729
  * @param runtime runtime options for this request RuntimeOptions
@@ -16566,11 +16761,10 @@ class Client extends openapi_client_1.default {
16566
16761
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteCustomRoutingEndpointsResponse({}));
16567
16762
  }
16568
16763
  /**
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.
16764
+ * * **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.
16765
+ * * If an endpoint group is in the **updating** state, the endpoint is being deleted. In this case, you can perform only query operations.
16766
+ * * 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.
16767
+ * * You cannot call the **DeleteCustomRoutingEndpoints** operation again on the same Global Accelerator (GA) instance before the previous task is completed.
16574
16768
  *
16575
16769
  * @param request DeleteCustomRoutingEndpointsRequest
16576
16770
  * @return DeleteCustomRoutingEndpointsResponse
@@ -16676,9 +16870,9 @@ class Client extends openapi_client_1.default {
16676
16870
  return await this.deleteEndpointGroupWithOptions(request, runtime);
16677
16871
  }
16678
16872
  /**
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.
16873
+ * * **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.
16874
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
16875
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
16682
16876
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16683
16877
  *
16684
16878
  * @param request DeleteEndpointGroupsRequest
@@ -16717,9 +16911,9 @@ class Client extends openapi_client_1.default {
16717
16911
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteEndpointGroupsResponse({}));
16718
16912
  }
16719
16913
  /**
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.
16914
+ * * **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.
16915
+ * * If an endpoint group is in the **deleting** state, the endpoint group is being deleted. In this case, you can perform only query operations.
16916
+ * * If an endpoint group cannot be queried, the endpoint group is deleted.
16723
16917
  * * The **DeleteEndpointGroups** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16724
16918
  *
16725
16919
  * @param request DeleteEndpointGroupsRequest
@@ -16730,9 +16924,9 @@ class Client extends openapi_client_1.default {
16730
16924
  return await this.deleteEndpointGroupsWithOptions(request, runtime);
16731
16925
  }
16732
16926
  /**
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.
16927
+ * * **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.
16928
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16929
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
16736
16930
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16737
16931
  *
16738
16932
  * @param request DeleteForwardingRulesRequest
@@ -16774,9 +16968,9 @@ class Client extends openapi_client_1.default {
16774
16968
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteForwardingRulesResponse({}));
16775
16969
  }
16776
16970
  /**
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.
16971
+ * * **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.
16972
+ * * If a forwarding rule is in the **deleting** state, the forwarding rule is being deleted. In this case, you can perform only query operations.
16973
+ * * If a forwarding rule cannot be queried, the forwarding rule is deleted.
16780
16974
  * * The **DeleteForwardingRules** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
16781
16975
  *
16782
16976
  * @param request DeleteForwardingRulesRequest
@@ -16889,8 +17083,8 @@ class Client extends openapi_client_1.default {
16889
17083
  return await this.deleteIpSetsWithOptions(request, runtime);
16890
17084
  }
16891
17085
  /**
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.
17086
+ * * **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.
17087
+ * * 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
17088
  * * If the listener cannot be queried, it indicates that the listener is deleted.
16895
17089
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
16896
17090
  *
@@ -16927,8 +17121,8 @@ class Client extends openapi_client_1.default {
16927
17121
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteListenerResponse({}));
16928
17122
  }
16929
17123
  /**
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.
17124
+ * * **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.
17125
+ * * 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
17126
  * * If the listener cannot be queried, it indicates that the listener is deleted.
16933
17127
  * * The **DeleteListener** operation cannot be repeatedly called to delete listeners for the same Global Accelerator (GA) instance within a specific period of time.
16934
17128
  *
@@ -17054,6 +17248,32 @@ class Client extends openapi_client_1.default {
17054
17248
  let runtime = new $Util.RuntimeOptions({});
17055
17249
  return await this.describeAcceleratorAutoRenewAttributeWithOptions(request, runtime);
17056
17250
  }
17251
+ async describeAcceleratorServiceStatusWithOptions(request, runtime) {
17252
+ tea_util_1.default.validateModel(request);
17253
+ let query = {};
17254
+ if (!tea_util_1.default.isUnset(request.regionId)) {
17255
+ query["RegionId"] = request.regionId;
17256
+ }
17257
+ let req = new $OpenApi.OpenApiRequest({
17258
+ query: openapi_util_1.default.query(query),
17259
+ });
17260
+ let params = new $OpenApi.Params({
17261
+ action: "DescribeAcceleratorServiceStatus",
17262
+ version: "2019-11-20",
17263
+ protocol: "HTTPS",
17264
+ pathname: "/",
17265
+ method: "POST",
17266
+ authType: "AK",
17267
+ style: "RPC",
17268
+ reqBodyType: "formData",
17269
+ bodyType: "json",
17270
+ });
17271
+ return $tea.cast(await this.callApi(params, req, runtime), new DescribeAcceleratorServiceStatusResponse({}));
17272
+ }
17273
+ async describeAcceleratorServiceStatus(request) {
17274
+ let runtime = new $Util.RuntimeOptions({});
17275
+ return await this.describeAcceleratorServiceStatusWithOptions(request, runtime);
17276
+ }
17057
17277
  async describeApplicationMonitorWithOptions(request, runtime) {
17058
17278
  tea_util_1.default.validateModel(request);
17059
17279
  let query = {};
@@ -19055,6 +19275,35 @@ class Client extends openapi_client_1.default {
19055
19275
  let runtime = new $Util.RuntimeOptions({});
19056
19276
  return await this.listDomainsWithOptions(request, runtime);
19057
19277
  }
19278
+ async listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime) {
19279
+ tea_util_1.default.validateModel(request);
19280
+ let query = {};
19281
+ if (!tea_util_1.default.isUnset(request.endpointGroupRegion)) {
19282
+ query["EndpointGroupRegion"] = request.endpointGroupRegion;
19283
+ }
19284
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19285
+ query["RegionId"] = request.regionId;
19286
+ }
19287
+ let req = new $OpenApi.OpenApiRequest({
19288
+ query: openapi_util_1.default.query(query),
19289
+ });
19290
+ let params = new $OpenApi.Params({
19291
+ action: "ListEndpointGroupIpAddressCidrBlocks",
19292
+ version: "2019-11-20",
19293
+ protocol: "HTTPS",
19294
+ pathname: "/",
19295
+ method: "POST",
19296
+ authType: "AK",
19297
+ style: "RPC",
19298
+ reqBodyType: "formData",
19299
+ bodyType: "json",
19300
+ });
19301
+ return $tea.cast(await this.callApi(params, req, runtime), new ListEndpointGroupIpAddressCidrBlocksResponse({}));
19302
+ }
19303
+ async listEndpointGroupIpAddressCidrBlocks(request) {
19304
+ let runtime = new $Util.RuntimeOptions({});
19305
+ return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
19306
+ }
19058
19307
  async listEndpointGroupsWithOptions(request, runtime) {
19059
19308
  tea_util_1.default.validateModel(request);
19060
19309
  let query = {};
@@ -19458,11 +19707,63 @@ class Client extends openapi_client_1.default {
19458
19707
  let runtime = new $Util.RuntimeOptions({});
19459
19708
  return await this.listTagResourcesWithOptions(request, runtime);
19460
19709
  }
19710
+ async openAcceleratorServiceWithOptions(request, runtime) {
19711
+ tea_util_1.default.validateModel(request);
19712
+ let query = {};
19713
+ if (!tea_util_1.default.isUnset(request.clientToken)) {
19714
+ query["ClientToken"] = request.clientToken;
19715
+ }
19716
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19717
+ query["RegionId"] = request.regionId;
19718
+ }
19719
+ let req = new $OpenApi.OpenApiRequest({
19720
+ query: openapi_util_1.default.query(query),
19721
+ });
19722
+ let params = new $OpenApi.Params({
19723
+ action: "OpenAcceleratorService",
19724
+ version: "2019-11-20",
19725
+ protocol: "HTTPS",
19726
+ pathname: "/",
19727
+ method: "POST",
19728
+ authType: "AK",
19729
+ style: "RPC",
19730
+ reqBodyType: "formData",
19731
+ bodyType: "json",
19732
+ });
19733
+ return $tea.cast(await this.callApi(params, req, runtime), new OpenAcceleratorServiceResponse({}));
19734
+ }
19735
+ async openAcceleratorService(request) {
19736
+ let runtime = new $Util.RuntimeOptions({});
19737
+ return await this.openAcceleratorServiceWithOptions(request, runtime);
19738
+ }
19739
+ async queryCrossBorderApprovalStatusWithOptions(request, runtime) {
19740
+ tea_util_1.default.validateModel(request);
19741
+ let query = {};
19742
+ if (!tea_util_1.default.isUnset(request.regionId)) {
19743
+ query["RegionId"] = request.regionId;
19744
+ }
19745
+ let req = new $OpenApi.OpenApiRequest({
19746
+ query: openapi_util_1.default.query(query),
19747
+ });
19748
+ let params = new $OpenApi.Params({
19749
+ action: "QueryCrossBorderApprovalStatus",
19750
+ version: "2019-11-20",
19751
+ protocol: "HTTPS",
19752
+ pathname: "/",
19753
+ method: "POST",
19754
+ authType: "AK",
19755
+ style: "RPC",
19756
+ reqBodyType: "formData",
19757
+ bodyType: "json",
19758
+ });
19759
+ return $tea.cast(await this.callApi(params, req, runtime), new QueryCrossBorderApprovalStatusResponse({}));
19760
+ }
19761
+ async queryCrossBorderApprovalStatus(request) {
19762
+ let runtime = new $Util.RuntimeOptions({});
19763
+ return await this.queryCrossBorderApprovalStatusWithOptions(request, runtime);
19764
+ }
19461
19765
  /**
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.
19766
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
19466
19767
  *
19467
19768
  * @param request RemoveEntriesFromAclRequest
19468
19769
  * @param runtime runtime options for this request RuntimeOptions
@@ -19503,10 +19804,7 @@ class Client extends openapi_client_1.default {
19503
19804
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveEntriesFromAclResponse({}));
19504
19805
  }
19505
19806
  /**
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.
19807
+ * The operation that you want to perform. Set the value to **RemoveEntriesFromAcl**.
19510
19808
  *
19511
19809
  * @param request RemoveEntriesFromAclRequest
19512
19810
  * @return RemoveEntriesFromAclResponse
@@ -19791,8 +20089,8 @@ class Client extends openapi_client_1.default {
19791
20089
  return await this.updateAcceleratorAutoRenewAttributeWithOptions(request, runtime);
19792
20090
  }
19793
20091
  /**
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.
20092
+ * 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:
20093
+ * * **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
20094
  * * 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
20095
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
19798
20096
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -19827,8 +20125,8 @@ class Client extends openapi_client_1.default {
19827
20125
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateAcceleratorConfirmResponse({}));
19828
20126
  }
19829
20127
  /**
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.
20128
+ * 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:
20129
+ * * **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
20130
  * * 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
20131
  * * If the GA instance is in the **active** state, it indicates that the specification of the instance is modified.
19834
20132
  * * The **UpdateAcceleratorConfirm** operation cannot be called repeatedly for the same GA instance within a specific period of time.
@@ -19840,6 +20138,16 @@ class Client extends openapi_client_1.default {
19840
20138
  let runtime = new $Util.RuntimeOptions({});
19841
20139
  return await this.updateAcceleratorConfirmWithOptions(request, runtime);
19842
20140
  }
20141
+ /**
20142
+ * ### Prerequisites
20143
+ * 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:
20144
+ * * 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.
20145
+ * * 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~~).
20146
+ *
20147
+ * @param request UpdateAcceleratorCrossBorderModeRequest
20148
+ * @param runtime runtime options for this request RuntimeOptions
20149
+ * @return UpdateAcceleratorCrossBorderModeResponse
20150
+ */
19843
20151
  async updateAcceleratorCrossBorderModeWithOptions(request, runtime) {
19844
20152
  tea_util_1.default.validateModel(request);
19845
20153
  let query = {};
@@ -19871,6 +20179,15 @@ class Client extends openapi_client_1.default {
19871
20179
  });
19872
20180
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderModeResponse({}));
19873
20181
  }
20182
+ /**
20183
+ * ### Prerequisites
20184
+ * 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:
20185
+ * * 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.
20186
+ * * 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~~).
20187
+ *
20188
+ * @param request UpdateAcceleratorCrossBorderModeRequest
20189
+ * @return UpdateAcceleratorCrossBorderModeResponse
20190
+ */
19874
20191
  async updateAcceleratorCrossBorderMode(request) {
19875
20192
  let runtime = new $Util.RuntimeOptions({});
19876
20193
  return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
@@ -20109,15 +20426,15 @@ class Client extends openapi_client_1.default {
20109
20426
  return await this.updateBandwidthPackagaAutoRenewAttributeWithOptions(request, runtime);
20110
20427
  }
20111
20428
  /**
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.
20429
+ * Take note of the following items:
20430
+ * * **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.
20431
+ * * **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.
20432
+ * * 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.
20433
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
20434
+ * * **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.
20435
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
20436
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
20437
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
20121
20438
  *
20122
20439
  * @param request UpdateBandwidthPackageRequest
20123
20440
  * @param runtime runtime options for this request RuntimeOptions
@@ -20167,15 +20484,15 @@ class Client extends openapi_client_1.default {
20167
20484
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateBandwidthPackageResponse({}));
20168
20485
  }
20169
20486
  /**
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.
20487
+ * Take note of the following items:
20488
+ * * **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.
20489
+ * * **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.
20490
+ * * 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.
20491
+ * * If the parameter values of the bandwidth plan are changed, the bandwidth plan is modified.
20492
+ * * **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.
20493
+ * * If the GA instance is in the **configuring** state, the bandwidth plan is being modified. In this case, you can perform only query operations.
20494
+ * * If the GA instance is in the **active** state, the bandwidth plan is modified.
20495
+ * * You cannot repeatedly call the **UpdateBandwidthPackage** operation for the same bandwidth plan within a specific period of time.
20179
20496
  *
20180
20497
  * @param request UpdateBandwidthPackageRequest
20181
20498
  * @return UpdateBandwidthPackageResponse
@@ -20480,9 +20797,9 @@ class Client extends openapi_client_1.default {
20480
20797
  return await this.updateCustomRoutingEndpointGroupDestinationsWithOptions(request, runtime);
20481
20798
  }
20482
20799
  /**
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.
20800
+ * * **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.
20801
+ * * 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.
20802
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
20486
20803
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20487
20804
  *
20488
20805
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -20521,9 +20838,9 @@ class Client extends openapi_client_1.default {
20521
20838
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateCustomRoutingEndpointTrafficPoliciesResponse({}));
20522
20839
  }
20523
20840
  /**
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.
20841
+ * * **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.
20842
+ * * 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.
20843
+ * * If the endpoint group is in the **active** state, traffic policies are modified for endpoints in the endpoint group.
20527
20844
  * * The **UpdateCustomRoutingEndpointTrafficPolicies** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
20528
20845
  *
20529
20846
  * @param request UpdateCustomRoutingEndpointTrafficPoliciesRequest
@@ -20588,9 +20905,8 @@ class Client extends openapi_client_1.default {
20588
20905
  return await this.updateCustomRoutingEndpointsWithOptions(request, runtime);
20589
20906
  }
20590
20907
  /**
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.
20908
+ * 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.
20909
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
20594
20910
  *
20595
20911
  * @param request UpdateDomainRequest
20596
20912
  * @param runtime runtime options for this request RuntimeOptions
@@ -20625,9 +20941,8 @@ class Client extends openapi_client_1.default {
20625
20941
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateDomainResponse({}));
20626
20942
  }
20627
20943
  /**
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.
20944
+ * 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.
20945
+ * You cannot call the **UpdateDomain** operation again by using the same Alibaba Cloud account before the previous request is completed.
20631
20946
  *
20632
20947
  * @param request UpdateDomainRequest
20633
20948
  * @return UpdateDomainResponse
@@ -20637,8 +20952,8 @@ class Client extends openapi_client_1.default {
20637
20952
  return await this.updateDomainWithOptions(request, runtime);
20638
20953
  }
20639
20954
  /**
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.
20955
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
20956
+ * 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
20957
  *
20643
20958
  * @param request UpdateDomainStateRequest
20644
20959
  * @param runtime runtime options for this request RuntimeOptions
@@ -20670,8 +20985,8 @@ class Client extends openapi_client_1.default {
20670
20985
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateDomainStateResponse({}));
20671
20986
  }
20672
20987
  /**
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.
20988
+ * You can call this operation to query and update the ICP filing status of an accelerated domain name.
20989
+ * 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
20990
  *
20676
20991
  * @param request UpdateDomainStateRequest
20677
20992
  * @return UpdateDomainStateResponse
@@ -20923,11 +21238,10 @@ class Client extends openapi_client_1.default {
20923
21238
  return await this.updateForwardingRulesWithOptions(request, runtime);
20924
21239
  }
20925
21240
  /**
20926
- * ## Usage notes
20927
21241
  * * **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.
21242
+ * * 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.
21243
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
21244
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
20931
21245
  *
20932
21246
  * @param request UpdateIpSetRequest
20933
21247
  * @param runtime runtime options for this request RuntimeOptions
@@ -20965,11 +21279,10 @@ class Client extends openapi_client_1.default {
20965
21279
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateIpSetResponse({}));
20966
21280
  }
20967
21281
  /**
20968
- * ## Usage notes
20969
21282
  * * **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.
21283
+ * * 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.
21284
+ * * If the acceleration region is in the **active** state, it indicates that the acceleration region is modified.
21285
+ * * You cannot call the **UpdateIpSet** operation again on the same GA instance before the previous operation is complete.
20973
21286
  *
20974
21287
  * @param request UpdateIpSetRequest
20975
21288
  * @return UpdateIpSetResponse
@@ -20979,10 +21292,10 @@ class Client extends openapi_client_1.default {
20979
21292
  return await this.updateIpSetWithOptions(request, runtime);
20980
21293
  }
20981
21294
  /**
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.
21295
+ * * **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.
21296
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
21297
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
21298
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
20986
21299
  *
20987
21300
  * @param request UpdateIpSetsRequest
20988
21301
  * @param runtime runtime options for this request RuntimeOptions
@@ -21014,10 +21327,10 @@ class Client extends openapi_client_1.default {
21014
21327
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateIpSetsResponse({}));
21015
21328
  }
21016
21329
  /**
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.
21330
+ * * **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.
21331
+ * * If an acceleration region is in the **updating** state, the acceleration region is being modified. In this case, you can perform only query operations.
21332
+ * * If an acceleration region is in the **active** state, the acceleration region is modified.
21333
+ * * You cannot repeatedly call the **UpdateIpSet** operation for the same GA instance within a specific period of time.
21021
21334
  *
21022
21335
  * @param request UpdateIpSetsRequest
21023
21336
  * @return UpdateIpSetsResponse
@@ -21027,9 +21340,9 @@ class Client extends openapi_client_1.default {
21027
21340
  return await this.updateIpSetsWithOptions(request, runtime);
21028
21341
  }
21029
21342
  /**
21030
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
21343
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
21031
21344
  * 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.
21345
+ * * **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
21346
  * * 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
21347
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
21035
21348
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.
@@ -21097,9 +21410,9 @@ class Client extends openapi_client_1.default {
21097
21410
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateListenerResponse({}));
21098
21411
  }
21099
21412
  /**
21100
- * This operation can be called to modify the configurations such as protocol and ports of a listener to meet your business requirements.
21413
+ * This operation can be called to modify the configurations such as the protocol and ports of a listener to meet your business requirements.
21101
21414
  * 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.
21415
+ * * **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
21416
  * * 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
21417
  * * If the listener is in the **active** state, it indicates that its configurations are modified.
21105
21418
  * * The **UpdateListener** operation cannot be repeatedly called to modify listener configurations for the same GA instance within a specific period of time.