tencentcloud-sdk-nodejs-intl-en 3.0.367 → 3.0.371

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.
@@ -6886,6 +6886,20 @@ Note: this field may return null, indicating that no valid values can be obtaine
6886
6886
  */
6887
6887
  this.ValidationCode = null;
6888
6888
 
6889
+ /**
6890
+ * Start time of the notification in seconds, which is calculated from 00:00:00.
6891
+ Note: this field may return `null`, indicating that no valid values can be obtained.
6892
+ * @type {number || null}
6893
+ */
6894
+ this.StartTime = null;
6895
+
6896
+ /**
6897
+ * End time of the notification in seconds, which is calculated from 00:00:00.
6898
+ Note: this field may return `null`, indicating that no valid values can be obtained.
6899
+ * @type {number || null}
6900
+ */
6901
+ this.EndTime = null;
6902
+
6889
6903
  }
6890
6904
 
6891
6905
  /**
@@ -6898,6 +6912,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
6898
6912
  this.URL = 'URL' in params ? params.URL : null;
6899
6913
  this.IsValid = 'IsValid' in params ? params.IsValid : null;
6900
6914
  this.ValidationCode = 'ValidationCode' in params ? params.ValidationCode : null;
6915
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
6916
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
6901
6917
 
6902
6918
  }
6903
6919
  }
@@ -4123,6 +4123,12 @@ class KillMasterGroupRequest extends AbstractModel {
4123
4123
  */
4124
4124
  this.Password = null;
4125
4125
 
4126
+ /**
4127
+ * Node information of a single-AZ deployed instance
4128
+ * @type {Array.<number> || null}
4129
+ */
4130
+ this.ShardIds = null;
4131
+
4126
4132
  }
4127
4133
 
4128
4134
  /**
@@ -4134,6 +4140,7 @@ class KillMasterGroupRequest extends AbstractModel {
4134
4140
  }
4135
4141
  this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4136
4142
  this.Password = 'Password' in params ? params.Password : null;
4143
+ this.ShardIds = 'ShardIds' in params ? params.ShardIds : null;
4137
4144
 
4138
4145
  }
4139
4146
  }
@@ -369,7 +369,7 @@ class RedisClient extends AbstractClient {
369
369
  }
370
370
 
371
371
  /**
372
- * This API is used to promote a replica node group of a multi-AZ deployed instance to master node group.
372
+ * This API is used to promote a replica node group of a multi-AZ deployed instance to master node group or a replica node of a single-AZ deployed instance to master node.
373
373
  * @param {ChangeReplicaToMasterRequest} req
374
374
  * @param {function(string, ChangeReplicaToMasterResponse):void} cb
375
375
  * @public