tencentcloud-sdk-nodejs-as 4.1.91 → 4.1.96
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
|
@@ -299,11 +299,13 @@ export interface ModifyAutoScalingGroupRequest {
|
|
|
299
299
|
*/
|
|
300
300
|
export interface ScaleOutInstancesRequest {
|
|
301
301
|
/**
|
|
302
|
-
* 伸缩组ID
|
|
302
|
+
* 伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
|
|
303
|
+
<li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
|
|
304
|
+
<li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
303
305
|
*/
|
|
304
306
|
AutoScalingGroupId: string;
|
|
305
307
|
/**
|
|
306
|
-
*
|
|
308
|
+
* 希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。
|
|
307
309
|
*/
|
|
308
310
|
ScaleOutNumber: number;
|
|
309
311
|
}
|
|
@@ -3345,7 +3347,7 @@ export interface RollbackInstanceRefreshRequest {
|
|
|
3345
3347
|
*/
|
|
3346
3348
|
export interface StartInstanceRefreshRequest {
|
|
3347
3349
|
/**
|
|
3348
|
-
* 伸缩组ID。
|
|
3350
|
+
* 伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。
|
|
3349
3351
|
*/
|
|
3350
3352
|
AutoScalingGroupId: string;
|
|
3351
3353
|
/**
|