tencentcloud-sdk-nodejs 4.0.339 → 4.0.340

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 (51) hide show
  1. package/CHANGELOG.md +103 -0
  2. package/SERVICE_CHANGELOG.md +136 -44
  3. package/package.json +1 -1
  4. package/products.md +9 -8
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/bi/index.ts +5 -0
  7. package/src/services/bi/v20220105/bi_client.ts +57 -0
  8. package/src/services/bi/v20220105/bi_models.ts +214 -0
  9. package/src/services/bi/v20220105/index.ts +6 -0
  10. package/src/services/ckafka/v20190819/ckafka_client.ts +12 -0
  11. package/src/services/ckafka/v20190819/ckafka_models.ts +40 -0
  12. package/src/services/ess/v20201111/ess_models.ts +26 -8
  13. package/src/services/gaap/v20180529/gaap_client.ts +68 -28
  14. package/src/services/gaap/v20180529/gaap_models.ts +280 -68
  15. package/src/services/index.ts +1 -0
  16. package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +2 -2
  17. package/src/services/ocr/v20181119/ocr_client.ts +1 -1
  18. package/src/services/ocr/v20181119/ocr_models.ts +7 -15
  19. package/src/services/redis/v20180412/redis_models.ts +1 -1
  20. package/src/services/trtc/v20190722/trtc_models.ts +1 -1
  21. package/src/services/tsf/v20180326/tsf_models.ts +6 -0
  22. package/tencentcloud/common/sdk_version.d.ts +1 -1
  23. package/tencentcloud/common/sdk_version.js +1 -1
  24. package/tencentcloud/services/bi/index.d.ts +6 -0
  25. package/tencentcloud/services/bi/index.js +7 -0
  26. package/tencentcloud/services/bi/v20220105/bi_client.d.ts +18 -0
  27. package/tencentcloud/services/bi/v20220105/bi_client.js +43 -0
  28. package/tencentcloud/services/bi/v20220105/bi_models.d.ts +168 -0
  29. package/tencentcloud/services/bi/v20220105/bi_models.js +18 -0
  30. package/tencentcloud/services/bi/v20220105/index.d.ts +6 -0
  31. package/tencentcloud/services/bi/v20220105/index.js +9 -0
  32. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +5 -1
  33. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +6 -0
  34. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +34 -0
  35. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +23 -7
  36. package/tencentcloud/services/gaap/v20180529/gaap_client.d.ts +21 -9
  37. package/tencentcloud/services/gaap/v20180529/gaap_client.js +30 -12
  38. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +245 -60
  39. package/tencentcloud/services/index.d.ts +1 -0
  40. package/tencentcloud/services/index.js +2 -0
  41. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +2 -2
  42. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +2 -2
  43. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -1
  44. package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -1
  45. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +7 -15
  46. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
  47. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
  48. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +5 -0
  49. package/test/bi.v20220105.test.js +41 -0
  50. package/test/ckafka.v20190819.test.js +10 -0
  51. package/test/gaap.v20180529.test.js +44 -14
@@ -178,16 +178,6 @@ it("gaap.v20180529.DescribeDestRegions", async function () {
178
178
  }
179
179
  })
180
180
 
181
- it("gaap.v20180529.DescribeRulesByRuleIds", async function () {
182
- try {
183
- const data = await client.DescribeRulesByRuleIds({})
184
- expect(data).to.be.ok
185
- } catch(error) {
186
- expect(error.requestId).to.be.ok
187
- expect(error.code).to.be.ok
188
- }
189
- })
190
-
191
181
  it("gaap.v20180529.DescribeProxyGroupList", async function () {
192
182
  try {
193
183
  const data = await client.DescribeProxyGroupList({})
@@ -288,6 +278,16 @@ it("gaap.v20180529.DeleteCertificate", async function () {
288
278
  }
289
279
  })
290
280
 
281
+ it("gaap.v20180529.CreateFirstLinkSession", async function () {
282
+ try {
283
+ const data = await client.CreateFirstLinkSession({})
284
+ expect(data).to.be.ok
285
+ } catch(error) {
286
+ expect(error.requestId).to.be.ok
287
+ expect(error.code).to.be.ok
288
+ }
289
+ })
290
+
291
291
  it("gaap.v20180529.DescribeAccessRegionsByDestRegion", async function () {
292
292
  try {
293
293
  const data = await client.DescribeAccessRegionsByDestRegion({})
@@ -348,9 +348,9 @@ it("gaap.v20180529.CreateHTTPListener", async function () {
348
348
  }
349
349
  })
350
350
 
351
- it("gaap.v20180529.DescribeUDPListeners", async function () {
351
+ it("gaap.v20180529.DescribeRulesByRuleIds", async function () {
352
352
  try {
353
- const data = await client.DescribeUDPListeners({})
353
+ const data = await client.DescribeRulesByRuleIds({})
354
354
  expect(data).to.be.ok
355
355
  } catch(error) {
356
356
  expect(error.requestId).to.be.ok
@@ -398,9 +398,9 @@ it("gaap.v20180529.DescribeRealServerStatistics", async function () {
398
398
  }
399
399
  })
400
400
 
401
- it("gaap.v20180529.DescribeHTTPListeners", async function () {
401
+ it("gaap.v20180529.DescribeUDPListeners", async function () {
402
402
  try {
403
- const data = await client.DescribeHTTPListeners({})
403
+ const data = await client.DescribeUDPListeners({})
404
404
  expect(data).to.be.ok
405
405
  } catch(error) {
406
406
  expect(error.requestId).to.be.ok
@@ -558,6 +558,16 @@ it("gaap.v20180529.OpenProxies", async function () {
558
558
  }
559
559
  })
560
560
 
561
+ it("gaap.v20180529.DescribeHTTPListeners", async function () {
562
+ try {
563
+ const data = await client.DescribeHTTPListeners({})
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
+
561
571
  it("gaap.v20180529.ModifyUDPListenerAttribute", async function () {
562
572
  try {
563
573
  const data = await client.ModifyUDPListenerAttribute({})
@@ -638,6 +648,26 @@ it("gaap.v20180529.DescribeCertificateDetail", async function () {
638
648
  }
639
649
  })
640
650
 
651
+ it("gaap.v20180529.DescribeFirstLinkSession", async function () {
652
+ try {
653
+ const data = await client.DescribeFirstLinkSession({})
654
+ expect(data).to.be.ok
655
+ } catch(error) {
656
+ expect(error.requestId).to.be.ok
657
+ expect(error.code).to.be.ok
658
+ }
659
+ })
660
+
661
+ it("gaap.v20180529.DeleteFirstLinkSession", async function () {
662
+ try {
663
+ const data = await client.DeleteFirstLinkSession({})
664
+ expect(data).to.be.ok
665
+ } catch(error) {
666
+ expect(error.requestId).to.be.ok
667
+ expect(error.code).to.be.ok
668
+ }
669
+ })
670
+
641
671
  it("gaap.v20180529.DescribeRegionAndPrice", async function () {
642
672
  try {
643
673
  const data = await client.DescribeRegionAndPrice({})