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.
- package/package.json +1 -1
- package/tencentcloud/apigateway/v20180808/apigateway_client.js +3 -2
- package/tencentcloud/apigateway/v20180808/models.js +105 -41
- package/tencentcloud/billing/v20180709/models.js +12 -11
- package/tencentcloud/cam/v20190116/cam_client.js +16 -1
- package/tencentcloud/cam/v20190116/models.js +264 -17
- package/tencentcloud/cdn/v20180606/models.js +54 -3
- package/tencentcloud/ckafka/v20190819/models.js +41 -3
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/v20210527/dbbrain_client.js +30 -4
- package/tencentcloud/dbbrain/v20210527/models.js +309 -116
- package/tencentcloud/dcdb/v20180411/dcdb_client.js +14 -0
- package/tencentcloud/dcdb/v20180411/models.js +144 -7
- package/tencentcloud/emr/v20190103/emr_client.js +2 -0
- package/tencentcloud/emr/v20190103/models.js +109 -0
- package/tencentcloud/live/v20180801/live_client.js +18 -1
- package/tencentcloud/live/v20180801/models.js +163 -5
- package/tencentcloud/monitor/v20180724/models.js +16 -0
- package/tencentcloud/redis/v20180412/models.js +7 -0
- package/tencentcloud/redis/v20180412/redis_client.js +1 -1
- package/tencentcloud/ses/v20201002/models.js +610 -29
- package/tencentcloud/ses/v20201002/ses_client.js +157 -103
- package/tencentcloud/ssm/v20190923/models.js +33 -5
- package/tencentcloud/ssm/v20190923/ssm_client.js +2 -1
|
@@ -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
|