tencentcloud-sdk-nodejs 4.0.587 → 4.0.588

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.
Files changed (47) hide show
  1. package/CHANGELOG.md +216 -0
  2. package/SERVICE_CHANGELOG.md +250 -211
  3. package/package.json +1 -1
  4. package/products.md +16 -16
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/billing/v20180709/billing_models.ts +6 -0
  7. package/src/services/cbs/v20170312/cbs_models.ts +8 -8
  8. package/src/services/cdb/v20170320/cdb_client.ts +173 -47
  9. package/src/services/cdb/v20170320/cdb_models.ts +1198 -362
  10. package/src/services/cfs/v20190719/cfs_client.ts +12 -0
  11. package/src/services/cfs/v20190719/cfs_models.ts +56 -0
  12. package/src/services/clb/v20180317/clb_models.ts +6 -6
  13. package/src/services/cls/v20201016/cls_models.ts +1 -1
  14. package/src/services/essbasic/v20210526/essbasic_models.ts +6 -0
  15. package/src/services/gaap/v20180529/gaap_client.ts +1 -0
  16. package/src/services/gaap/v20180529/gaap_models.ts +16 -0
  17. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +6 -0
  18. package/src/services/mps/v20190612/mps_models.ts +28 -19
  19. package/src/services/tdmq/v20200217/tdmq_models.ts +43 -1
  20. package/src/services/teo/v20220901/teo_models.ts +3 -3
  21. package/src/services/tione/v20211111/tione_models.ts +41 -10
  22. package/src/services/tmt/v20180321/tmt_client.ts +1 -2
  23. package/src/services/tmt/v20180321/tmt_models.ts +13 -13
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +5 -0
  27. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +8 -8
  28. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +53 -13
  29. package/tencentcloud/services/cdb/v20170320/cdb_client.js +77 -17
  30. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +991 -286
  31. package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +5 -1
  32. package/tencentcloud/services/cfs/v20190719/cfs_client.js +6 -0
  33. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +47 -0
  34. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +6 -6
  35. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
  36. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +5 -0
  37. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +14 -0
  38. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +5 -0
  39. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +10 -1
  40. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +36 -1
  41. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -3
  42. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +35 -9
  43. package/tencentcloud/services/tmt/v20180321/tmt_client.d.ts +1 -2
  44. package/tencentcloud/services/tmt/v20180321/tmt_client.js +1 -2
  45. package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +13 -13
  46. package/test/cdb.v20170320.test.js +110 -10
  47. package/test/cfs.v20190719.test.js +10 -0
@@ -158,6 +158,16 @@ it("cdb.v20170320.DescribeCdbZoneConfig", async function () {
158
158
  }
159
159
  })
160
160
 
161
+ it("cdb.v20170320.ModifyDBInstanceSecurityGroups", async function () {
162
+ try {
163
+ const data = await client.ModifyDBInstanceSecurityGroups({})
164
+ expect(data).to.be.ok
165
+ } catch(error) {
166
+ expect(error.requestId).to.be.ok
167
+ expect(error.code).to.be.ok
168
+ }
169
+ })
170
+
161
171
  it("cdb.v20170320.StopRollback", async function () {
162
172
  try {
163
173
  const data = await client.StopRollback({})
@@ -238,6 +248,16 @@ it("cdb.v20170320.ModifyBackupDownloadRestriction", async function () {
238
248
  }
239
249
  })
240
250
 
251
+ it("cdb.v20170320.DescribeParamTemplates", async function () {
252
+ try {
253
+ const data = await client.DescribeParamTemplates({})
254
+ expect(data).to.be.ok
255
+ } catch(error) {
256
+ expect(error.requestId).to.be.ok
257
+ expect(error.code).to.be.ok
258
+ }
259
+ })
260
+
241
261
  it("cdb.v20170320.DescribeTasks", async function () {
242
262
  try {
243
263
  const data = await client.DescribeTasks({})
@@ -348,6 +368,16 @@ it("cdb.v20170320.DisassociateSecurityGroups", async function () {
348
368
  }
349
369
  })
350
370
 
371
+ it("cdb.v20170320.RenewDBInstance", async function () {
372
+ try {
373
+ const data = await client.RenewDBInstance({})
374
+ expect(data).to.be.ok
375
+ } catch(error) {
376
+ expect(error.requestId).to.be.ok
377
+ expect(error.code).to.be.ok
378
+ }
379
+ })
380
+
351
381
  it("cdb.v20170320.DescribeTables", async function () {
352
382
  try {
353
383
  const data = await client.DescribeTables({})
@@ -488,6 +518,16 @@ it("cdb.v20170320.AddTimeWindow", async function () {
488
518
  }
489
519
  })
490
520
 
521
+ it("cdb.v20170320.DescribeProxySupportParam", async function () {
522
+ try {
523
+ const data = await client.DescribeProxySupportParam({})
524
+ expect(data).to.be.ok
525
+ } catch(error) {
526
+ expect(error.requestId).to.be.ok
527
+ expect(error.code).to.be.ok
528
+ }
529
+ })
530
+
491
531
  it("cdb.v20170320.DescribeDeviceMonitorInfo", async function () {
492
532
  try {
493
533
  const data = await client.DescribeDeviceMonitorInfo({})
@@ -538,6 +578,16 @@ it("cdb.v20170320.DescribeBackupTables", async function () {
538
578
  }
539
579
  })
540
580
 
581
+ it("cdb.v20170320.CreateCdbProxyAddress", async function () {
582
+ try {
583
+ const data = await client.CreateCdbProxyAddress({})
584
+ expect(data).to.be.ok
585
+ } catch(error) {
586
+ expect(error.requestId).to.be.ok
587
+ expect(error.code).to.be.ok
588
+ }
589
+ })
590
+
541
591
  it("cdb.v20170320.DeleteAuditPolicy", async function () {
542
592
  try {
543
593
  const data = await client.DeleteAuditPolicy({})
@@ -688,6 +738,16 @@ it("cdb.v20170320.CreateAccounts", async function () {
688
738
  }
689
739
  })
690
740
 
741
+ it("cdb.v20170320.AdjustCdbProxy", async function () {
742
+ try {
743
+ const data = await client.AdjustCdbProxy({})
744
+ expect(data).to.be.ok
745
+ } catch(error) {
746
+ expect(error.requestId).to.be.ok
747
+ expect(error.code).to.be.ok
748
+ }
749
+ })
750
+
691
751
  it("cdb.v20170320.UpgradeDBInstanceEngineVersion", async function () {
692
752
  try {
693
753
  const data = await client.UpgradeDBInstanceEngineVersion({})
@@ -788,9 +848,9 @@ it("cdb.v20170320.DescribeRollbackRangeTime", async function () {
788
848
  }
789
849
  })
790
850
 
791
- it("cdb.v20170320.DescribeParamTemplates", async function () {
851
+ it("cdb.v20170320.CloseCdbProxyAddress", async function () {
792
852
  try {
793
- const data = await client.DescribeParamTemplates({})
853
+ const data = await client.CloseCdbProxyAddress({})
794
854
  expect(data).to.be.ok
795
855
  } catch(error) {
796
856
  expect(error.requestId).to.be.ok
@@ -828,6 +888,16 @@ it("cdb.v20170320.DescribeRoMinScale", async function () {
828
888
  }
829
889
  })
830
890
 
891
+ it("cdb.v20170320.ModifyCdbProxyAddressDesc", async function () {
892
+ try {
893
+ const data = await client.ModifyCdbProxyAddressDesc({})
894
+ expect(data).to.be.ok
895
+ } catch(error) {
896
+ expect(error.requestId).to.be.ok
897
+ expect(error.code).to.be.ok
898
+ }
899
+ })
900
+
831
901
  it("cdb.v20170320.ModifyAccountHost", async function () {
832
902
  try {
833
903
  const data = await client.ModifyAccountHost({})
@@ -848,6 +918,26 @@ it("cdb.v20170320.StartReplication", async function () {
848
918
  }
849
919
  })
850
920
 
921
+ it("cdb.v20170320.AdjustCdbProxyAddress", async function () {
922
+ try {
923
+ const data = await client.AdjustCdbProxyAddress({})
924
+ expect(data).to.be.ok
925
+ } catch(error) {
926
+ expect(error.requestId).to.be.ok
927
+ expect(error.code).to.be.ok
928
+ }
929
+ })
930
+
931
+ it("cdb.v20170320.DescribeCdbProxyInfo", async function () {
932
+ try {
933
+ const data = await client.DescribeCdbProxyInfo({})
934
+ expect(data).to.be.ok
935
+ } catch(error) {
936
+ expect(error.requestId).to.be.ok
937
+ expect(error.code).to.be.ok
938
+ }
939
+ })
940
+
851
941
  it("cdb.v20170320.DescribeAuditConfig", async function () {
852
942
  try {
853
943
  const data = await client.DescribeAuditConfig({})
@@ -958,9 +1048,9 @@ it("cdb.v20170320.AssociateSecurityGroups", async function () {
958
1048
  }
959
1049
  })
960
1050
 
961
- it("cdb.v20170320.InitDBInstances", async function () {
1051
+ it("cdb.v20170320.DescribeDBPrice", async function () {
962
1052
  try {
963
- const data = await client.InitDBInstances({})
1053
+ const data = await client.DescribeDBPrice({})
964
1054
  expect(data).to.be.ok
965
1055
  } catch(error) {
966
1056
  expect(error.requestId).to.be.ok
@@ -1168,9 +1258,19 @@ it("cdb.v20170320.DescribeBackupDatabases", async function () {
1168
1258
  }
1169
1259
  })
1170
1260
 
1171
- it("cdb.v20170320.DescribeDBPrice", async function () {
1261
+ it("cdb.v20170320.InitDBInstances", async function () {
1172
1262
  try {
1173
- const data = await client.DescribeDBPrice({})
1263
+ const data = await client.InitDBInstances({})
1264
+ expect(data).to.be.ok
1265
+ } catch(error) {
1266
+ expect(error.requestId).to.be.ok
1267
+ expect(error.code).to.be.ok
1268
+ }
1269
+ })
1270
+
1271
+ it("cdb.v20170320.CreateCdbProxy", async function () {
1272
+ try {
1273
+ const data = await client.CreateCdbProxy({})
1174
1274
  expect(data).to.be.ok
1175
1275
  } catch(error) {
1176
1276
  expect(error.requestId).to.be.ok
@@ -1198,9 +1298,9 @@ it("cdb.v20170320.SwitchCDBProxy", async function () {
1198
1298
  }
1199
1299
  })
1200
1300
 
1201
- it("cdb.v20170320.RenewDBInstance", async function () {
1301
+ it("cdb.v20170320.ModifyCdbProxyParam", async function () {
1202
1302
  try {
1203
- const data = await client.RenewDBInstance({})
1303
+ const data = await client.ModifyCdbProxyParam({})
1204
1304
  expect(data).to.be.ok
1205
1305
  } catch(error) {
1206
1306
  expect(error.requestId).to.be.ok
@@ -1268,9 +1368,9 @@ it("cdb.v20170320.QueryCDBProxy", async function () {
1268
1368
  }
1269
1369
  })
1270
1370
 
1271
- it("cdb.v20170320.ModifyDBInstanceSecurityGroups", async function () {
1371
+ it("cdb.v20170320.ModifyCdbProxyAddressVipAndVPort", async function () {
1272
1372
  try {
1273
- const data = await client.ModifyDBInstanceSecurityGroups({})
1373
+ const data = await client.ModifyCdbProxyAddressVipAndVPort({})
1274
1374
  expect(data).to.be.ok
1275
1375
  } catch(error) {
1276
1376
  expect(error.requestId).to.be.ok
@@ -258,6 +258,16 @@ it("cfs.v20190719.DescribeUserQuota", async function () {
258
258
  }
259
259
  })
260
260
 
261
+ it("cfs.v20190719.ModifyFileSystemAutoScaleUpRule", async function () {
262
+ try {
263
+ const data = await client.ModifyFileSystemAutoScaleUpRule({})
264
+ expect(data).to.be.ok
265
+ } catch(error) {
266
+ expect(error.requestId).to.be.ok
267
+ expect(error.code).to.be.ok
268
+ }
269
+ })
270
+
261
271
  it("cfs.v20190719.UpdateAutoSnapshotPolicy", async function () {
262
272
  try {
263
273
  const data = await client.UpdateAutoSnapshotPolicy({})