tencentcloud-sdk-nodejs-intl-en 3.0.1285 → 3.0.1287

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": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1285",
3
+ "version": "3.0.1287",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -7087,6 +7087,12 @@ Default value: RECREATE.
7087
7087
  */
7088
7088
  this.DesiredCapacitySyncWithMaxMinSize = null;
7089
7089
 
7090
+ /**
7091
+ * Scaling in unhealthy instances first. If enabled, preferentially selects unhealthy instances during scale in. Default value: False.
7092
+ * @type {boolean || null}
7093
+ */
7094
+ this.PriorityScaleInUnhealthy = null;
7095
+
7090
7096
  }
7091
7097
 
7092
7098
  /**
@@ -7102,6 +7108,7 @@ Default value: RECREATE.
7102
7108
  this.ReplaceMode = 'ReplaceMode' in params ? params.ReplaceMode : null;
7103
7109
  this.AutoUpdateInstanceTags = 'AutoUpdateInstanceTags' in params ? params.AutoUpdateInstanceTags : null;
7104
7110
  this.DesiredCapacitySyncWithMaxMinSize = 'DesiredCapacitySyncWithMaxMinSize' in params ? params.DesiredCapacitySyncWithMaxMinSize : null;
7111
+ this.PriorityScaleInUnhealthy = 'PriorityScaleInUnhealthy' in params ? params.PriorityScaleInUnhealthy : null;
7105
7112
 
7106
7113
  }
7107
7114
  }
@@ -8539,7 +8546,7 @@ If true is filled in, it indicates that the instance tag list should be cleared.
8539
8546
  }
8540
8547
 
8541
8548
  /**
8542
- * Instance name sequencing settings.
8549
+ * Instance name index settings.
8543
8550
  * @class
8544
8551
  */
8545
8552
  class InstanceNameIndexSettings extends AbstractModel {
@@ -8547,19 +8554,35 @@ class InstanceNameIndexSettings extends AbstractModel {
8547
8554
  super();
8548
8555
 
8549
8556
  /**
8550
- * Whether to enable instance creation sequencing, which is disabled by default. Valid values: <li>TRUE: Indicates that instance creation sequencing is enabled. <li>FALSE: Indicates that instance creation sequencing is disabled.
8551
- Note: This field may return null, indicating that no valid value can be obtained.
8557
+ * Whether to enable instance name index. Default value: false. Value range:.
8558
+
8559
+ **true**: indicates that instance name index is enabled.
8560
+ **false**: indicates that instance name index is disabled.
8561
+ Note: This field may return null, indicating that no valid values can be obtained.
8552
8562
  * @type {boolean || null}
8553
8563
  */
8554
8564
  this.Enabled = null;
8555
8565
 
8556
8566
  /**
8557
- * Initial sequence number, with a value range of [0, 99,999,999]. When the sequence number exceeds this range after incrementing, scale-out activities will fail. <li>Upon the first enabling of instance name sequencing: The default value is 0. <li>Upon the enabling of instance name sequencing (not for the first time): If this parameter is not specified, the historical sequence number will be carried forward. Lowering the initial sequence number may result in duplicate instance name sequences within the scaling group.
8558
- Note: This field may return null, indicating that no valid value can be obtained.
8567
+ * Begin index number. Value range: [0, 99999999].
8568
+
8569
+ Indicates that the scale out activity will be failed when the index out of range.
8570
+ If not specified, carries forward historical index number or 0.
8571
+ Lowering the index sequence number may lead to instance name duplication within the group.
8572
+ Note: This field may return null, indicating that no valid values can be obtained.
8559
8573
  * @type {number || null}
8560
8574
  */
8561
8575
  this.BeginIndex = null;
8562
8576
 
8577
+ /**
8578
+ * Instance name index number digits, defaults to 0, means no specified digit count. Value range: 0-8, maximum is integer 8. when using values 1-8, the system checks whether the index number exceeds the maximum digit for this digit count.
8579
+
8580
+ If set to 3, index number is in the format: 000, 001, 002 ... 010, 011 ... 100 ... 999. The maximum is 999.
8581
+ Assuming set to 0, the index number is 0, 1, 2 ... 10, 11 ... 100 ... 1000 ...10000 ... 99999999. Max number is 99999999.
8582
+ * @type {number || null}
8583
+ */
8584
+ this.IndexLength = null;
8585
+
8563
8586
  }
8564
8587
 
8565
8588
  /**
@@ -8571,6 +8594,7 @@ Note: This field may return null, indicating that no valid value can be obtained
8571
8594
  }
8572
8595
  this.Enabled = 'Enabled' in params ? params.Enabled : null;
8573
8596
  this.BeginIndex = 'BeginIndex' in params ? params.BeginIndex : null;
8597
+ this.IndexLength = 'IndexLength' in params ? params.IndexLength : null;
8574
8598
 
8575
8599
  }
8576
8600
  }