tencentcloud-sdk-nodejs 4.1.299 → 4.1.300
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/es/common/sdk_version.js +1 -1
- package/es/services/csip/v20221121/csip_client.js +307 -52
- package/es/services/cynosdb/v20190107/cynosdb_client.js +3 -0
- package/es/services/redis/v20180412/redis_client.js +3 -0
- package/es/services/tke/v20220501/tke_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +393 -53
- package/tencentcloud/services/csip/v20221121/csip_client.js +588 -78
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +6905 -1501
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +5 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +6 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +52 -14
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +4 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +2 -2
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +65 -1
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +5 -1
- package/tencentcloud/services/redis/v20180412/redis_client.js +6 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +22 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +37 -7
- package/tencentcloud/services/tke/v20220501/tke_client.d.ts +5 -1
- package/tencentcloud/services/tke/v20220501/tke_client.js +6 -0
- package/tencentcloud/services/tke/v20220501/tke_models.d.ts +22 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -0
|
@@ -516,6 +516,9 @@ export class Client extends AbstractClient {
|
|
|
516
516
|
async SetRenewFlag(req, cb) {
|
|
517
517
|
return this.request("SetRenewFlag", req, cb);
|
|
518
518
|
}
|
|
519
|
+
async DescribeClusterStorageAutoExpand(req, cb) {
|
|
520
|
+
return this.request("DescribeClusterStorageAutoExpand", req, cb);
|
|
521
|
+
}
|
|
519
522
|
async InquirePriceRenew(req, cb) {
|
|
520
523
|
return this.request("InquirePriceRenew", req, cb);
|
|
521
524
|
}
|
|
@@ -69,6 +69,9 @@ export class Client extends AbstractClient {
|
|
|
69
69
|
async DescribeBackupUrl(req, cb) {
|
|
70
70
|
return this.request("DescribeBackupUrl", req, cb);
|
|
71
71
|
}
|
|
72
|
+
async ModifyInstancePasswordPolicy(req, cb) {
|
|
73
|
+
return this.request("ModifyInstancePasswordPolicy", req, cb);
|
|
74
|
+
}
|
|
72
75
|
async DescribeSecondLevelBackupInfo(req, cb) {
|
|
73
76
|
return this.request("DescribeSecondLevelBackupInfo", req, cb);
|
|
74
77
|
}
|
|
@@ -48,6 +48,9 @@ export class Client extends AbstractClient {
|
|
|
48
48
|
async DeleteHealthCheckPolicy(req, cb) {
|
|
49
49
|
return this.request("DeleteHealthCheckPolicy", req, cb);
|
|
50
50
|
}
|
|
51
|
+
async DetachApplicationRole(req, cb) {
|
|
52
|
+
return this.request("DetachApplicationRole", req, cb);
|
|
53
|
+
}
|
|
51
54
|
async DescribeGPUInfo(req, cb) {
|
|
52
55
|
return this.request("DescribeGPUInfo", req, cb);
|
|
53
56
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.300";
|