tencentcloud-sdk-nodejs-intl-en 3.0.1266 → 3.0.1267
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 +1 -1
- package/tencentcloud/clb/v20180317/clb_client.js +1 -1
- package/tencentcloud/clb/v20180317/models.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/monitor/v20180724/models.js +1054 -237
- package/tencentcloud/monitor/v20180724/monitor_client.js +92 -20
- package/tencentcloud/quota/v20241204/models.js +8 -1
- package/tencentcloud/redis/v20180412/models.js +199 -84
- package/tencentcloud/redis/v20180412/redis_client.js +4 -4
package/package.json
CHANGED
|
@@ -609,7 +609,7 @@ Limits
|
|
|
609
609
|
|
|
610
610
|
/**
|
|
611
611
|
* This API is used to delete one or more specified CLB instances. After successful deletion, the listeners and forwarding rules under the CLB instance will be deleted together, and the backend service will be unbound.
|
|
612
|
-
This API is asynchronous. After it returns the result successfully, you can call the [DescribeTaskStatus](https://www.tencentcloud.
|
|
612
|
+
This API is asynchronous. After it returns the result successfully, you can call the [DescribeTaskStatus](https://www.tencentcloud.com/document/product/214/30683?from_cn_redirect=1) API with the returned RequestId as an input parameter to query whether the task is successful.
|
|
613
613
|
* @param {DeleteLoadBalancerRequest} req
|
|
614
614
|
* @param {function(string, DeleteLoadBalancerResponse):void} cb
|
|
615
615
|
* @public
|
|
@@ -6473,7 +6473,7 @@ class DeleteLoadBalancerRequest extends AbstractModel {
|
|
|
6473
6473
|
super();
|
|
6474
6474
|
|
|
6475
6475
|
/**
|
|
6476
|
-
* CLB instance ID array to be deleted, which can be obtained by calling the [DescribeLoadBalancers](https://www.tencentcloud.
|
|
6476
|
+
* CLB instance ID array to be deleted, which can be obtained by calling the [DescribeLoadBalancers](https://www.tencentcloud.com/document/product/214/30685?from_cn_redirect=1) API. The array can include up to 20 elements.
|
|
6477
6477
|
* @type {Array.<string> || null}
|
|
6478
6478
|
*/
|
|
6479
6479
|
this.LoadBalancerIds = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1267";
|
|
2
2
|
module.exports = sdkVersion
|