tencentcloud-sdk-nodejs 4.0.323 → 4.0.324

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 (63) hide show
  1. package/CHANGELOG.md +218 -0
  2. package/SERVICE_CHANGELOG.md +315 -68
  3. package/package.json +1 -1
  4. package/products.md +15 -15
  5. package/src/common/abstract_client.ts +5 -1
  6. package/src/common/interface.ts +2 -2
  7. package/src/common/sdk_version.ts +1 -1
  8. package/src/services/cbs/v20170312/cbs_client.ts +1 -0
  9. package/src/services/cbs/v20170312/cbs_models.ts +48 -23
  10. package/src/services/ccc/v20200210/ccc_models.ts +6 -6
  11. package/src/services/cdb/v20170320/cdb_models.ts +3 -3
  12. package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
  13. package/src/services/dc/v20180410/dc_models.ts +21 -1
  14. package/src/services/dcdb/v20180411/dcdb_client.ts +8 -33
  15. package/src/services/dcdb/v20180411/dcdb_models.ts +19 -121
  16. package/src/services/gaap/v20180529/gaap_models.ts +2 -1
  17. package/src/services/icr/v20211014/icr_models.ts +2 -2
  18. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +1 -1
  19. package/src/services/mariadb/v20170312/mariadb_client.ts +9 -34
  20. package/src/services/mariadb/v20170312/mariadb_models.ts +11 -119
  21. package/src/services/nlp/v20190408/nlp_client.ts +0 -3
  22. package/src/services/nlp/v20190408/nlp_models.ts +1 -1
  23. package/src/services/postgres/v20170312/postgres_models.ts +38 -5
  24. package/src/services/ssa/v20180608/ssa_client.ts +12 -0
  25. package/src/services/ssa/v20180608/ssa_models.ts +21 -6
  26. package/src/services/tdmq/v20200217/tdmq_models.ts +14 -4
  27. package/src/services/vod/v20180717/vod_client.ts +60 -18
  28. package/src/services/vod/v20180717/vod_models.ts +131 -29
  29. package/tencentcloud/common/abstract_client.js +1 -1
  30. package/tencentcloud/common/interface.d.ts +2 -2
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/cbs/v20170312/cbs_client.d.ts +1 -0
  34. package/tencentcloud/services/cbs/v20170312/cbs_client.js +1 -0
  35. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +43 -23
  36. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +6 -6
  37. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +3 -3
  38. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  39. package/tencentcloud/services/dc/v20180410/dc_models.d.ts +17 -1
  40. package/tencentcloud/services/dcdb/v20180411/dcdb_client.d.ts +3 -11
  41. package/tencentcloud/services/dcdb/v20180411/dcdb_client.js +3 -15
  42. package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +17 -104
  43. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +2 -1
  44. package/tencentcloud/services/icr/v20211014/icr_models.d.ts +2 -2
  45. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +1 -1
  46. package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +4 -12
  47. package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +4 -16
  48. package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +10 -102
  49. package/tencentcloud/services/nlp/v20190408/nlp_client.d.ts +0 -3
  50. package/tencentcloud/services/nlp/v20190408/nlp_client.js +0 -3
  51. package/tencentcloud/services/nlp/v20190408/nlp_models.d.ts +1 -1
  52. package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +32 -5
  53. package/tencentcloud/services/ssa/v20180608/ssa_client.d.ts +5 -1
  54. package/tencentcloud/services/ssa/v20180608/ssa_client.js +6 -0
  55. package/tencentcloud/services/ssa/v20180608/ssa_models.d.ts +19 -6
  56. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +12 -4
  57. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +24 -7
  58. package/tencentcloud/services/vod/v20180717/vod_client.js +31 -8
  59. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +114 -25
  60. package/test/dcdb.v20180411.test.js +2 -22
  61. package/test/mariadb.v20170312.test.js +2 -22
  62. package/test/ssa.v20180608.test.js +10 -0
  63. package/test/vod.v20180717.test.js +34 -4
@@ -48,16 +48,6 @@ it("dcdb.v20180411.DescribeDatabaseObjects", async function () {
48
48
  }
49
49
  })
50
50
 
51
- it("dcdb.v20180411.DescribeDatabaseTable", async function () {
52
- try {
53
- const data = await client.DescribeDatabaseTable({})
54
- expect(data).to.be.ok
55
- } catch(error) {
56
- expect(error.requestId).to.be.ok
57
- expect(error.code).to.be.ok
58
- }
59
- })
60
-
61
51
  it("dcdb.v20180411.DescribeShardSpec", async function () {
62
52
  try {
63
53
  const data = await client.DescribeShardSpec({})
@@ -118,16 +108,6 @@ it("dcdb.v20180411.ModifyAccountDescription", async function () {
118
108
  }
119
109
  })
120
110
 
121
- it("dcdb.v20180411.DescribeOrders", async function () {
122
- try {
123
- const data = await client.DescribeOrders({})
124
- expect(data).to.be.ok
125
- } catch(error) {
126
- expect(error.requestId).to.be.ok
127
- expect(error.code).to.be.ok
128
- }
129
- })
130
-
131
111
  it("dcdb.v20180411.DescribeUserTasks", async function () {
132
112
  try {
133
113
  const data = await client.DescribeUserTasks({})
@@ -488,9 +468,9 @@ it("dcdb.v20180411.DestroyHourDCDBInstance", async function () {
488
468
  }
489
469
  })
490
470
 
491
- it("dcdb.v20180411.DescribeDBSecurityGroups", async function () {
471
+ it("dcdb.v20180411.DescribeDatabaseTable", async function () {
492
472
  try {
493
- const data = await client.DescribeDBSecurityGroups({})
473
+ const data = await client.DescribeDatabaseTable({})
494
474
  expect(data).to.be.ok
495
475
  } catch(error) {
496
476
  expect(error.requestId).to.be.ok
@@ -248,9 +248,9 @@ it("mariadb.v20170312.RestartDBInstances", async function () {
248
248
  }
249
249
  })
250
250
 
251
- it("mariadb.v20170312.DescribeOrders", async function () {
251
+ it("mariadb.v20170312.GrantAccountPrivileges", async function () {
252
252
  try {
253
- const data = await client.DescribeOrders({})
253
+ const data = await client.GrantAccountPrivileges({})
254
254
  expect(data).to.be.ok
255
255
  } catch(error) {
256
256
  expect(error.requestId).to.be.ok
@@ -508,16 +508,6 @@ it("mariadb.v20170312.FlushBinlog", async function () {
508
508
  }
509
509
  })
510
510
 
511
- it("mariadb.v20170312.GrantAccountPrivileges", async function () {
512
- try {
513
- const data = await client.GrantAccountPrivileges({})
514
- expect(data).to.be.ok
515
- } catch(error) {
516
- expect(error.requestId).to.be.ok
517
- expect(error.code).to.be.ok
518
- }
519
- })
520
-
521
511
  it("mariadb.v20170312.CopyAccountPrivileges", async function () {
522
512
  try {
523
513
  const data = await client.CopyAccountPrivileges({})
@@ -558,16 +548,6 @@ it("mariadb.v20170312.DescribePrice", async function () {
558
548
  }
559
549
  })
560
550
 
561
- it("mariadb.v20170312.DescribeDBSecurityGroups", async function () {
562
- try {
563
- const data = await client.DescribeDBSecurityGroups({})
564
- expect(data).to.be.ok
565
- } catch(error) {
566
- expect(error.requestId).to.be.ok
567
- expect(error.code).to.be.ok
568
- }
569
- })
570
-
571
551
  it("mariadb.v20170312.DescribeDatabaseTable", async function () {
572
552
  try {
573
553
  const data = await client.DescribeDatabaseTable({})
@@ -128,6 +128,16 @@ it("ssa.v20180608.DescribeMappingResults", async function () {
128
128
  }
129
129
  })
130
130
 
131
+ it("ssa.v20180608.DescribeSocCheckItemList", async function () {
132
+ try {
133
+ const data = await client.DescribeSocCheckItemList({})
134
+ expect(data).to.be.ok
135
+ } catch(error) {
136
+ expect(error.requestId).to.be.ok
137
+ expect(error.code).to.be.ok
138
+ }
139
+ })
140
+
131
141
  it("ssa.v20180608.DescribeVulList", async function () {
132
142
  try {
133
143
  const data = await client.DescribeVulList({})
@@ -38,6 +38,16 @@ it("vod.v20180717.CreateSnapshotByTimeOffsetTemplate", async function () {
38
38
  }
39
39
  })
40
40
 
41
+ it("vod.v20180717.ModifyDefaultStorageRegion", async function () {
42
+ try {
43
+ const data = await client.ModifyDefaultStorageRegion({})
44
+ expect(data).to.be.ok
45
+ } catch(error) {
46
+ expect(error.requestId).to.be.ok
47
+ expect(error.code).to.be.ok
48
+ }
49
+ })
50
+
41
51
  it("vod.v20180717.EditMedia", async function () {
42
52
  try {
43
53
  const data = await client.EditMedia({})
@@ -168,9 +178,9 @@ it("vod.v20180717.SplitMedia", async function () {
168
178
  }
169
179
  })
170
180
 
171
- it("vod.v20180717.ModifyAIAnalysisTemplate", async function () {
181
+ it("vod.v20180717.DescribeImageProcessingTemplates", async function () {
172
182
  try {
173
- const data = await client.ModifyAIAnalysisTemplate({})
183
+ const data = await client.DescribeImageProcessingTemplates({})
174
184
  expect(data).to.be.ok
175
185
  } catch(error) {
176
186
  expect(error.requestId).to.be.ok
@@ -258,6 +268,16 @@ it("vod.v20180717.DescribeTasks", async function () {
258
268
  }
259
269
  })
260
270
 
271
+ it("vod.v20180717.CreateStorageRegion", async function () {
272
+ try {
273
+ const data = await client.CreateStorageRegion({})
274
+ expect(data).to.be.ok
275
+ } catch(error) {
276
+ expect(error.requestId).to.be.ok
277
+ expect(error.code).to.be.ok
278
+ }
279
+ })
280
+
261
281
  it("vod.v20180717.ResetProcedureTemplate", async function () {
262
282
  try {
263
283
  const data = await client.ResetProcedureTemplate({})
@@ -618,6 +638,16 @@ it("vod.v20180717.DescribeDailyMostPlayedStat", async function () {
618
638
  }
619
639
  })
620
640
 
641
+ it("vod.v20180717.DescribeStorageRegions", async function () {
642
+ try {
643
+ const data = await client.DescribeStorageRegions({})
644
+ expect(data).to.be.ok
645
+ } catch(error) {
646
+ expect(error.requestId).to.be.ok
647
+ expect(error.code).to.be.ok
648
+ }
649
+ })
650
+
621
651
  it("vod.v20180717.DescribeEventsState", async function () {
622
652
  try {
623
653
  const data = await client.DescribeEventsState({})
@@ -818,9 +848,9 @@ it("vod.v20180717.ManageTask", async function () {
818
848
  }
819
849
  })
820
850
 
821
- it("vod.v20180717.DescribeImageProcessingTemplates", async function () {
851
+ it("vod.v20180717.ModifyAIAnalysisTemplate", async function () {
822
852
  try {
823
- const data = await client.DescribeImageProcessingTemplates({})
853
+ const data = await client.ModifyAIAnalysisTemplate({})
824
854
  expect(data).to.be.ok
825
855
  } catch(error) {
826
856
  expect(error.requestId).to.be.ok