tencentcloud-sdk-nodejs 4.0.775 → 4.0.777

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 (61) hide show
  1. package/CHANGELOG.md +351 -0
  2. package/SERVICE_CHANGELOG.md +384 -24
  3. package/package.json +1 -1
  4. package/products.md +21 -21
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/billing/v20180709/billing_client.ts +15 -1
  7. package/src/services/billing/v20180709/billing_models.ts +186 -9
  8. package/src/services/cfs/v20190719/cfs_models.ts +4 -0
  9. package/src/services/cfw/v20190904/cfw_client.ts +1 -0
  10. package/src/services/cfw/v20190904/cfw_models.ts +40 -0
  11. package/src/services/cvm/v20170312/cvm_models.ts +2 -2
  12. package/src/services/cynosdb/v20190107/cynosdb_client.ts +3 -1
  13. package/src/services/cynosdb/v20190107/cynosdb_models.ts +69 -6
  14. package/src/services/dnspod/v20210323/dnspod_models.ts +4 -0
  15. package/src/services/dts/v20211206/dts_client.ts +307 -24
  16. package/src/services/dts/v20211206/dts_models.ts +1721 -402
  17. package/src/services/ess/v20201111/ess_models.ts +16 -9
  18. package/src/services/essbasic/v20210526/essbasic_client.ts +1 -1
  19. package/src/services/essbasic/v20210526/essbasic_models.ts +146 -180
  20. package/src/services/monitor/v20180724/monitor_models.ts +4 -0
  21. package/src/services/mps/v20190612/mps_models.ts +28 -1
  22. package/src/services/ocr/v20181119/ocr_models.ts +2 -0
  23. package/src/services/rum/v20210622/rum_client.ts +28 -64
  24. package/src/services/rum/v20210622/rum_models.ts +46 -134
  25. package/src/services/tione/v20211111/tione_models.ts +124 -68
  26. package/src/services/trtc/v20190722/trtc_models.ts +10 -2
  27. package/src/services/vod/v20180717/vod_client.ts +101 -13
  28. package/src/services/vod/v20180717/vod_models.ts +433 -132
  29. package/tencentcloud/common/sdk_version.d.ts +1 -1
  30. package/tencentcloud/common/sdk_version.js +1 -1
  31. package/tencentcloud/services/billing/v20180709/billing_client.d.ts +5 -1
  32. package/tencentcloud/services/billing/v20180709/billing_client.js +6 -0
  33. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +182 -9
  34. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +4 -0
  35. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +39 -0
  36. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +2 -2
  37. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +1 -1
  38. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +67 -6
  39. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +4 -0
  40. package/tencentcloud/services/dts/v20211206/dts_client.d.ts +96 -3
  41. package/tencentcloud/services/dts/v20211206/dts_client.js +140 -3
  42. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +1677 -416
  43. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +16 -9
  44. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -1
  45. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -1
  46. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +146 -180
  47. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +4 -0
  48. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +28 -1
  49. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +2 -0
  50. package/tencentcloud/services/rum/v20210622/rum_client.d.ts +9 -21
  51. package/tencentcloud/services/rum/v20210622/rum_client.js +12 -30
  52. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +46 -128
  53. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +124 -68
  54. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +10 -2
  55. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +31 -3
  56. package/tencentcloud/services/vod/v20180717/vod_client.js +45 -3
  57. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +415 -132
  58. package/test/billing.v20180709.test.js +10 -0
  59. package/test/dts.v20211206.test.js +222 -2
  60. package/test/rum.v20210622.test.js +8 -38
  61. package/test/vod.v20180717.test.js +72 -2
@@ -68,6 +68,16 @@ it("billing.v20180709.DescribeSavingPlanOverview", async function () {
68
68
  }
69
69
  })
70
70
 
71
+ it("billing.v20180709.DescribeDosageDetailList", async function () {
72
+ try {
73
+ const data = await client.DescribeDosageDetailList({})
74
+ expect(data).to.be.ok
75
+ } catch(error) {
76
+ expect(error.requestId).to.be.ok
77
+ expect(error.code).to.be.ok
78
+ }
79
+ })
80
+
71
81
  it("billing.v20180709.CreateAllocationTag", async function () {
72
82
  try {
73
83
  const data = await client.CreateAllocationTag({})
@@ -18,6 +18,36 @@ const client = new tencentcloud.dts.v20211206.Client({
18
18
  })
19
19
  describe("dts.v20211206.test.js", function () {
20
20
 
21
+ it("dts.v20211206.ResumeSubscribe", async function () {
22
+ try {
23
+ const data = await client.ResumeSubscribe({})
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("dts.v20211206.SkipSyncCheckItem", async function () {
32
+ try {
33
+ const data = await client.SkipSyncCheckItem({})
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
+
41
+ it("dts.v20211206.DestroyIsolatedSubscribe", async function () {
42
+ try {
43
+ const data = await client.DestroyIsolatedSubscribe({})
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
+
21
51
  it("dts.v20211206.CreateModifyCheckSyncJob", async function () {
22
52
  try {
23
53
  const data = await client.CreateModifyCheckSyncJob({})
@@ -68,6 +98,16 @@ it("dts.v20211206.CreateMigrationService", async function () {
68
98
  }
69
99
  })
70
100
 
101
+ it("dts.v20211206.DescribeSubscribeJobs", async function () {
102
+ try {
103
+ const data = await client.DescribeSubscribeJobs({})
104
+ expect(data).to.be.ok
105
+ } catch(error) {
106
+ expect(error.requestId).to.be.ok
107
+ expect(error.code).to.be.ok
108
+ }
109
+ })
110
+
71
111
  it("dts.v20211206.ModifyMigrateRateLimit", async function () {
72
112
  try {
73
113
  const data = await client.ModifyMigrateRateLimit({})
@@ -78,6 +118,16 @@ it("dts.v20211206.ModifyMigrateRateLimit", async function () {
78
118
  }
79
119
  })
80
120
 
121
+ it("dts.v20211206.DescribeSubscribeReturnable", async function () {
122
+ try {
123
+ const data = await client.DescribeSubscribeReturnable({})
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
+
81
131
  it("dts.v20211206.IsolateSyncJob", async function () {
82
132
  try {
83
133
  const data = await client.IsolateSyncJob({})
@@ -108,6 +158,46 @@ it("dts.v20211206.CreateSyncJob", async function () {
108
158
  }
109
159
  })
110
160
 
161
+ it("dts.v20211206.ConfigureSubscribeJob", async function () {
162
+ try {
163
+ const data = await client.ConfigureSubscribeJob({})
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
+
171
+ it("dts.v20211206.DescribeConsumerGroups", async function () {
172
+ try {
173
+ const data = await client.DescribeConsumerGroups({})
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("dts.v20211206.CreateConsumerGroup", async function () {
182
+ try {
183
+ const data = await client.CreateConsumerGroup({})
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
+ it("dts.v20211206.ResetConsumerGroupOffset", async function () {
192
+ try {
193
+ const data = await client.ResetConsumerGroupOffset({})
194
+ expect(data).to.be.ok
195
+ } catch(error) {
196
+ expect(error.requestId).to.be.ok
197
+ expect(error.code).to.be.ok
198
+ }
199
+ })
200
+
111
201
  it("dts.v20211206.DeleteCompareTask", async function () {
112
202
  try {
113
203
  const data = await client.DeleteCompareTask({})
@@ -118,6 +208,16 @@ it("dts.v20211206.DeleteCompareTask", async function () {
118
208
  }
119
209
  })
120
210
 
211
+ it("dts.v20211206.StartSubscribe", async function () {
212
+ try {
213
+ const data = await client.StartSubscribe({})
214
+ expect(data).to.be.ok
215
+ } catch(error) {
216
+ expect(error.requestId).to.be.ok
217
+ expect(error.code).to.be.ok
218
+ }
219
+ })
220
+
121
221
  it("dts.v20211206.StartSyncJob", async function () {
122
222
  try {
123
223
  const data = await client.StartSyncJob({})
@@ -178,9 +278,9 @@ it("dts.v20211206.PauseMigrateJob", async function () {
178
278
  }
179
279
  })
180
280
 
181
- it("dts.v20211206.SkipSyncCheckItem", async function () {
281
+ it("dts.v20211206.ModifySubscribeObjects", async function () {
182
282
  try {
183
- const data = await client.SkipSyncCheckItem({})
283
+ const data = await client.ModifySubscribeObjects({})
184
284
  expect(data).to.be.ok
185
285
  } catch(error) {
186
286
  expect(error.requestId).to.be.ok
@@ -198,6 +298,16 @@ it("dts.v20211206.ConfigureSyncJob", async function () {
198
298
  }
199
299
  })
200
300
 
301
+ it("dts.v20211206.IsolateSubscribe", async function () {
302
+ try {
303
+ const data = await client.IsolateSubscribe({})
304
+ expect(data).to.be.ok
305
+ } catch(error) {
306
+ expect(error.requestId).to.be.ok
307
+ expect(error.code).to.be.ok
308
+ }
309
+ })
310
+
201
311
  it("dts.v20211206.StartModifySyncJob", async function () {
202
312
  try {
203
313
  const data = await client.StartModifySyncJob({})
@@ -218,6 +328,16 @@ it("dts.v20211206.ResizeSyncJob", async function () {
218
328
  }
219
329
  })
220
330
 
331
+ it("dts.v20211206.ModifySubscribeAutoRenewFlag", async function () {
332
+ try {
333
+ const data = await client.ModifySubscribeAutoRenewFlag({})
334
+ expect(data).to.be.ok
335
+ } catch(error) {
336
+ expect(error.requestId).to.be.ok
337
+ expect(error.code).to.be.ok
338
+ }
339
+ })
340
+
221
341
  it("dts.v20211206.ModifySyncJobConfig", async function () {
222
342
  try {
223
343
  const data = await client.ModifySyncJobConfig({})
@@ -278,6 +398,16 @@ it("dts.v20211206.StartCompare", async function () {
278
398
  }
279
399
  })
280
400
 
401
+ it("dts.v20211206.DescribeSubscribeCheckJob", async function () {
402
+ try {
403
+ const data = await client.DescribeSubscribeCheckJob({})
404
+ expect(data).to.be.ok
405
+ } catch(error) {
406
+ expect(error.requestId).to.be.ok
407
+ expect(error.code).to.be.ok
408
+ }
409
+ })
410
+
281
411
  it("dts.v20211206.ContinueSyncJob", async function () {
282
412
  try {
283
413
  const data = await client.ContinueSyncJob({})
@@ -298,6 +428,16 @@ it("dts.v20211206.IsolateMigrateJob", async function () {
298
428
  }
299
429
  })
300
430
 
431
+ it("dts.v20211206.ModifyConsumerGroupDescription", async function () {
432
+ try {
433
+ const data = await client.ModifyConsumerGroupDescription({})
434
+ expect(data).to.be.ok
435
+ } catch(error) {
436
+ expect(error.requestId).to.be.ok
437
+ expect(error.code).to.be.ok
438
+ }
439
+ })
440
+
301
441
  it("dts.v20211206.DescribeMigrateDBInstances", async function () {
302
442
  try {
303
443
  const data = await client.DescribeMigrateDBInstances({})
@@ -318,6 +458,26 @@ it("dts.v20211206.SkipCheckItem", async function () {
318
458
  }
319
459
  })
320
460
 
461
+ it("dts.v20211206.ModifyConsumerGroupPassword", async function () {
462
+ try {
463
+ const data = await client.ModifyConsumerGroupPassword({})
464
+ expect(data).to.be.ok
465
+ } catch(error) {
466
+ expect(error.requestId).to.be.ok
467
+ expect(error.code).to.be.ok
468
+ }
469
+ })
470
+
471
+ it("dts.v20211206.CreateSubscribeCheckJob", async function () {
472
+ try {
473
+ const data = await client.CreateSubscribeCheckJob({})
474
+ expect(data).to.be.ok
475
+ } catch(error) {
476
+ expect(error.requestId).to.be.ok
477
+ expect(error.code).to.be.ok
478
+ }
479
+ })
480
+
321
481
  it("dts.v20211206.CreateMigrateCheckJob", async function () {
322
482
  try {
323
483
  const data = await client.CreateMigrateCheckJob({})
@@ -358,6 +518,26 @@ it("dts.v20211206.ModifyCompareTask", async function () {
358
518
  }
359
519
  })
360
520
 
521
+ it("dts.v20211206.DescribeSubscribeDetail", async function () {
522
+ try {
523
+ const data = await client.DescribeSubscribeDetail({})
524
+ expect(data).to.be.ok
525
+ } catch(error) {
526
+ expect(error.requestId).to.be.ok
527
+ expect(error.code).to.be.ok
528
+ }
529
+ })
530
+
531
+ it("dts.v20211206.DeleteConsumerGroup", async function () {
532
+ try {
533
+ const data = await client.DeleteConsumerGroup({})
534
+ expect(data).to.be.ok
535
+ } catch(error) {
536
+ expect(error.requestId).to.be.ok
537
+ expect(error.code).to.be.ok
538
+ }
539
+ })
540
+
361
541
  it("dts.v20211206.DescribeMigrationJobs", async function () {
362
542
  try {
363
543
  const data = await client.DescribeMigrationJobs({})
@@ -378,6 +558,16 @@ it("dts.v20211206.RecoverMigrateJob", async function () {
378
558
  }
379
559
  })
380
560
 
561
+ it("dts.v20211206.CreateSubscribe", async function () {
562
+ try {
563
+ const data = await client.CreateSubscribe({})
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
+
381
571
  it("dts.v20211206.RecoverSyncJob", async function () {
382
572
  try {
383
573
  const data = await client.RecoverSyncJob({})
@@ -388,6 +578,16 @@ it("dts.v20211206.RecoverSyncJob", async function () {
388
578
  }
389
579
  })
390
580
 
581
+ it("dts.v20211206.ResetSubscribe", async function () {
582
+ try {
583
+ const data = await client.ResetSubscribe({})
584
+ expect(data).to.be.ok
585
+ } catch(error) {
586
+ expect(error.requestId).to.be.ok
587
+ expect(error.code).to.be.ok
588
+ }
589
+ })
590
+
391
591
  it("dts.v20211206.CreateCompareTask", async function () {
392
592
  try {
393
593
  const data = await client.CreateCompareTask({})
@@ -408,6 +608,16 @@ it("dts.v20211206.DescribeModifyCheckSyncJobResult", async function () {
408
608
  }
409
609
  })
410
610
 
611
+ it("dts.v20211206.ModifySubscribeName", async function () {
612
+ try {
613
+ const data = await client.ModifySubscribeName({})
614
+ expect(data).to.be.ok
615
+ } catch(error) {
616
+ expect(error.requestId).to.be.ok
617
+ expect(error.code).to.be.ok
618
+ }
619
+ })
620
+
411
621
  it("dts.v20211206.DestroyMigrateJob", async function () {
412
622
  try {
413
623
  const data = await client.DestroyMigrateJob({})
@@ -428,6 +638,16 @@ it("dts.v20211206.DescribeMigrationDetail", async function () {
428
638
  }
429
639
  })
430
640
 
641
+ it("dts.v20211206.DescribeOffsetByTime", async function () {
642
+ try {
643
+ const data = await client.DescribeOffsetByTime({})
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
+
431
651
  it("dts.v20211206.ResumeSyncJob", async function () {
432
652
  try {
433
653
  const data = await client.ResumeSyncJob({})
@@ -98,9 +98,9 @@ it("rum.v20210622.DescribeDataLogUrlStatistics", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("rum.v20210622.DeleteOfflineLogConfig", async function () {
101
+ it("rum.v20210622.DescribeDataFetchProject", async function () {
102
102
  try {
103
- const data = await client.DeleteOfflineLogConfig({})
103
+ const data = await client.DescribeDataFetchProject({})
104
104
  expect(data).to.be.ok
105
105
  } catch(error) {
106
106
  expect(error.requestId).to.be.ok
@@ -198,16 +198,6 @@ it("rum.v20210622.DescribeLogList", async function () {
198
198
  }
199
199
  })
200
200
 
201
- it("rum.v20210622.DescribeOfflineLogs", async function () {
202
- try {
203
- const data = await client.DescribeOfflineLogs({})
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
-
211
201
  it("rum.v20210622.DescribeAppSingleCaseList", async function () {
212
202
  try {
213
203
  const data = await client.DescribeAppSingleCaseList({})
@@ -558,9 +548,9 @@ it("rum.v20210622.CreateProject", async function () {
558
548
  }
559
549
  })
560
550
 
561
- it("rum.v20210622.DescribeDataReportCount", async function () {
551
+ it("rum.v20210622.DescribeDataStaticProject", async function () {
562
552
  try {
563
- const data = await client.DescribeDataReportCount({})
553
+ const data = await client.DescribeDataStaticProject({})
564
554
  expect(data).to.be.ok
565
555
  } catch(error) {
566
556
  expect(error.requestId).to.be.ok
@@ -578,16 +568,6 @@ it("rum.v20210622.DescribeDataPvUrlInfo", async function () {
578
568
  }
579
569
  })
580
570
 
581
- it("rum.v20210622.DescribeDataStaticProject", async function () {
582
- try {
583
- const data = await client.DescribeDataStaticProject({})
584
- expect(data).to.be.ok
585
- } catch(error) {
586
- expect(error.requestId).to.be.ok
587
- expect(error.code).to.be.ok
588
- }
589
- })
590
-
591
571
  it("rum.v20210622.DeleteProject", async function () {
592
572
  try {
593
573
  const data = await client.DeleteProject({})
@@ -598,16 +578,6 @@ it("rum.v20210622.DeleteProject", async function () {
598
578
  }
599
579
  })
600
580
 
601
- it("rum.v20210622.DescribeOfflineLogRecords", async function () {
602
- try {
603
- const data = await client.DescribeOfflineLogRecords({})
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
-
611
581
  it("rum.v20210622.DescribeUvList", async function () {
612
582
  try {
613
583
  const data = await client.DescribeUvList({})
@@ -618,9 +588,9 @@ it("rum.v20210622.DescribeUvList", async function () {
618
588
  }
619
589
  })
620
590
 
621
- it("rum.v20210622.DescribeDataFetchProject", async function () {
591
+ it("rum.v20210622.DeleteOfflineLogConfig", async function () {
622
592
  try {
623
- const data = await client.DescribeDataFetchProject({})
593
+ const data = await client.DeleteOfflineLogConfig({})
624
594
  expect(data).to.be.ok
625
595
  } catch(error) {
626
596
  expect(error.requestId).to.be.ok
@@ -638,9 +608,9 @@ it("rum.v20210622.DeleteReleaseFile", async function () {
638
608
  }
639
609
  })
640
610
 
641
- it("rum.v20210622.CreateOfflineLogConfig", async function () {
611
+ it("rum.v20210622.DescribeDataReportCount", async function () {
642
612
  try {
643
- const data = await client.CreateOfflineLogConfig({})
613
+ const data = await client.DescribeDataReportCount({})
644
614
  expect(data).to.be.ok
645
615
  } catch(error) {
646
616
  expect(error.requestId).to.be.ok
@@ -28,6 +28,16 @@ it("vod.v20180717.CreateImageProcessingTemplate", async function () {
28
28
  }
29
29
  })
30
30
 
31
+ it("vod.v20180717.DescribeCLSLogsets", async function () {
32
+ try {
33
+ const data = await client.DescribeCLSLogsets({})
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
+
31
41
  it("vod.v20180717.CreateRoundPlay", async function () {
32
42
  try {
33
43
  const data = await client.CreateRoundPlay({})
@@ -308,9 +318,19 @@ it("vod.v20180717.DescribeCdnLogs", async function () {
308
318
  }
309
319
  })
310
320
 
311
- it("vod.v20180717.ModifyClass", async function () {
321
+ it("vod.v20180717.CreateCLSLogset", async function () {
312
322
  try {
313
- const data = await client.ModifyClass({})
323
+ const data = await client.CreateCLSLogset({})
324
+ expect(data).to.be.ok
325
+ } catch(error) {
326
+ expect(error.requestId).to.be.ok
327
+ expect(error.code).to.be.ok
328
+ }
329
+ })
330
+
331
+ it("vod.v20180717.SetCLSPushTarget", async function () {
332
+ try {
333
+ const data = await client.SetCLSPushTarget({})
314
334
  expect(data).to.be.ok
315
335
  } catch(error) {
316
336
  expect(error.requestId).to.be.ok
@@ -338,6 +358,16 @@ it("vod.v20180717.CreateStorageRegion", async function () {
338
358
  }
339
359
  })
340
360
 
361
+ it("vod.v20180717.DeleteCLSTopic", async function () {
362
+ try {
363
+ const data = await client.DeleteCLSTopic({})
364
+ expect(data).to.be.ok
365
+ } catch(error) {
366
+ expect(error.requestId).to.be.ok
367
+ expect(error.code).to.be.ok
368
+ }
369
+ })
370
+
341
371
  it("vod.v20180717.ResetProcedureTemplate", async function () {
342
372
  try {
343
373
  const data = await client.ResetProcedureTemplate({})
@@ -738,6 +768,16 @@ it("vod.v20180717.DescribeImageReviewUsageData", async function () {
738
768
  }
739
769
  })
740
770
 
771
+ it("vod.v20180717.DescribeCLSPushTargets", async function () {
772
+ try {
773
+ const data = await client.DescribeCLSPushTargets({})
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("vod.v20180717.EnhanceMediaByTemplate", async function () {
742
782
  try {
743
783
  const data = await client.EnhanceMediaByTemplate({})
@@ -808,6 +848,26 @@ it("vod.v20180717.DeleteAnimatedGraphicsTemplate", async function () {
808
848
  }
809
849
  })
810
850
 
851
+ it("vod.v20180717.DescribeCLSTopics", async function () {
852
+ try {
853
+ const data = await client.DescribeCLSTopics({})
854
+ expect(data).to.be.ok
855
+ } catch(error) {
856
+ expect(error.requestId).to.be.ok
857
+ expect(error.code).to.be.ok
858
+ }
859
+ })
860
+
861
+ it("vod.v20180717.CreateCLSTopic", async function () {
862
+ try {
863
+ const data = await client.CreateCLSTopic({})
864
+ expect(data).to.be.ok
865
+ } catch(error) {
866
+ expect(error.requestId).to.be.ok
867
+ expect(error.code).to.be.ok
868
+ }
869
+ })
870
+
811
871
  it("vod.v20180717.DeleteContentReviewTemplate", async function () {
812
872
  try {
813
873
  const data = await client.DeleteContentReviewTemplate({})
@@ -1618,6 +1678,16 @@ it("vod.v20180717.DeleteRoundPlay", async function () {
1618
1678
  }
1619
1679
  })
1620
1680
 
1681
+ it("vod.v20180717.ModifyClass", async function () {
1682
+ try {
1683
+ const data = await client.ModifyClass({})
1684
+ expect(data).to.be.ok
1685
+ } catch(error) {
1686
+ expect(error.requestId).to.be.ok
1687
+ expect(error.code).to.be.ok
1688
+ }
1689
+ })
1690
+
1621
1691
  it("vod.v20180717.ModifyContentReviewTemplate", async function () {
1622
1692
  try {
1623
1693
  const data = await client.ModifyContentReviewTemplate({})