@alicloud/ga20191120 1.0.19 → 1.0.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ga20191120",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -1399,6 +1399,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1399
1399
  promotionOptionNo?: string;
1400
1400
  regionId?: string;
1401
1401
  resourceGroupId?: string;
1402
+ tag?: CreateBasicAcceleratorRequestTag[];
1402
1403
  static names(): { [key: string]: string } {
1403
1404
  return {
1404
1405
  autoPay: 'AutoPay',
@@ -1414,6 +1415,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1414
1415
  promotionOptionNo: 'PromotionOptionNo',
1415
1416
  regionId: 'RegionId',
1416
1417
  resourceGroupId: 'ResourceGroupId',
1418
+ tag: 'Tag',
1417
1419
  };
1418
1420
  }
1419
1421
 
@@ -1432,6 +1434,7 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
1432
1434
  promotionOptionNo: 'string',
1433
1435
  regionId: 'string',
1434
1436
  resourceGroupId: 'string',
1437
+ tag: { 'type': 'array', 'itemType': CreateBasicAcceleratorRequestTag },
1435
1438
  };
1436
1439
  }
1437
1440
 
@@ -12613,6 +12616,28 @@ export class CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpoint
12613
12616
  }
12614
12617
  }
12615
12618
 
12619
+ export class CreateBasicAcceleratorRequestTag extends $tea.Model {
12620
+ key?: string;
12621
+ value?: string;
12622
+ static names(): { [key: string]: string } {
12623
+ return {
12624
+ key: 'Key',
12625
+ value: 'Value',
12626
+ };
12627
+ }
12628
+
12629
+ static types(): { [key: string]: any } {
12630
+ return {
12631
+ key: 'string',
12632
+ value: 'string',
12633
+ };
12634
+ }
12635
+
12636
+ constructor(map?: { [key: string]: any }) {
12637
+ super(map);
12638
+ }
12639
+ }
12640
+
12616
12641
  export class CreateBasicEndpointsRequestEndpoints extends $tea.Model {
12617
12642
  endpointAddress?: string;
12618
12643
  endpointSubAddress?: string;
@@ -17804,8 +17829,7 @@ export default class Client extends OpenApi {
17804
17829
  }
17805
17830
 
17806
17831
  /**
17807
- * ## Usage notes
17808
- * The **ChangeResourceGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
17832
+ * You cannot call the **ChangeResourceGroup** operation again on the same GA instance before the previous operation is complete.
17809
17833
  *
17810
17834
  * @param request ChangeResourceGroupRequest
17811
17835
  * @param runtime runtime options for this request RuntimeOptions
@@ -17852,8 +17876,7 @@ export default class Client extends OpenApi {
17852
17876
  }
17853
17877
 
17854
17878
  /**
17855
- * ## Usage notes
17856
- * The **ChangeResourceGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
17879
+ * You cannot call the **ChangeResourceGroup** operation again on the same GA instance before the previous operation is complete.
17857
17880
  *
17858
17881
  * @param request ChangeResourceGroupRequest
17859
17882
  * @return ChangeResourceGroupResponse
@@ -17940,8 +17963,8 @@ export default class Client extends OpenApi {
17940
17963
  }
17941
17964
 
17942
17965
  /**
17943
- * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns the ID of a GA instance, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
17944
- * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can perform only query operations.
17966
+ * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
17967
+ * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
17945
17968
  * * If the GA instance is in the **active** state, it indicates that the GA instance is created.
17946
17969
  *
17947
17970
  * @param request CreateAcceleratorRequest
@@ -18029,8 +18052,8 @@ export default class Client extends OpenApi {
18029
18052
  }
18030
18053
 
18031
18054
  /**
18032
- * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns the ID of a GA instance, but the operation is still being performed in the system background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
18033
- * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can perform only query operations.
18055
+ * **CreateAccelerator** is an asynchronous operation. After you send a request, the system returns a request ID and runs the task in the background. You can call the [DescribeAccelerator](~~153235~~) operation to query the status of a GA instance.
18056
+ * * If the GA instance is in the **init** state, it indicates that the GA instance is being created. In this case, you can continue to perform query operations on the GA instance.
18034
18057
  * * If the GA instance is in the **active** state, it indicates that the GA instance is created.
18035
18058
  *
18036
18059
  * @param request CreateAcceleratorRequest
@@ -18589,6 +18612,10 @@ export default class Client extends OpenApi {
18589
18612
  query["ResourceGroupId"] = request.resourceGroupId;
18590
18613
  }
18591
18614
 
18615
+ if (!Util.isUnset(request.tag)) {
18616
+ query["Tag"] = request.tag;
18617
+ }
18618
+
18592
18619
  let req = new $OpenApi.OpenApiRequest({
18593
18620
  query: OpenApiUtil.query(query),
18594
18621
  });
@@ -24457,11 +24484,11 @@ export default class Client extends OpenApi {
24457
24484
  }
24458
24485
 
24459
24486
  /**
24460
- * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can call this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24461
- * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24462
- * * If the certificate that you want to replace is in the **updating** state, it indicates that the additional certificate is being replaced for the HTTP listener. In this case, you can perform only query operations.
24487
+ * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can use this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24488
+ * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24489
+ * * If the certificate that you want to replace is in the **updating** state, it is being replaced for the HTTP listener. In this case, you can perform only query operations.
24463
24490
  * * If the replacement certificate is in the **active** state, it indicates that the replacement operation is complete and the replacement certificate is associated with the HTTP listener.
24464
- * * The **UpdateAdditionalCertificateWithListener** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
24491
+ * * You cannot perform the **UpdateAdditionalCertificateWithListener** operation again on the same Global Accelerator (GA) instance before the previous operation is complete.
24465
24492
  *
24466
24493
  * @param request UpdateAdditionalCertificateWithListenerRequest
24467
24494
  * @param runtime runtime options for this request RuntimeOptions
@@ -24516,11 +24543,11 @@ export default class Client extends OpenApi {
24516
24543
  }
24517
24544
 
24518
24545
  /**
24519
- * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can call this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24520
- * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24521
- * * If the certificate that you want to replace is in the **updating** state, it indicates that the additional certificate is being replaced for the HTTP listener. In this case, you can perform only query operations.
24546
+ * The UpdateAdditionalCertificateWithListener operation is used to replace an additional certificate. You can use this operation when you want to replace an expired additional certificate with a new additional certificate without changing the associated domain name.
24547
+ * * **UpdateAdditionalCertificateWithListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can use the [ListListenerCertificates](~~307743~~) operation to query the state of the additional certificate that is associated with an HTTP listener:
24548
+ * * If the certificate that you want to replace is in the **updating** state, it is being replaced for the HTTP listener. In this case, you can perform only query operations.
24522
24549
  * * If the replacement certificate is in the **active** state, it indicates that the replacement operation is complete and the replacement certificate is associated with the HTTP listener.
24523
- * * The **UpdateAdditionalCertificateWithListener** operation cannot be called repeatedly for the same Global Accelerator (GA) instance within a specific period of time.
24550
+ * * You cannot perform the **UpdateAdditionalCertificateWithListener** operation again on the same Global Accelerator (GA) instance before the previous operation is complete.
24524
24551
  *
24525
24552
  * @param request UpdateAdditionalCertificateWithListenerRequest
24526
24553
  * @return UpdateAdditionalCertificateWithListenerResponse