tencentcloud-sdk-nodejs 4.0.481 → 4.0.482

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 (56) hide show
  1. package/CHANGELOG.md +325 -0
  2. package/SERVICE_CHANGELOG.md +612 -10
  3. package/package.json +1 -1
  4. package/products.md +19 -19
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cdb/v20170320/cdb_client.ts +1 -1
  7. package/src/services/cvm/v20170312/cvm_models.ts +5 -5
  8. package/src/services/dcdb/v20180411/dcdb_client.ts +1 -1
  9. package/src/services/dnspod/v20210323/dnspod_models.ts +2 -2
  10. package/src/services/ess/v20201111/ess_models.ts +14 -4
  11. package/src/services/essbasic/v20210526/essbasic_client.ts +4 -3
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +46 -6
  13. package/src/services/gme/v20180711/gme_client.ts +5 -4
  14. package/src/services/gme/v20180711/gme_models.ts +1 -1
  15. package/src/services/mariadb/v20170312/mariadb_client.ts +1 -1
  16. package/src/services/ocr/v20181119/ocr_models.ts +5 -0
  17. package/src/services/tdmq/v20200217/tdmq_client.ts +1 -0
  18. package/src/services/tdmq/v20200217/tdmq_models.ts +28 -1
  19. package/src/services/tione/v20211111/tione_models.ts +1 -1
  20. package/src/services/tms/v20201229/tms_client.ts +1 -0
  21. package/src/services/tms/v20201229/tms_models.ts +29 -0
  22. package/src/services/trp/v20210515/trp_models.ts +13 -4
  23. package/src/services/trtc/v20190722/trtc_models.ts +3 -3
  24. package/src/services/vod/v20180717/vod_models.ts +22 -0
  25. package/src/services/vpc/v20170312/vpc_models.ts +10 -0
  26. package/src/services/wedata/v20210820/wedata_client.ts +790 -82
  27. package/src/services/wedata/v20210820/wedata_models.ts +5614 -1129
  28. package/tencentcloud/common/sdk_version.d.ts +1 -1
  29. package/tencentcloud/common/sdk_version.js +1 -1
  30. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -1
  31. package/tencentcloud/services/cdb/v20170320/cdb_client.js +1 -1
  32. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +4 -4
  33. package/tencentcloud/services/dcdb/v20180411/dcdb_client.d.ts +1 -1
  34. package/tencentcloud/services/dcdb/v20180411/dcdb_client.js +1 -1
  35. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +2 -2
  36. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +12 -4
  37. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +4 -3
  38. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +4 -3
  39. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +39 -6
  40. package/tencentcloud/services/gme/v20180711/gme_client.d.ts +5 -4
  41. package/tencentcloud/services/gme/v20180711/gme_client.js +5 -4
  42. package/tencentcloud/services/gme/v20180711/gme_models.d.ts +1 -1
  43. package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +1 -1
  44. package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +1 -1
  45. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +4 -0
  46. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +24 -1
  47. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +1 -1
  48. package/tencentcloud/services/tms/v20201229/tms_models.d.ts +25 -0
  49. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +13 -4
  50. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +3 -3
  51. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +19 -0
  52. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +9 -0
  53. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +242 -23
  54. package/tencentcloud/services/wedata/v20210820/wedata_client.js +356 -29
  55. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +5154 -1338
  56. package/test/wedata.v20210820.test.js +554 -14
@@ -48,6 +48,36 @@ it("wedata.v20210820.DeleteIntegrationTask", async function () {
48
48
  }
49
49
  })
50
50
 
51
+ it("wedata.v20210820.CheckDuplicateRuleName", async function () {
52
+ try {
53
+ const data = await client.CheckDuplicateRuleName({})
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
+
61
+ it("wedata.v20210820.RunTask", async function () {
62
+ try {
63
+ const data = await client.RunTask({})
64
+ expect(data).to.be.ok
65
+ } catch(error) {
66
+ expect(error.requestId).to.be.ok
67
+ expect(error.code).to.be.ok
68
+ }
69
+ })
70
+
71
+ it("wedata.v20210820.CreateRuleTemplate", async function () {
72
+ try {
73
+ const data = await client.CreateRuleTemplate({})
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
+
51
81
  it("wedata.v20210820.DescribeRealTimeTaskMetricOverview", async function () {
52
82
  try {
53
83
  const data = await client.DescribeRealTimeTaskMetricOverview({})
@@ -68,9 +98,19 @@ it("wedata.v20210820.GetOfflineInstanceList", async function () {
68
98
  }
69
99
  })
70
100
 
71
- it("wedata.v20210820.MakeUpTasksNew", async function () {
101
+ it("wedata.v20210820.DescribeDataCheckStat", async function () {
72
102
  try {
73
- const data = await client.MakeUpTasksNew({})
103
+ const data = await client.DescribeDataCheckStat({})
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
+
111
+ it("wedata.v20210820.DescribeRuleExecResultsByPage", async function () {
112
+ try {
113
+ const data = await client.DescribeRuleExecResultsByPage({})
74
114
  expect(data).to.be.ok
75
115
  } catch(error) {
76
116
  expect(error.requestId).to.be.ok
@@ -108,6 +148,16 @@ it("wedata.v20210820.BatchKillIntegrationTaskInstances", async function () {
108
148
  }
109
149
  })
110
150
 
151
+ it("wedata.v20210820.ModifyExecStrategy", async function () {
152
+ try {
153
+ const data = await client.ModifyExecStrategy({})
154
+ expect(data).to.be.ok
155
+ } catch(error) {
156
+ expect(error.requestId).to.be.ok
157
+ expect(error.code).to.be.ok
158
+ }
159
+ })
160
+
111
161
  it("wedata.v20210820.RegisterEventListener", async function () {
112
162
  try {
113
163
  const data = await client.RegisterEventListener({})
@@ -308,6 +358,16 @@ it("wedata.v20210820.DescribeOfflineTaskToken", async function () {
308
358
  }
309
359
  })
310
360
 
361
+ it("wedata.v20210820.DeleteRuleTemplate", async function () {
362
+ try {
363
+ const data = await client.DeleteRuleTemplate({})
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
+
311
371
  it("wedata.v20210820.RobAndLockIntegrationTask", async function () {
312
372
  try {
313
373
  const data = await client.RobAndLockIntegrationTask({})
@@ -338,6 +398,26 @@ it("wedata.v20210820.DescribeAlarmEvents", async function () {
338
398
  }
339
399
  })
340
400
 
401
+ it("wedata.v20210820.DescribeQualityScore", async function () {
402
+ try {
403
+ const data = await client.DescribeQualityScore({})
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
+
411
+ it("wedata.v20210820.DescribeRuleDimStat", async function () {
412
+ try {
413
+ const data = await client.DescribeRuleDimStat({})
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
+
341
421
  it("wedata.v20210820.GenHiveTableDDLSql", async function () {
342
422
  try {
343
423
  const data = await client.GenHiveTableDDLSql({})
@@ -368,6 +448,16 @@ it("wedata.v20210820.SaveCustomFunction", async function () {
368
448
  }
369
449
  })
370
450
 
451
+ it("wedata.v20210820.DescribeTopTableStat", async function () {
452
+ try {
453
+ const data = await client.DescribeTopTableStat({})
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
+
371
461
  it("wedata.v20210820.DescribeOrganizationalFunctions", async function () {
372
462
  try {
373
463
  const data = await client.DescribeOrganizationalFunctions({})
@@ -388,6 +478,16 @@ it("wedata.v20210820.DeleteInLongAgent", async function () {
388
478
  }
389
479
  })
390
480
 
481
+ it("wedata.v20210820.CommitRuleGroupExecResult", async function () {
482
+ try {
483
+ const data = await client.CommitRuleGroupExecResult({})
484
+ expect(data).to.be.ok
485
+ } catch(error) {
486
+ expect(error.requestId).to.be.ok
487
+ expect(error.code).to.be.ok
488
+ }
489
+ })
490
+
391
491
  it("wedata.v20210820.TaskLog", async function () {
392
492
  try {
393
493
  const data = await client.TaskLog({})
@@ -408,6 +508,26 @@ it("wedata.v20210820.DryRunDIOfflineTask", async function () {
408
508
  }
409
509
  })
410
510
 
511
+ it("wedata.v20210820.DescribeDimensionScore", async function () {
512
+ try {
513
+ const data = await client.DescribeDimensionScore({})
514
+ expect(data).to.be.ok
515
+ } catch(error) {
516
+ expect(error.requestId).to.be.ok
517
+ expect(error.code).to.be.ok
518
+ }
519
+ })
520
+
521
+ it("wedata.v20210820.DescribeRuleGroupTable", async function () {
522
+ try {
523
+ const data = await client.DescribeRuleGroupTable({})
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
+
411
531
  it("wedata.v20210820.DescribeInLongTkeClusterList", async function () {
412
532
  try {
413
533
  const data = await client.DescribeInLongTkeClusterList({})
@@ -428,6 +548,26 @@ it("wedata.v20210820.CreateIntegrationTask", async function () {
428
548
  }
429
549
  })
430
550
 
551
+ it("wedata.v20210820.CommitExportTask", async function () {
552
+ try {
553
+ const data = await client.CommitExportTask({})
554
+ expect(data).to.be.ok
555
+ } catch(error) {
556
+ expect(error.requestId).to.be.ok
557
+ expect(error.code).to.be.ok
558
+ }
559
+ })
560
+
561
+ it("wedata.v20210820.DescribeRuleHistoryByPage", async function () {
562
+ try {
563
+ const data = await client.DescribeRuleHistoryByPage({})
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
+
431
571
  it("wedata.v20210820.DescribeDataSourceList", async function () {
432
572
  try {
433
573
  const data = await client.DescribeDataSourceList({})
@@ -448,6 +588,16 @@ it("wedata.v20210820.ModifyTaskInfo", async function () {
448
588
  }
449
589
  })
450
590
 
591
+ it("wedata.v20210820.DescribeRuleTablesByPage", async function () {
592
+ try {
593
+ const data = await client.DescribeRuleTablesByPage({})
594
+ expect(data).to.be.ok
595
+ } catch(error) {
596
+ expect(error.requestId).to.be.ok
597
+ expect(error.code).to.be.ok
598
+ }
599
+ })
600
+
451
601
  it("wedata.v20210820.ModifyIntegrationTask", async function () {
452
602
  try {
453
603
  const data = await client.ModifyIntegrationTask({})
@@ -478,6 +628,16 @@ it("wedata.v20210820.BatchStartIntegrationTasks", async function () {
478
628
  }
479
629
  })
480
630
 
631
+ it("wedata.v20210820.DescribeMonitorsByPage", async function () {
632
+ try {
633
+ const data = await client.DescribeMonitorsByPage({})
634
+ expect(data).to.be.ok
635
+ } catch(error) {
636
+ expect(error.requestId).to.be.ok
637
+ expect(error.code).to.be.ok
638
+ }
639
+ })
640
+
481
641
  it("wedata.v20210820.ModifyTaskName", async function () {
482
642
  try {
483
643
  const data = await client.ModifyTaskName({})
@@ -488,6 +648,16 @@ it("wedata.v20210820.ModifyTaskName", async function () {
488
648
  }
489
649
  })
490
650
 
651
+ it("wedata.v20210820.DescribeRuleExecDetail", async function () {
652
+ try {
653
+ const data = await client.DescribeRuleExecDetail({})
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
+
491
661
  it("wedata.v20210820.CheckTaskNameExist", async function () {
492
662
  try {
493
663
  const data = await client.CheckTaskNameExist({})
@@ -588,6 +758,16 @@ it("wedata.v20210820.DescribeTableSchemaInfo", async function () {
588
758
  }
589
759
  })
590
760
 
761
+ it("wedata.v20210820.ModifyRule", async function () {
762
+ try {
763
+ const data = await client.ModifyRule({})
764
+ expect(data).to.be.ok
765
+ } catch(error) {
766
+ expect(error.requestId).to.be.ok
767
+ expect(error.code).to.be.ok
768
+ }
769
+ })
770
+
591
771
  it("wedata.v20210820.DescribeFunctionTypes", async function () {
592
772
  try {
593
773
  const data = await client.DescribeFunctionTypes({})
@@ -608,6 +788,16 @@ it("wedata.v20210820.DescribeTaskReportDetailList", async function () {
608
788
  }
609
789
  })
610
790
 
791
+ it("wedata.v20210820.SubmitWorkflow", async function () {
792
+ try {
793
+ const data = await client.SubmitWorkflow({})
794
+ expect(data).to.be.ok
795
+ } catch(error) {
796
+ expect(error.requestId).to.be.ok
797
+ expect(error.code).to.be.ok
798
+ }
799
+ })
800
+
611
801
  it("wedata.v20210820.DeleteIntegrationNode", async function () {
612
802
  try {
613
803
  const data = await client.DeleteIntegrationNode({})
@@ -688,6 +878,16 @@ it("wedata.v20210820.BatchUpdateIntegrationTasks", async function () {
688
878
  }
689
879
  })
690
880
 
881
+ it("wedata.v20210820.ModifyTaskScript", async function () {
882
+ try {
883
+ const data = await client.ModifyTaskScript({})
884
+ expect(data).to.be.ok
885
+ } catch(error) {
886
+ expect(error.requestId).to.be.ok
887
+ expect(error.code).to.be.ok
888
+ }
889
+ })
890
+
691
891
  it("wedata.v20210820.ForceSucInstances", async function () {
692
892
  try {
693
893
  const data = await client.ForceSucInstances({})
@@ -698,6 +898,16 @@ it("wedata.v20210820.ForceSucInstances", async function () {
698
898
  }
699
899
  })
700
900
 
901
+ it("wedata.v20210820.DescribeRuleGroup", async function () {
902
+ try {
903
+ const data = await client.DescribeRuleGroup({})
904
+ expect(data).to.be.ok
905
+ } catch(error) {
906
+ expect(error.requestId).to.be.ok
907
+ expect(error.code).to.be.ok
908
+ }
909
+ })
910
+
701
911
  it("wedata.v20210820.DescribeDatabaseInfoList", async function () {
702
912
  try {
703
913
  const data = await client.DescribeDatabaseInfoList({})
@@ -708,6 +918,16 @@ it("wedata.v20210820.DescribeDatabaseInfoList", async function () {
708
918
  }
709
919
  })
710
920
 
921
+ it("wedata.v20210820.DescribeTemplateHistory", async function () {
922
+ try {
923
+ const data = await client.DescribeTemplateHistory({})
924
+ expect(data).to.be.ok
925
+ } catch(error) {
926
+ expect(error.requestId).to.be.ok
927
+ expect(error.code).to.be.ok
928
+ }
929
+ })
930
+
711
931
  it("wedata.v20210820.CommitIntegrationTask", async function () {
712
932
  try {
713
933
  const data = await client.CommitIntegrationTask({})
@@ -728,6 +948,16 @@ it("wedata.v20210820.DeleteOfflineTask", async function () {
728
948
  }
729
949
  })
730
950
 
951
+ it("wedata.v20210820.DescribeRuleDataSources", async function () {
952
+ try {
953
+ const data = await client.DescribeRuleDataSources({})
954
+ expect(data).to.be.ok
955
+ } catch(error) {
956
+ expect(error.requestId).to.be.ok
957
+ expect(error.code).to.be.ok
958
+ }
959
+ })
960
+
731
961
  it("wedata.v20210820.CreateHiveTableByDDL", async function () {
732
962
  try {
733
963
  const data = await client.CreateHiveTableByDDL({})
@@ -738,6 +968,16 @@ it("wedata.v20210820.CreateHiveTableByDDL", async function () {
738
968
  }
739
969
  })
740
970
 
971
+ it("wedata.v20210820.DescribeRuleGroupExecResultsByPageWithoutAuth", async function () {
972
+ try {
973
+ const data = await client.DescribeRuleGroupExecResultsByPageWithoutAuth({})
974
+ expect(data).to.be.ok
975
+ } catch(error) {
976
+ expect(error.requestId).to.be.ok
977
+ expect(error.code).to.be.ok
978
+ }
979
+ })
980
+
741
981
  it("wedata.v20210820.DescribeResourceManagePathTrees", async function () {
742
982
  try {
743
983
  const data = await client.DescribeResourceManagePathTrees({})
@@ -778,9 +1018,49 @@ it("wedata.v20210820.DescribeStreamTaskLogList", async function () {
778
1018
  }
779
1019
  })
780
1020
 
781
- it("wedata.v20210820.ModifyDataSource", async function () {
1021
+ it("wedata.v20210820.CreateRule", async function () {
782
1022
  try {
783
- const data = await client.ModifyDataSource({})
1023
+ const data = await client.CreateRule({})
1024
+ expect(data).to.be.ok
1025
+ } catch(error) {
1026
+ expect(error.requestId).to.be.ok
1027
+ expect(error.code).to.be.ok
1028
+ }
1029
+ })
1030
+
1031
+ it("wedata.v20210820.ModifyRuleTemplate", async function () {
1032
+ try {
1033
+ const data = await client.ModifyRuleTemplate({})
1034
+ expect(data).to.be.ok
1035
+ } catch(error) {
1036
+ expect(error.requestId).to.be.ok
1037
+ expect(error.code).to.be.ok
1038
+ }
1039
+ })
1040
+
1041
+ it("wedata.v20210820.DescribeTableScoreTrend", async function () {
1042
+ try {
1043
+ const data = await client.DescribeTableScoreTrend({})
1044
+ expect(data).to.be.ok
1045
+ } catch(error) {
1046
+ expect(error.requestId).to.be.ok
1047
+ expect(error.code).to.be.ok
1048
+ }
1049
+ })
1050
+
1051
+ it("wedata.v20210820.DescribeTableQualityDetails", async function () {
1052
+ try {
1053
+ const data = await client.DescribeTableQualityDetails({})
1054
+ expect(data).to.be.ok
1055
+ } catch(error) {
1056
+ expect(error.requestId).to.be.ok
1057
+ expect(error.code).to.be.ok
1058
+ }
1059
+ })
1060
+
1061
+ it("wedata.v20210820.DescribeRuleGroupsByPage", async function () {
1062
+ try {
1063
+ const data = await client.DescribeRuleGroupsByPage({})
784
1064
  expect(data).to.be.ok
785
1065
  } catch(error) {
786
1066
  expect(error.requestId).to.be.ok
@@ -818,6 +1098,16 @@ it("wedata.v20210820.RerunInstances", async function () {
818
1098
  }
819
1099
  })
820
1100
 
1101
+ it("wedata.v20210820.DeleteRule", async function () {
1102
+ try {
1103
+ const data = await client.DeleteRule({})
1104
+ expect(data).to.be.ok
1105
+ } catch(error) {
1106
+ expect(error.requestId).to.be.ok
1107
+ expect(error.code).to.be.ok
1108
+ }
1109
+ })
1110
+
821
1111
  it("wedata.v20210820.CheckAlarmRegularNameExist", async function () {
822
1112
  try {
823
1113
  const data = await client.CheckAlarmRegularNameExist({})
@@ -848,6 +1138,16 @@ it("wedata.v20210820.DescribeDataTypes", async function () {
848
1138
  }
849
1139
  })
850
1140
 
1141
+ it("wedata.v20210820.DescribeRulesByPage", async function () {
1142
+ try {
1143
+ const data = await client.DescribeRulesByPage({})
1144
+ expect(data).to.be.ok
1145
+ } catch(error) {
1146
+ expect(error.requestId).to.be.ok
1147
+ expect(error.code).to.be.ok
1148
+ }
1149
+ })
1150
+
851
1151
  it("wedata.v20210820.GetOfflineDIInstanceList", async function () {
852
1152
  try {
853
1153
  const data = await client.GetOfflineDIInstanceList({})
@@ -868,6 +1168,46 @@ it("wedata.v20210820.BatchMakeUpIntegrationTasks", async function () {
868
1168
  }
869
1169
  })
870
1170
 
1171
+ it("wedata.v20210820.DescribeRuleExecLog", async function () {
1172
+ try {
1173
+ const data = await client.DescribeRuleExecLog({})
1174
+ expect(data).to.be.ok
1175
+ } catch(error) {
1176
+ expect(error.requestId).to.be.ok
1177
+ expect(error.code).to.be.ok
1178
+ }
1179
+ })
1180
+
1181
+ it("wedata.v20210820.DescribeDataBases", async function () {
1182
+ try {
1183
+ const data = await client.DescribeDataBases({})
1184
+ expect(data).to.be.ok
1185
+ } catch(error) {
1186
+ expect(error.requestId).to.be.ok
1187
+ expect(error.code).to.be.ok
1188
+ }
1189
+ })
1190
+
1191
+ it("wedata.v20210820.DescribeRule", async function () {
1192
+ try {
1193
+ const data = await client.DescribeRule({})
1194
+ expect(data).to.be.ok
1195
+ } catch(error) {
1196
+ expect(error.requestId).to.be.ok
1197
+ expect(error.code).to.be.ok
1198
+ }
1199
+ })
1200
+
1201
+ it("wedata.v20210820.DescribeRuleTemplatesByPage", async function () {
1202
+ try {
1203
+ const data = await client.DescribeRuleTemplatesByPage({})
1204
+ expect(data).to.be.ok
1205
+ } catch(error) {
1206
+ expect(error.requestId).to.be.ok
1207
+ expect(error.code).to.be.ok
1208
+ }
1209
+ })
1210
+
871
1211
  it("wedata.v20210820.ModifyWorkflowInfo", async function () {
872
1212
  try {
873
1213
  const data = await client.ModifyWorkflowInfo({})
@@ -878,6 +1218,16 @@ it("wedata.v20210820.ModifyWorkflowInfo", async function () {
878
1218
  }
879
1219
  })
880
1220
 
1221
+ it("wedata.v20210820.DescribeRuleExecStat", async function () {
1222
+ try {
1223
+ const data = await client.DescribeRuleExecStat({})
1224
+ expect(data).to.be.ok
1225
+ } catch(error) {
1226
+ expect(error.requestId).to.be.ok
1227
+ expect(error.code).to.be.ok
1228
+ }
1229
+ })
1230
+
881
1231
  it("wedata.v20210820.ModifyTaskLinks", async function () {
882
1232
  try {
883
1233
  const data = await client.ModifyTaskLinks({})
@@ -888,6 +1238,16 @@ it("wedata.v20210820.ModifyTaskLinks", async function () {
888
1238
  }
889
1239
  })
890
1240
 
1241
+ it("wedata.v20210820.DescribeRuleGroupExecResultsByPage", async function () {
1242
+ try {
1243
+ const data = await client.DescribeRuleGroupExecResultsByPage({})
1244
+ expect(data).to.be.ok
1245
+ } catch(error) {
1246
+ expect(error.requestId).to.be.ok
1247
+ expect(error.code).to.be.ok
1248
+ }
1249
+ })
1250
+
891
1251
  it("wedata.v20210820.ModifyIntegrationNode", async function () {
892
1252
  try {
893
1253
  const data = await client.ModifyIntegrationNode({})
@@ -958,6 +1318,16 @@ it("wedata.v20210820.BatchRerunIntegrationTaskInstances", async function () {
958
1318
  }
959
1319
  })
960
1320
 
1321
+ it("wedata.v20210820.DescribeExecStrategy", async function () {
1322
+ try {
1323
+ const data = await client.DescribeExecStrategy({})
1324
+ expect(data).to.be.ok
1325
+ } catch(error) {
1326
+ expect(error.requestId).to.be.ok
1327
+ expect(error.code).to.be.ok
1328
+ }
1329
+ })
1330
+
961
1331
  it("wedata.v20210820.CreateWorkflow", async function () {
962
1332
  try {
963
1333
  const data = await client.CreateWorkflow({})
@@ -968,9 +1338,29 @@ it("wedata.v20210820.CreateWorkflow", async function () {
968
1338
  }
969
1339
  })
970
1340
 
971
- it("wedata.v20210820.RunTask", async function () {
1341
+ it("wedata.v20210820.SuspendIntegrationTask", async function () {
972
1342
  try {
973
- const data = await client.RunTask({})
1343
+ const data = await client.SuspendIntegrationTask({})
1344
+ expect(data).to.be.ok
1345
+ } catch(error) {
1346
+ expect(error.requestId).to.be.ok
1347
+ expect(error.code).to.be.ok
1348
+ }
1349
+ })
1350
+
1351
+ it("wedata.v20210820.DescribeRuleExecExportResult", async function () {
1352
+ try {
1353
+ const data = await client.DescribeRuleExecExportResult({})
1354
+ expect(data).to.be.ok
1355
+ } catch(error) {
1356
+ expect(error.requestId).to.be.ok
1357
+ expect(error.code).to.be.ok
1358
+ }
1359
+ })
1360
+
1361
+ it("wedata.v20210820.DescribeRules", async function () {
1362
+ try {
1363
+ const data = await client.DescribeRules({})
974
1364
  expect(data).to.be.ok
975
1365
  } catch(error) {
976
1366
  expect(error.requestId).to.be.ok
@@ -998,9 +1388,9 @@ it("wedata.v20210820.LockIntegrationTask", async function () {
998
1388
  }
999
1389
  })
1000
1390
 
1001
- it("wedata.v20210820.SubmitWorkflow", async function () {
1391
+ it("wedata.v20210820.DescribeTaskReport", async function () {
1002
1392
  try {
1003
- const data = await client.SubmitWorkflow({})
1393
+ const data = await client.DescribeTaskReport({})
1004
1394
  expect(data).to.be.ok
1005
1395
  } catch(error) {
1006
1396
  expect(error.requestId).to.be.ok
@@ -1028,9 +1418,19 @@ it("wedata.v20210820.DescribeIntegrationTasks", async function () {
1028
1418
  }
1029
1419
  })
1030
1420
 
1031
- it("wedata.v20210820.ModifyTaskScript", async function () {
1421
+ it("wedata.v20210820.ModifyMonitorStatus", async function () {
1032
1422
  try {
1033
- const data = await client.ModifyTaskScript({})
1423
+ const data = await client.ModifyMonitorStatus({})
1424
+ expect(data).to.be.ok
1425
+ } catch(error) {
1426
+ expect(error.requestId).to.be.ok
1427
+ expect(error.code).to.be.ok
1428
+ }
1429
+ })
1430
+
1431
+ it("wedata.v20210820.DescribeTrendStat", async function () {
1432
+ try {
1433
+ const data = await client.DescribeTrendStat({})
1034
1434
  expect(data).to.be.ok
1035
1435
  } catch(error) {
1036
1436
  expect(error.requestId).to.be.ok
@@ -1048,6 +1448,16 @@ it("wedata.v20210820.DescribeTableInfoList", async function () {
1048
1448
  }
1049
1449
  })
1050
1450
 
1451
+ it("wedata.v20210820.DescribeRuleGroupSubscription", async function () {
1452
+ try {
1453
+ const data = await client.DescribeRuleGroupSubscription({})
1454
+ expect(data).to.be.ok
1455
+ } catch(error) {
1456
+ expect(error.requestId).to.be.ok
1457
+ expect(error.code).to.be.ok
1458
+ }
1459
+ })
1460
+
1051
1461
  it("wedata.v20210820.DescribeTaskInstances", async function () {
1052
1462
  try {
1053
1463
  const data = await client.DescribeTaskInstances({})
@@ -1068,6 +1478,16 @@ it("wedata.v20210820.DeleteTaskAlarmRegular", async function () {
1068
1478
  }
1069
1479
  })
1070
1480
 
1481
+ it("wedata.v20210820.DescribeRuleExecResults", async function () {
1482
+ try {
1483
+ const data = await client.DescribeRuleExecResults({})
1484
+ expect(data).to.be.ok
1485
+ } catch(error) {
1486
+ expect(error.requestId).to.be.ok
1487
+ expect(error.code).to.be.ok
1488
+ }
1489
+ })
1490
+
1071
1491
  it("wedata.v20210820.TriggerEvent", async function () {
1072
1492
  try {
1073
1493
  const data = await client.TriggerEvent({})
@@ -1088,9 +1508,19 @@ it("wedata.v20210820.DeleteResource", async function () {
1088
1508
  }
1089
1509
  })
1090
1510
 
1091
- it("wedata.v20210820.DescribeTaskReport", async function () {
1511
+ it("wedata.v20210820.DescribeQualityScoreTrend", async function () {
1092
1512
  try {
1093
- const data = await client.DescribeTaskReport({})
1513
+ const data = await client.DescribeQualityScoreTrend({})
1514
+ expect(data).to.be.ok
1515
+ } catch(error) {
1516
+ expect(error.requestId).to.be.ok
1517
+ expect(error.code).to.be.ok
1518
+ }
1519
+ })
1520
+
1521
+ it("wedata.v20210820.ModifyDataSource", async function () {
1522
+ try {
1523
+ const data = await client.ModifyDataSource({})
1094
1524
  expect(data).to.be.ok
1095
1525
  } catch(error) {
1096
1526
  expect(error.requestId).to.be.ok
@@ -1198,6 +1628,16 @@ it("wedata.v20210820.BatchSuspendIntegrationTasks", async function () {
1198
1628
  }
1199
1629
  })
1200
1630
 
1631
+ it("wedata.v20210820.CommitRuleGroupTask", async function () {
1632
+ try {
1633
+ const data = await client.CommitRuleGroupTask({})
1634
+ expect(data).to.be.ok
1635
+ } catch(error) {
1636
+ expect(error.requestId).to.be.ok
1637
+ expect(error.code).to.be.ok
1638
+ }
1639
+ })
1640
+
1201
1641
  it("wedata.v20210820.DescribeInstanceLastLog", async function () {
1202
1642
  try {
1203
1643
  const data = await client.DescribeInstanceLastLog({})
@@ -1238,6 +1678,26 @@ it("wedata.v20210820.SubmitCustomFunction", async function () {
1238
1678
  }
1239
1679
  })
1240
1680
 
1681
+ it("wedata.v20210820.ModifyDimensionWeight", async function () {
1682
+ try {
1683
+ const data = await client.ModifyDimensionWeight({})
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
+
1691
+ it("wedata.v20210820.CheckDuplicateTemplateName", async function () {
1692
+ try {
1693
+ const data = await client.CheckDuplicateTemplateName({})
1694
+ expect(data).to.be.ok
1695
+ } catch(error) {
1696
+ expect(error.requestId).to.be.ok
1697
+ expect(error.code).to.be.ok
1698
+ }
1699
+ })
1700
+
1241
1701
  it("wedata.v20210820.BatchResumeIntegrationTasks", async function () {
1242
1702
  try {
1243
1703
  const data = await client.BatchResumeIntegrationTasks({})
@@ -1258,6 +1718,16 @@ it("wedata.v20210820.RestartInLongAgent", async function () {
1258
1718
  }
1259
1719
  })
1260
1720
 
1721
+ it("wedata.v20210820.DescribeRuleTemplate", async function () {
1722
+ try {
1723
+ const data = await client.DescribeRuleTemplate({})
1724
+ expect(data).to.be.ok
1725
+ } catch(error) {
1726
+ expect(error.requestId).to.be.ok
1727
+ expect(error.code).to.be.ok
1728
+ }
1729
+ })
1730
+
1261
1731
  it("wedata.v20210820.SubmitTask", async function () {
1262
1732
  try {
1263
1733
  const data = await client.SubmitTask({})
@@ -1268,6 +1738,16 @@ it("wedata.v20210820.SubmitTask", async function () {
1268
1738
  }
1269
1739
  })
1270
1740
 
1741
+ it("wedata.v20210820.DescribeInstances", async function () {
1742
+ try {
1743
+ const data = await client.DescribeInstances({})
1744
+ expect(data).to.be.ok
1745
+ } catch(error) {
1746
+ expect(error.requestId).to.be.ok
1747
+ expect(error.code).to.be.ok
1748
+ }
1749
+ })
1750
+
1271
1751
  it("wedata.v20210820.DescribeDataSourceInfoList", async function () {
1272
1752
  try {
1273
1753
  const data = await client.DescribeDataSourceInfoList({})
@@ -1298,6 +1778,26 @@ it("wedata.v20210820.DescribeInLongAgentTaskList", async function () {
1298
1778
  }
1299
1779
  })
1300
1780
 
1781
+ it("wedata.v20210820.DescribeRuleExecHistory", async function () {
1782
+ try {
1783
+ const data = await client.DescribeRuleExecHistory({})
1784
+ expect(data).to.be.ok
1785
+ } catch(error) {
1786
+ expect(error.requestId).to.be.ok
1787
+ expect(error.code).to.be.ok
1788
+ }
1789
+ })
1790
+
1791
+ it("wedata.v20210820.DescribeRuleTemplates", async function () {
1792
+ try {
1793
+ const data = await client.DescribeRuleTemplates({})
1794
+ expect(data).to.be.ok
1795
+ } catch(error) {
1796
+ expect(error.requestId).to.be.ok
1797
+ expect(error.code).to.be.ok
1798
+ }
1799
+ })
1800
+
1301
1801
  it("wedata.v20210820.DescribeTaskInstanceReportDetail", async function () {
1302
1802
  try {
1303
1803
  const data = await client.DescribeTaskInstanceReportDetail({})
@@ -1308,9 +1808,19 @@ it("wedata.v20210820.DescribeTaskInstanceReportDetail", async function () {
1308
1808
  }
1309
1809
  })
1310
1810
 
1311
- it("wedata.v20210820.SuspendIntegrationTask", async function () {
1811
+ it("wedata.v20210820.DescribeDataObjects", async function () {
1312
1812
  try {
1313
- const data = await client.SuspendIntegrationTask({})
1813
+ const data = await client.DescribeDataObjects({})
1814
+ expect(data).to.be.ok
1815
+ } catch(error) {
1816
+ expect(error.requestId).to.be.ok
1817
+ expect(error.code).to.be.ok
1818
+ }
1819
+ })
1820
+
1821
+ it("wedata.v20210820.ModifyRuleGroupSubscription", async function () {
1822
+ try {
1823
+ const data = await client.ModifyRuleGroupSubscription({})
1314
1824
  expect(data).to.be.ok
1315
1825
  } catch(error) {
1316
1826
  expect(error.requestId).to.be.ok
@@ -1398,6 +1908,36 @@ it("wedata.v20210820.DescribeIntegrationStatistics", async function () {
1398
1908
  }
1399
1909
  })
1400
1910
 
1911
+ it("wedata.v20210820.MakeUpTasksNew", async function () {
1912
+ try {
1913
+ const data = await client.MakeUpTasksNew({})
1914
+ expect(data).to.be.ok
1915
+ } catch(error) {
1916
+ expect(error.requestId).to.be.ok
1917
+ expect(error.code).to.be.ok
1918
+ }
1919
+ })
1920
+
1921
+ it("wedata.v20210820.DescribeTemplateDimCount", async function () {
1922
+ try {
1923
+ const data = await client.DescribeTemplateDimCount({})
1924
+ expect(data).to.be.ok
1925
+ } catch(error) {
1926
+ expect(error.requestId).to.be.ok
1927
+ expect(error.code).to.be.ok
1928
+ }
1929
+ })
1930
+
1931
+ it("wedata.v20210820.DescribeProdTasks", async function () {
1932
+ try {
1933
+ const data = await client.DescribeProdTasks({})
1934
+ expect(data).to.be.ok
1935
+ } catch(error) {
1936
+ expect(error.requestId).to.be.ok
1937
+ expect(error.code).to.be.ok
1938
+ }
1939
+ })
1940
+
1401
1941
  it("wedata.v20210820.BatchModifyOwnersNew", async function () {
1402
1942
  try {
1403
1943
  const data = await client.BatchModifyOwnersNew({})