tencentcloud-sdk-nodejs-intl-en 3.0.1303 → 3.0.1305
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/cdb/v20170320/models.js +4 -4
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/mps/v20190612/models.js +941 -231
- package/tencentcloud/mps/v20190612/mps_client.js +102 -45
- package/tencentcloud/mqtt/index.js +3 -0
- package/tencentcloud/mqtt/v20240516/index.js +4 -0
- package/tencentcloud/mqtt/v20240516/models.js +3565 -0
- package/tencentcloud/mqtt/v20240516/mqtt_client.js +388 -0
- package/tencentcloud/tcsas/v20250106/models.js +138 -336
- package/tencentcloud/vod/v20180717/models.js +241 -0
- package/tencentcloud/vod/v20180717/vod_client.js +27 -0
package/package.json
CHANGED
|
@@ -3075,7 +3075,7 @@ class BackupConfig extends AbstractModel {
|
|
|
3075
3075
|
this.ReplicationMode = null;
|
|
3076
3076
|
|
|
3077
3077
|
/**
|
|
3078
|
-
* Name of the AZ of secondary database 2, such as ap-shanghai-
|
|
3078
|
+
* Name of the AZ of secondary database 2, such as ap-shanghai-2
|
|
3079
3079
|
* @type {string || null}
|
|
3080
3080
|
*/
|
|
3081
3081
|
this.Zone = null;
|
|
@@ -7761,7 +7761,7 @@ class DescribeDBInstanceConfigResponse extends AbstractModel {
|
|
|
7761
7761
|
this.DeployMode = null;
|
|
7762
7762
|
|
|
7763
7763
|
/**
|
|
7764
|
-
* Instance AZ information in the format of "ap-shanghai-
|
|
7764
|
+
* Instance AZ information in the format of "ap-shanghai-2".
|
|
7765
7765
|
* @type {string || null}
|
|
7766
7766
|
*/
|
|
7767
7767
|
this.Zone = null;
|
|
@@ -7837,7 +7837,7 @@ class SlaveConfig extends AbstractModel {
|
|
|
7837
7837
|
this.ReplicationMode = null;
|
|
7838
7838
|
|
|
7839
7839
|
/**
|
|
7840
|
-
* AZ name of the secondary database, such as ap-shanghai-
|
|
7840
|
+
* AZ name of the secondary database, such as ap-shanghai-2
|
|
7841
7841
|
* @type {string || null}
|
|
7842
7842
|
*/
|
|
7843
7843
|
this.Zone = null;
|
|
@@ -13731,7 +13731,7 @@ class RoInstanceInfo extends AbstractModel {
|
|
|
13731
13731
|
this.Region = null;
|
|
13732
13732
|
|
|
13733
13733
|
/**
|
|
13734
|
-
* Name of RO AZ, such as ap-shanghai-
|
|
13734
|
+
* Name of RO AZ, such as ap-shanghai-2
|
|
13735
13735
|
* @type {string || null}
|
|
13736
13736
|
*/
|
|
13737
13737
|
this.Zone = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1305";
|
|
2
2
|
module.exports = sdkVersion
|