tencentcloud-sdk-nodejs 4.0.447 → 4.0.448

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 (45) hide show
  1. package/CHANGELOG.md +91 -0
  2. package/SERVICE_CHANGELOG.md +134 -147
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ccc/v20200210/ccc_client.ts +12 -0
  7. package/src/services/ccc/v20200210/ccc_models.ts +30 -0
  8. package/src/services/ckafka/v20190819/ckafka_client.ts +3 -2
  9. package/src/services/ckafka/v20190819/ckafka_models.ts +78 -46
  10. package/src/services/clb/v20180317/clb_models.ts +1 -1
  11. package/src/services/cls/v20201016/cls_models.ts +23 -0
  12. package/src/services/mongodb/v20190725/mongodb_client.ts +1 -1
  13. package/src/services/mongodb/v20190725/mongodb_models.ts +1 -1
  14. package/src/services/ocr/v20181119/ocr_client.ts +1 -1
  15. package/src/services/rum/v20210622/rum_client.ts +1 -1
  16. package/src/services/tdmq/v20200217/tdmq_client.ts +13 -0
  17. package/src/services/tdmq/v20200217/tdmq_models.ts +117 -0
  18. package/src/services/wedata/v20210820/wedata_client.ts +33 -5
  19. package/src/services/wedata/v20210820/wedata_models.ts +222 -100
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +5 -1
  23. package/tencentcloud/services/ccc/v20200210/ccc_client.js +6 -0
  24. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +26 -0
  25. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +1 -1
  26. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +1 -1
  27. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +65 -38
  28. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
  29. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +20 -0
  30. package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
  31. package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
  32. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +1 -1
  33. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -1
  34. package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -1
  35. package/tencentcloud/services/rum/v20210622/rum_client.d.ts +1 -1
  36. package/tencentcloud/services/rum/v20210622/rum_client.js +1 -1
  37. package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -1
  38. package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -0
  39. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +97 -0
  40. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +11 -1
  41. package/tencentcloud/services/wedata/v20210820/wedata_client.js +14 -0
  42. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +191 -86
  43. package/test/ccc.v20200210.test.js +10 -0
  44. package/test/tdmq.v20200217.test.js +10 -0
  45. package/test/wedata.v20210820.test.js +20 -0
@@ -198,6 +198,16 @@ it("ccc.v20200210.UnbindStaffSkillGroupList", async function () {
198
198
  }
199
199
  })
200
200
 
201
+ it("ccc.v20200210.DisableCCCPhoneNumber", async function () {
202
+ try {
203
+ const data = await client.DisableCCCPhoneNumber({})
204
+ expect(data).to.be.ok
205
+ } catch(error) {
206
+ expect(error.requestId).to.be.ok
207
+ expect(error.code).to.be.ok
208
+ }
209
+ })
210
+
201
211
  it("ccc.v20200210.DescribeStaffStatusMetrics", async function () {
202
212
  try {
203
213
  const data = await client.DescribeStaffStatusMetrics({})
@@ -598,6 +598,16 @@ it("tdmq.v20200217.DescribeAMQPRouteRelations", async function () {
598
598
  }
599
599
  })
600
600
 
601
+ it("tdmq.v20200217.DescribeRocketMQVipInstances", async function () {
602
+ try {
603
+ const data = await client.DescribeRocketMQVipInstances({})
604
+ expect(data).to.be.ok
605
+ } catch(error) {
606
+ expect(error.requestId).to.be.ok
607
+ expect(error.code).to.be.ok
608
+ }
609
+ })
610
+
601
611
  it("tdmq.v20200217.DescribeAMQPClusters", async function () {
602
612
  try {
603
613
  const data = await client.DescribeAMQPClusters({})
@@ -108,6 +108,16 @@ it("wedata.v20210820.ModifyDataSource", async function () {
108
108
  }
109
109
  })
110
110
 
111
+ it("wedata.v20210820.DescribeDataSourceList", async function () {
112
+ try {
113
+ const data = await client.DescribeDataSourceList({})
114
+ expect(data).to.be.ok
115
+ } catch(error) {
116
+ expect(error.requestId).to.be.ok
117
+ expect(error.code).to.be.ok
118
+ }
119
+ })
120
+
111
121
  it("wedata.v20210820.ModifyTaskInfo", async function () {
112
122
  try {
113
123
  const data = await client.ModifyTaskInfo({})
@@ -188,6 +198,16 @@ it("wedata.v20210820.FreezeTasksByMultiWorkflow", async function () {
188
198
  }
189
199
  })
190
200
 
201
+ it("wedata.v20210820.DescribeDataSourceWithoutInfo", async function () {
202
+ try {
203
+ const data = await client.DescribeDataSourceWithoutInfo({})
204
+ expect(data).to.be.ok
205
+ } catch(error) {
206
+ expect(error.requestId).to.be.ok
207
+ expect(error.code).to.be.ok
208
+ }
209
+ })
210
+
191
211
  it("wedata.v20210820.DescribeInstanceLogs", async function () {
192
212
  try {
193
213
  const data = await client.DescribeInstanceLogs({})