tencentcloud-sdk-nodejs 4.0.802 → 4.0.803

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 (37) hide show
  1. package/CHANGELOG.md +114 -0
  2. package/SERVICE_CHANGELOG.md +152 -221
  3. package/package.json +1 -1
  4. package/products.md +13 -13
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ckafka/v20190819/ckafka_models.ts +17 -17
  7. package/src/services/csip/v20221121/csip_client.ts +16 -3
  8. package/src/services/csip/v20221121/csip_models.ts +305 -265
  9. package/src/services/ess/v20201111/ess_models.ts +3 -2
  10. package/src/services/essbasic/v20210526/essbasic_models.ts +9 -2
  11. package/src/services/iotvideo/v20211125/iotvideo_models.ts +1 -1
  12. package/src/services/monitor/v20180724/monitor_models.ts +10 -0
  13. package/src/services/omics/v20221128/omics_client.ts +74 -13
  14. package/src/services/omics/v20221128/omics_models.ts +247 -8
  15. package/src/services/trp/v20210515/trp_models.ts +8 -0
  16. package/src/services/tse/v20201207/tse_client.ts +73 -21
  17. package/src/services/tse/v20201207/tse_models.ts +447 -93
  18. package/tencentcloud/common/sdk_version.d.ts +1 -1
  19. package/tencentcloud/common/sdk_version.js +1 -1
  20. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +17 -17
  21. package/tencentcloud/services/csip/v20221121/csip_client.d.ts +5 -1
  22. package/tencentcloud/services/csip/v20221121/csip_client.js +6 -0
  23. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +301 -264
  24. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +3 -2
  25. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +9 -2
  26. package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +1 -1
  27. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +10 -0
  28. package/tencentcloud/services/omics/v20221128/omics_client.d.ts +25 -5
  29. package/tencentcloud/services/omics/v20221128/omics_client.js +36 -6
  30. package/tencentcloud/services/omics/v20221128/omics_models.d.ts +236 -8
  31. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +8 -0
  32. package/tencentcloud/services/tse/v20201207/tse_client.d.ts +21 -5
  33. package/tencentcloud/services/tse/v20201207/tse_client.js +30 -6
  34. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +435 -93
  35. package/test/csip.v20221121.test.js +10 -0
  36. package/test/omics.v20221128.test.js +54 -4
  37. package/test/tse.v20201207.test.js +44 -4
@@ -228,6 +228,16 @@ it("csip.v20221121.DescribeGatewayAssets", async function () {
228
228
  }
229
229
  })
230
230
 
231
+ it("csip.v20221121.DescribeTopAttackInfo", async function () {
232
+ try {
233
+ const data = await client.DescribeTopAttackInfo({})
234
+ expect(data).to.be.ok
235
+ } catch(error) {
236
+ expect(error.requestId).to.be.ok
237
+ expect(error.code).to.be.ok
238
+ }
239
+ })
240
+
231
241
  it("csip.v20221121.DescribeSearchBugInfo", async function () {
232
242
  try {
233
243
  const data = await client.DescribeSearchBugInfo({})
@@ -18,6 +18,26 @@ const client = new tencentcloud.omics.v20221128.Client({
18
18
  })
19
19
  describe("omics.v20221128.test.js", function () {
20
20
 
21
+ it("omics.v20221128.ImportTableFile", async function () {
22
+ try {
23
+ const data = await client.ImportTableFile({})
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
+
31
+ it("omics.v20221128.DescribeRunGroups", async function () {
32
+ try {
33
+ const data = await client.DescribeRunGroups({})
34
+ expect(data).to.be.ok
35
+ } catch(error) {
36
+ expect(error.requestId).to.be.ok
37
+ expect(error.code).to.be.ok
38
+ }
39
+ })
40
+
21
41
  it("omics.v20221128.DescribeTablesRows", async function () {
22
42
  try {
23
43
  const data = await client.DescribeTablesRows({})
@@ -28,6 +48,16 @@ it("omics.v20221128.DescribeTablesRows", async function () {
28
48
  }
29
49
  })
30
50
 
51
+ it("omics.v20221128.DeleteVolumeData", async function () {
52
+ try {
53
+ const data = await client.DeleteVolumeData({})
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
+
31
61
  it("omics.v20221128.DescribeEnvironments", async function () {
32
62
  try {
33
63
  const data = await client.DescribeEnvironments({})
@@ -48,9 +78,19 @@ it("omics.v20221128.GetRunMetadataFile", async function () {
48
78
  }
49
79
  })
50
80
 
51
- it("omics.v20221128.ImportTableFile", async function () {
81
+ it("omics.v20221128.CreateVolume", async function () {
52
82
  try {
53
- const data = await client.ImportTableFile({})
83
+ const data = await client.CreateVolume({})
84
+ expect(data).to.be.ok
85
+ } catch(error) {
86
+ expect(error.requestId).to.be.ok
87
+ expect(error.code).to.be.ok
88
+ }
89
+ })
90
+
91
+ it("omics.v20221128.DescribeVolumes", async function () {
92
+ try {
93
+ const data = await client.DescribeVolumes({})
54
94
  expect(data).to.be.ok
55
95
  } catch(error) {
56
96
  expect(error.requestId).to.be.ok
@@ -128,9 +168,19 @@ it("omics.v20221128.DescribeRuns", async function () {
128
168
  }
129
169
  })
130
170
 
131
- it("omics.v20221128.DescribeRunGroups", async function () {
171
+ it("omics.v20221128.DeleteVolume", async function () {
132
172
  try {
133
- const data = await client.DescribeRunGroups({})
173
+ const data = await client.DeleteVolume({})
174
+ expect(data).to.be.ok
175
+ } catch(error) {
176
+ expect(error.requestId).to.be.ok
177
+ expect(error.code).to.be.ok
178
+ }
179
+ })
180
+
181
+ it("omics.v20221128.ModifyVolume", async function () {
182
+ try {
183
+ const data = await client.ModifyVolume({})
134
184
  expect(data).to.be.ok
135
185
  } catch(error) {
136
186
  expect(error.requestId).to.be.ok
@@ -178,9 +178,9 @@ it("tse.v20201207.UnbindAutoScalerResourceStrategyFromGroups", async function ()
178
178
  }
179
179
  })
180
180
 
181
- it("tse.v20201207.BindAutoScalerResourceStrategyToGroups", async function () {
181
+ it("tse.v20201207.DeleteCloudNativeAPIGatewayPublicNetwork", async function () {
182
182
  try {
183
- const data = await client.BindAutoScalerResourceStrategyToGroups({})
183
+ const data = await client.DeleteCloudNativeAPIGatewayPublicNetwork({})
184
184
  expect(data).to.be.ok
185
185
  } catch(error) {
186
186
  expect(error.requestId).to.be.ok
@@ -198,9 +198,9 @@ it("tse.v20201207.DeleteWafDomains", async function () {
198
198
  }
199
199
  })
200
200
 
201
- it("tse.v20201207.DeleteCloudNativeAPIGatewayPublicNetwork", async function () {
201
+ it("tse.v20201207.BindAutoScalerResourceStrategyToGroups", async function () {
202
202
  try {
203
- const data = await client.DeleteCloudNativeAPIGatewayPublicNetwork({})
203
+ const data = await client.BindAutoScalerResourceStrategyToGroups({})
204
204
  expect(data).to.be.ok
205
205
  } catch(error) {
206
206
  expect(error.requestId).to.be.ok
@@ -408,6 +408,16 @@ it("tse.v20201207.CloseWafProtection", async function () {
408
408
  }
409
409
  })
410
410
 
411
+ it("tse.v20201207.ModifyGovernanceInstances", async function () {
412
+ try {
413
+ const data = await client.ModifyGovernanceInstances({})
414
+ expect(data).to.be.ok
415
+ } catch(error) {
416
+ expect(error.requestId).to.be.ok
417
+ expect(error.code).to.be.ok
418
+ }
419
+ })
420
+
411
421
  it("tse.v20201207.CreateCloudNativeAPIGateway", async function () {
412
422
  try {
413
423
  const data = await client.CreateCloudNativeAPIGateway({})
@@ -438,6 +448,16 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayRouteRateLimit", async function (
438
448
  }
439
449
  })
440
450
 
451
+ it("tse.v20201207.DeleteGovernanceInstances", async function () {
452
+ try {
453
+ const data = await client.DeleteGovernanceInstances({})
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("tse.v20201207.DescribeWafProtection", async function () {
442
462
  try {
443
463
  const data = await client.DescribeWafProtection({})
@@ -628,6 +648,16 @@ it("tse.v20201207.UpdateCloudNativeAPIGatewayCertificateInfo", async function ()
628
648
  }
629
649
  })
630
650
 
651
+ it("tse.v20201207.CreateGovernanceInstances", async function () {
652
+ try {
653
+ const data = await client.CreateGovernanceInstances({})
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
+
631
661
  it("tse.v20201207.CreateNativeGatewayServerGroup", async function () {
632
662
  try {
633
663
  const data = await client.CreateNativeGatewayServerGroup({})
@@ -738,6 +768,16 @@ it("tse.v20201207.UpdateCloudNativeAPIGatewaySpec", async function () {
738
768
  }
739
769
  })
740
770
 
771
+ it("tse.v20201207.DescribeGovernanceInstances", async function () {
772
+ try {
773
+ const data = await client.DescribeGovernanceInstances({})
774
+ expect(data).to.be.ok
775
+ } catch(error) {
776
+ expect(error.requestId).to.be.ok
777
+ expect(error.code).to.be.ok
778
+ }
779
+ })
780
+
741
781
  it("tse.v20201207.DescribeCloudNativeAPIGatewayServiceRateLimit", async function () {
742
782
  try {
743
783
  const data = await client.DescribeCloudNativeAPIGatewayServiceRateLimit({})