tencentcloud-sdk-nodejs-intl-en 3.0.714 → 3.0.717
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/cbs/v20170312/cbs_client.js +4 -5
- package/tencentcloud/cbs/v20170312/models.js +31 -10
- package/tencentcloud/cdb/v20170320/cdb_client.js +432 -269
- package/tencentcloud/cdb/v20170320/models.js +10024 -8208
- package/tencentcloud/chdfs/v20201112/chdfs_client.js +1 -0
- package/tencentcloud/chdfs/v20201112/models.js +89 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/v20210527/dbbrain_client.js +2 -1
- package/tencentcloud/dbbrain/v20210527/models.js +92 -5
- package/tencentcloud/dcdb/v20180411/dcdb_client.js +50 -14
- package/tencentcloud/dcdb/v20180411/models.js +463 -103
- package/tencentcloud/dlc/v20210125/dlc_client.js +68 -10
- package/tencentcloud/dlc/v20210125/models.js +1491 -620
- package/tencentcloud/dts/v20211206/dts_client.js +74 -21
- package/tencentcloud/dts/v20211206/models.js +597 -241
- package/tencentcloud/emr/v20190103/emr_client.js +1 -0
- package/tencentcloud/emr/v20190103/models.js +72 -5
- package/tencentcloud/faceid/v20180301/faceid_client.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +62 -32
- package/tencentcloud/lcic/v20220817/lcic_client.js +14 -1
- package/tencentcloud/lcic/v20220817/models.js +143 -1
- package/tencentcloud/mariadb/v20170312/mariadb_client.js +19 -10
- package/tencentcloud/mariadb/v20170312/models.js +189 -3
- package/tencentcloud/ocr/v20181119/models.js +7152 -1556
- package/tencentcloud/ocr/v20181119/ocr_client.js +461 -112
- package/tencentcloud/postgres/v20170312/models.js +321 -48
- package/tencentcloud/postgres/v20170312/postgres_client.js +532 -493
- package/tencentcloud/sms/v20210111/models.js +4 -5
package/package.json
CHANGED
|
@@ -126,9 +126,9 @@ class CbsClient extends AbstractClient {
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
|
-
* This API is used to adjust
|
|
129
|
+
* This API is used to adjust extra performance for Enhanced SSD (CLOUD_HSSD) and ulTra SSD.
|
|
130
130
|
|
|
131
|
-
*
|
|
131
|
+
*This API only supports adjust extra performance for Enhanced SSD and ulTra SSD.
|
|
132
132
|
* @param {ModifyDiskExtraPerformanceRequest} req
|
|
133
133
|
* @param {function(string, ModifyDiskExtraPerformanceResponse):void} cb
|
|
134
134
|
* @public
|
|
@@ -605,10 +605,9 @@ After snapshots are shared, the accounts they are shared to can use the snapshot
|
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
* This API is used to expand
|
|
608
|
+
* This API is used to expand cloud disks.
|
|
609
609
|
|
|
610
|
-
*
|
|
611
|
-
* This is an async API. A successful return of this API does not mean that the cloud disk has been expanded successfully. You can call the [DescribeDisks](https://intl.cloud.tencent.comhttps://intl.cloud.tencent.com/document/product/362/16315?from_cn_redirect=1?from_cn_redirect=1) API to query the status of a cloud disk. `EXPANDING` indicates that the expansion is in process.
|
|
610
|
+
*This API supports only the expansion of elastic cloud disks. To query the type of a cloud disk, you can call the [DescribeDisks](https://intl.cloud.tencent.comhttps://intl.cloud.tencent.com/document/product/362/16315?from_cn_redirect=1?from_cn_redirect=1) API and check the `Portable` field in the response. To expand non-elastic cloud disks, you can call the [ResizeInstanceDisks](https://intl.cloud.tencent.com/document/product/213/15731?from_cn_redirect=1) API. *This is an async API. A successful return of this API does not mean that the cloud disk has been expanded successfully. You can call the [DescribeDisks](https://intl.cloud.tencent.comhttps://intl.cloud.tencent.com/document/product/362/16315?from_cn_redirect=1?from_cn_redirect=1) API to query the status of a cloud disk. `EXPANDING` indicates that the expansion is in process.
|
|
612
611
|
* @param {ResizeDiskRequest} req
|
|
613
612
|
* @param {function(string, ResizeDiskResponse):void} cb
|
|
614
613
|
* @public
|
|
@@ -786,7 +786,7 @@ class CreateSnapshotResponse extends AbstractModel {
|
|
|
786
786
|
super();
|
|
787
787
|
|
|
788
788
|
/**
|
|
789
|
-
* ID of the
|
|
789
|
+
* ID of the created snapshot <br/>Note: This field may return null, indicating that no valid values can be obtained.
|
|
790
790
|
* @type {string || null}
|
|
791
791
|
*/
|
|
792
792
|
this.SnapshotId = null;
|
|
@@ -1291,6 +1291,12 @@ class CreateDisksRequest extends AbstractModel {
|
|
|
1291
1291
|
*/
|
|
1292
1292
|
this.DiskBackupQuota = null;
|
|
1293
1293
|
|
|
1294
|
+
/**
|
|
1295
|
+
* Specifies whether to enable disk bursting.
|
|
1296
|
+
* @type {boolean || null}
|
|
1297
|
+
*/
|
|
1298
|
+
this.BurstPerformance = null;
|
|
1299
|
+
|
|
1294
1300
|
}
|
|
1295
1301
|
|
|
1296
1302
|
/**
|
|
@@ -1339,6 +1345,7 @@ class CreateDisksRequest extends AbstractModel {
|
|
|
1339
1345
|
this.AutoMountConfiguration = obj;
|
|
1340
1346
|
}
|
|
1341
1347
|
this.DiskBackupQuota = 'DiskBackupQuota' in params ? params.DiskBackupQuota : null;
|
|
1348
|
+
this.BurstPerformance = 'BurstPerformance' in params ? params.BurstPerformance : null;
|
|
1342
1349
|
|
|
1343
1350
|
}
|
|
1344
1351
|
}
|
|
@@ -2007,6 +2014,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2007
2014
|
*/
|
|
2008
2015
|
this.ErrorPrompt = null;
|
|
2009
2016
|
|
|
2017
|
+
/**
|
|
2018
|
+
* Whether the cloud disk has enabled disk bursting. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2019
|
+
* @type {boolean || null}
|
|
2020
|
+
*/
|
|
2021
|
+
this.BurstPerformance = null;
|
|
2022
|
+
|
|
2010
2023
|
}
|
|
2011
2024
|
|
|
2012
2025
|
/**
|
|
@@ -2070,6 +2083,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2070
2083
|
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
2071
2084
|
this.LastAttachInsId = 'LastAttachInsId' in params ? params.LastAttachInsId : null;
|
|
2072
2085
|
this.ErrorPrompt = 'ErrorPrompt' in params ? params.ErrorPrompt : null;
|
|
2086
|
+
this.BurstPerformance = 'BurstPerformance' in params ? params.BurstPerformance : null;
|
|
2073
2087
|
|
|
2074
2088
|
}
|
|
2075
2089
|
}
|
|
@@ -2186,7 +2200,7 @@ class CreateSnapshotRequest extends AbstractModel {
|
|
|
2186
2200
|
this.SnapshotName = null;
|
|
2187
2201
|
|
|
2188
2202
|
/**
|
|
2189
|
-
* Expiration time of the snapshot. It must be in UTC ISO-8601 format,
|
|
2203
|
+
* Expiration time of the snapshot. It must be in UTC ISO-8601 format, eg. 2022-01-08T09:47:55+00:00. The snapshot will be automatically deleted when it expires.
|
|
2190
2204
|
* @type {string || null}
|
|
2191
2205
|
*/
|
|
2192
2206
|
this.Deadline = null;
|
|
@@ -2691,12 +2705,6 @@ class ModifyDiskAttributesRequest extends AbstractModel {
|
|
|
2691
2705
|
*/
|
|
2692
2706
|
this.DiskIds = null;
|
|
2693
2707
|
|
|
2694
|
-
/**
|
|
2695
|
-
* The new project ID of the cloud disk. Only the project ID of elastic cloud disk can be modified. The available projects and their IDs can be queried via the API [DescribeProject](https://intl.cloud.tencent.com/document/api/378/4400?from_cn_redirect=1).
|
|
2696
|
-
* @type {number || null}
|
|
2697
|
-
*/
|
|
2698
|
-
this.ProjectId = null;
|
|
2699
|
-
|
|
2700
2708
|
/**
|
|
2701
2709
|
* Name of new cloud disk.
|
|
2702
2710
|
* @type {string || null}
|
|
@@ -2709,6 +2717,12 @@ class ModifyDiskAttributesRequest extends AbstractModel {
|
|
|
2709
2717
|
*/
|
|
2710
2718
|
this.Portable = null;
|
|
2711
2719
|
|
|
2720
|
+
/**
|
|
2721
|
+
* The new project ID of the cloud disk. Only the project ID of elastic cloud disk can be modified. The available projects and their IDs can be queried via the API [DescribeProject](https://intl.cloud.tencent.com/document/api/378/4400?from_cn_redirect=1).
|
|
2722
|
+
* @type {number || null}
|
|
2723
|
+
*/
|
|
2724
|
+
this.ProjectId = null;
|
|
2725
|
+
|
|
2712
2726
|
/**
|
|
2713
2727
|
* Whether the cloud disk is terminated with the CVM after it has been successfully mounted. `TRUE` indicates that it is terminated with the CVM. `FALSE` indicates that it is not terminated with the CVM. This is only supported for cloud disks and data disks that are pay-as-you-go.
|
|
2714
2728
|
* @type {boolean || null}
|
|
@@ -2721,6 +2735,12 @@ class ModifyDiskAttributesRequest extends AbstractModel {
|
|
|
2721
2735
|
*/
|
|
2722
2736
|
this.DiskType = null;
|
|
2723
2737
|
|
|
2738
|
+
/**
|
|
2739
|
+
* Enable/disable disk bursting.
|
|
2740
|
+
* @type {string || null}
|
|
2741
|
+
*/
|
|
2742
|
+
this.BurstPerformanceOperation = null;
|
|
2743
|
+
|
|
2724
2744
|
}
|
|
2725
2745
|
|
|
2726
2746
|
/**
|
|
@@ -2731,11 +2751,12 @@ class ModifyDiskAttributesRequest extends AbstractModel {
|
|
|
2731
2751
|
return;
|
|
2732
2752
|
}
|
|
2733
2753
|
this.DiskIds = 'DiskIds' in params ? params.DiskIds : null;
|
|
2734
|
-
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
2735
2754
|
this.DiskName = 'DiskName' in params ? params.DiskName : null;
|
|
2736
2755
|
this.Portable = 'Portable' in params ? params.Portable : null;
|
|
2756
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
2737
2757
|
this.DeleteWithInstance = 'DeleteWithInstance' in params ? params.DeleteWithInstance : null;
|
|
2738
2758
|
this.DiskType = 'DiskType' in params ? params.DiskType : null;
|
|
2759
|
+
this.BurstPerformanceOperation = 'BurstPerformanceOperation' in params ? params.BurstPerformanceOperation : null;
|
|
2739
2760
|
|
|
2740
2761
|
}
|
|
2741
2762
|
}
|
|
@@ -3724,7 +3745,7 @@ class CreateDisksResponse extends AbstractModel {
|
|
|
3724
3745
|
super();
|
|
3725
3746
|
|
|
3726
3747
|
/**
|
|
3727
|
-
*
|
|
3748
|
+
* ID list of the created cloud disks. Note: This field may return null, indicating that no valid values can be obtained.
|
|
3728
3749
|
* @type {Array.<string> || null}
|
|
3729
3750
|
*/
|
|
3730
3751
|
this.DiskIdSet = null;
|