tencentcloud-sdk-nodejs 4.0.680 → 4.0.681

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 (49) hide show
  1. package/CHANGELOG.md +147 -0
  2. package/SERVICE_CHANGELOG.md +193 -260
  3. package/package.json +1 -1
  4. package/products.md +17 -17
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_client.ts +11 -10
  7. package/src/services/asr/v20190614/asr_models.ts +48 -17
  8. package/src/services/ccc/v20200210/ccc_models.ts +3 -3
  9. package/src/services/cfw/v20190904/cfw_client.ts +29 -3
  10. package/src/services/cfw/v20190904/cfw_models.ts +150 -47
  11. package/src/services/clb/v20180317/clb_models.ts +15 -5
  12. package/src/services/dbbrain/v20210527/dbbrain_client.ts +41 -11
  13. package/src/services/dbbrain/v20210527/dbbrain_models.ts +391 -96
  14. package/src/services/dnspod/v20210323/dnspod_models.ts +27 -23
  15. package/src/services/ecm/v20190719/ecm_models.ts +3 -2
  16. package/src/services/live/v20180801/live_client.ts +13 -0
  17. package/src/services/live/v20180801/live_models.ts +47 -0
  18. package/src/services/mps/v20190612/mps_client.ts +6 -1
  19. package/src/services/mps/v20190612/mps_models.ts +153 -38
  20. package/src/services/tsf/v20180326/tsf_client.ts +1 -1
  21. package/src/services/tsf/v20180326/tsf_models.ts +1 -1
  22. package/src/services/vod/v20180717/vod_models.ts +1 -1
  23. package/tencentcloud/common/sdk_version.d.ts +1 -1
  24. package/tencentcloud/common/sdk_version.js +1 -1
  25. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +11 -10
  26. package/tencentcloud/services/asr/v20190614/asr_client.js +11 -10
  27. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +48 -17
  28. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +3 -3
  29. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +10 -1
  30. package/tencentcloud/services/cfw/v20190904/cfw_client.js +13 -0
  31. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +145 -47
  32. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -5
  33. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +11 -3
  34. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +15 -3
  35. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +381 -96
  36. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +27 -23
  37. package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +3 -2
  38. package/tencentcloud/services/live/v20180801/live_client.d.ts +5 -1
  39. package/tencentcloud/services/live/v20180801/live_client.js +6 -0
  40. package/tencentcloud/services/live/v20180801/live_models.d.ts +44 -0
  41. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +1 -1
  42. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +148 -38
  43. package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +1 -1
  44. package/tencentcloud/services/tsf/v20180326/tsf_client.js +1 -1
  45. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -1
  46. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
  47. package/test/cfw.v20190904.test.js +20 -0
  48. package/test/dbbrain.v20210527.test.js +22 -2
  49. package/test/live.v20180801.test.js +10 -0
@@ -158,6 +158,16 @@ it("cfw.v20190904.DeleteAllAccessControlRule", async function () {
158
158
  }
159
159
  })
160
160
 
161
+ it("cfw.v20190904.ModifyEWRuleStatus", async function () {
162
+ try {
163
+ const data = await client.ModifyEWRuleStatus({})
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("cfw.v20190904.DescribeSecurityGroupList", async function () {
162
172
  try {
163
173
  const data = await client.DescribeSecurityGroupList({})
@@ -588,6 +598,16 @@ it("cfw.v20190904.DescribeResourceGroup", async function () {
588
598
  }
589
599
  })
590
600
 
601
+ it("cfw.v20190904.CreateBlockIgnoreRuleList", async function () {
602
+ try {
603
+ const data = await client.CreateBlockIgnoreRuleList({})
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
+
591
611
  it("cfw.v20190904.DescribeEnterpriseSGRuleProgress", async function () {
592
612
  try {
593
613
  const data = await client.DescribeEnterpriseSGRuleProgress({})
@@ -18,6 +18,16 @@ const client = new tencentcloud.dbbrain.v20210527.Client({
18
18
  })
19
19
  describe("dbbrain.v20210527.test.js", function () {
20
20
 
21
+ it("dbbrain.v20210527.DescribeTopSpaceTableTimeSeries", async function () {
22
+ try {
23
+ const data = await client.DescribeTopSpaceTableTimeSeries({})
24
+ expect(data).to.be.ok
25
+ } catch(error) {
26
+ expect(error.requestId).to.be.ok
27
+ expect(error.code).to.be.ok
28
+ }
29
+ })
30
+
21
31
  it("dbbrain.v20210527.DescribeSecurityAuditLogDownloadUrls", async function () {
22
32
  try {
23
33
  const data = await client.DescribeSecurityAuditLogDownloadUrls({})
@@ -438,6 +448,16 @@ it("dbbrain.v20210527.DeleteSqlFilters", async function () {
438
448
  }
439
449
  })
440
450
 
451
+ it("dbbrain.v20210527.ModifyAlarmPolicy", async function () {
452
+ try {
453
+ const data = await client.ModifyAlarmPolicy({})
454
+ expect(data).to.be.ok
455
+ } catch(error) {
456
+ expect(error.requestId).to.be.ok
457
+ expect(error.code).to.be.ok
458
+ }
459
+ })
460
+
441
461
  it("dbbrain.v20210527.OpenAuditService", async function () {
442
462
  try {
443
463
  const data = await client.OpenAuditService({})
@@ -518,9 +538,9 @@ it("dbbrain.v20210527.DescribeSqlFilters", async function () {
518
538
  }
519
539
  })
520
540
 
521
- it("dbbrain.v20210527.DescribeTopSpaceTableTimeSeries", async function () {
541
+ it("dbbrain.v20210527.DescribeAlarmTemplate", async function () {
522
542
  try {
523
- const data = await client.DescribeTopSpaceTableTimeSeries({})
543
+ const data = await client.DescribeAlarmTemplate({})
524
544
  expect(data).to.be.ok
525
545
  } catch(error) {
526
546
  expect(error.requestId).to.be.ok
@@ -668,6 +668,16 @@ it("live.v20180801.ModifyLiveDomainCertBindings", async function () {
668
668
  }
669
669
  })
670
670
 
671
+ it("live.v20180801.DescribeDeliverLogDownList", async function () {
672
+ try {
673
+ const data = await client.DescribeDeliverLogDownList({})
674
+ expect(data).to.be.ok
675
+ } catch(error) {
676
+ expect(error.requestId).to.be.ok
677
+ expect(error.code).to.be.ok
678
+ }
679
+ })
680
+
671
681
  it("live.v20180801.DescribeLiveDomains", async function () {
672
682
  try {
673
683
  const data = await client.DescribeLiveDomains({})