tencentcloud-sdk-nodejs 4.0.705 → 4.0.706
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.
- package/CHANGELOG.md +93 -0
- package/SERVICE_CHANGELOG.md +174 -143
- package/package.json +1 -1
- package/products.md +15 -15
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +7 -6
- package/src/services/ccc/v20200210/ccc_models.ts +2 -2
- package/src/services/csip/v20221121/csip_models.ts +4 -0
- package/src/services/cvm/v20170312/cvm_models.ts +7 -6
- package/src/services/emr/v20190103/emr_client.ts +18 -4
- package/src/services/emr/v20190103/emr_models.ts +163 -55
- package/src/services/ess/v20201111/ess_models.ts +16 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +7 -0
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +14 -2
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +107 -51
- package/src/services/scf/v20180416/scf_models.ts +1 -1
- package/src/services/soe/v20180724/soe_models.ts +18 -12
- package/src/services/tke/v20180525/tke_models.ts +3 -2
- package/src/services/wedata/v20210820/wedata_client.ts +128 -28
- package/src/services/wedata/v20210820/wedata_models.ts +633 -84
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +7 -6
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +2 -2
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +4 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +7 -6
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +5 -1
- package/tencentcloud/services/emr/v20190103/emr_client.js +6 -0
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +159 -55
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +16 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +7 -0
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +5 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +6 -0
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +105 -51
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +1 -1
- package/tencentcloud/services/soe/v20180724/soe_models.d.ts +18 -12
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +3 -2
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +44 -10
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +62 -12
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +618 -87
- package/test/emr.v20190103.test.js +10 -0
- package/test/iotexplorer.v20190423.test.js +10 -0
- package/test/wedata.v20210820.test.js +86 -6
|
@@ -108,6 +108,16 @@ it("emr.v20190103.InquiryPriceScaleOutInstance", async function () {
|
|
|
108
108
|
}
|
|
109
109
|
})
|
|
110
110
|
|
|
111
|
+
it("emr.v20190103.DescribeAutoScaleRecords", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.DescribeAutoScaleRecords({})
|
|
114
|
+
expect(data).to.be.ok
|
|
115
|
+
} catch(error) {
|
|
116
|
+
expect(error.requestId).to.be.ok
|
|
117
|
+
expect(error.code).to.be.ok
|
|
118
|
+
}
|
|
119
|
+
})
|
|
120
|
+
|
|
111
121
|
it("emr.v20190103.DescribeCvmQuota", async function () {
|
|
112
122
|
try {
|
|
113
123
|
const data = await client.DescribeCvmQuota({})
|
|
@@ -418,6 +418,16 @@ it("iotexplorer.v20190423.CallDeviceActionAsync", async function () {
|
|
|
418
418
|
}
|
|
419
419
|
})
|
|
420
420
|
|
|
421
|
+
it("iotexplorer.v20190423.GetDeviceSumStatistics", async function () {
|
|
422
|
+
try {
|
|
423
|
+
const data = await client.GetDeviceSumStatistics({})
|
|
424
|
+
expect(data).to.be.ok
|
|
425
|
+
} catch(error) {
|
|
426
|
+
expect(error.requestId).to.be.ok
|
|
427
|
+
expect(error.code).to.be.ok
|
|
428
|
+
}
|
|
429
|
+
})
|
|
430
|
+
|
|
421
431
|
it("iotexplorer.v20190423.DeleteProject", async function () {
|
|
422
432
|
try {
|
|
423
433
|
const data = await client.DeleteProject({})
|
|
@@ -558,9 +558,9 @@ it("wedata.v20210820.DeleteRuleTemplate", async function () {
|
|
|
558
558
|
}
|
|
559
559
|
})
|
|
560
560
|
|
|
561
|
-
it("wedata.v20210820.
|
|
561
|
+
it("wedata.v20210820.CreateDsFolder", async function () {
|
|
562
562
|
try {
|
|
563
|
-
const data = await client.
|
|
563
|
+
const data = await client.CreateDsFolder({})
|
|
564
564
|
expect(data).to.be.ok
|
|
565
565
|
} catch(error) {
|
|
566
566
|
expect(error.requestId).to.be.ok
|
|
@@ -708,9 +708,29 @@ it("wedata.v20210820.DeleteInLongAgent", async function () {
|
|
|
708
708
|
}
|
|
709
709
|
})
|
|
710
710
|
|
|
711
|
-
it("wedata.v20210820.
|
|
711
|
+
it("wedata.v20210820.RunForceSucScheduleInstances", async function () {
|
|
712
712
|
try {
|
|
713
|
-
const data = await client.
|
|
713
|
+
const data = await client.RunForceSucScheduleInstances({})
|
|
714
|
+
expect(data).to.be.ok
|
|
715
|
+
} catch(error) {
|
|
716
|
+
expect(error.requestId).to.be.ok
|
|
717
|
+
expect(error.code).to.be.ok
|
|
718
|
+
}
|
|
719
|
+
})
|
|
720
|
+
|
|
721
|
+
it("wedata.v20210820.DescribeDsFolderTree", async function () {
|
|
722
|
+
try {
|
|
723
|
+
const data = await client.DescribeDsFolderTree({})
|
|
724
|
+
expect(data).to.be.ok
|
|
725
|
+
} catch(error) {
|
|
726
|
+
expect(error.requestId).to.be.ok
|
|
727
|
+
expect(error.code).to.be.ok
|
|
728
|
+
}
|
|
729
|
+
})
|
|
730
|
+
|
|
731
|
+
it("wedata.v20210820.KillInstances", async function () {
|
|
732
|
+
try {
|
|
733
|
+
const data = await client.KillInstances({})
|
|
714
734
|
expect(data).to.be.ok
|
|
715
735
|
} catch(error) {
|
|
716
736
|
expect(error.requestId).to.be.ok
|
|
@@ -1178,6 +1198,16 @@ it("wedata.v20210820.DescribeFunctionTypes", async function () {
|
|
|
1178
1198
|
}
|
|
1179
1199
|
})
|
|
1180
1200
|
|
|
1201
|
+
it("wedata.v20210820.DescribeDsParentFolderTree", async function () {
|
|
1202
|
+
try {
|
|
1203
|
+
const data = await client.DescribeDsParentFolderTree({})
|
|
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
|
+
|
|
1181
1211
|
it("wedata.v20210820.DescribeTaskReportDetailList", async function () {
|
|
1182
1212
|
try {
|
|
1183
1213
|
const data = await client.DescribeTaskReportDetailList({})
|
|
@@ -1508,6 +1538,16 @@ it("wedata.v20210820.CreateHiveTableByDDL", async function () {
|
|
|
1508
1538
|
}
|
|
1509
1539
|
})
|
|
1510
1540
|
|
|
1541
|
+
it("wedata.v20210820.DeleteDsFolder", async function () {
|
|
1542
|
+
try {
|
|
1543
|
+
const data = await client.DeleteDsFolder({})
|
|
1544
|
+
expect(data).to.be.ok
|
|
1545
|
+
} catch(error) {
|
|
1546
|
+
expect(error.requestId).to.be.ok
|
|
1547
|
+
expect(error.code).to.be.ok
|
|
1548
|
+
}
|
|
1549
|
+
})
|
|
1550
|
+
|
|
1511
1551
|
it("wedata.v20210820.ForceSucScheduleInstances", async function () {
|
|
1512
1552
|
try {
|
|
1513
1553
|
const data = await client.ForceSucScheduleInstances({})
|
|
@@ -1708,6 +1748,16 @@ it("wedata.v20210820.RerunInstances", async function () {
|
|
|
1708
1748
|
}
|
|
1709
1749
|
})
|
|
1710
1750
|
|
|
1751
|
+
it("wedata.v20210820.SubmitTaskTestRun", async function () {
|
|
1752
|
+
try {
|
|
1753
|
+
const data = await client.SubmitTaskTestRun({})
|
|
1754
|
+
expect(data).to.be.ok
|
|
1755
|
+
} catch(error) {
|
|
1756
|
+
expect(error.requestId).to.be.ok
|
|
1757
|
+
expect(error.code).to.be.ok
|
|
1758
|
+
}
|
|
1759
|
+
})
|
|
1760
|
+
|
|
1711
1761
|
it("wedata.v20210820.DescribeBatchOperateTask", async function () {
|
|
1712
1762
|
try {
|
|
1713
1763
|
const data = await client.DescribeBatchOperateTask({})
|
|
@@ -2418,9 +2468,9 @@ it("wedata.v20210820.DescribeDependTasksNew", async function () {
|
|
|
2418
2468
|
}
|
|
2419
2469
|
})
|
|
2420
2470
|
|
|
2421
|
-
it("wedata.v20210820.
|
|
2471
|
+
it("wedata.v20210820.ModifyDsFolder", async function () {
|
|
2422
2472
|
try {
|
|
2423
|
-
const data = await client.
|
|
2473
|
+
const data = await client.ModifyDsFolder({})
|
|
2424
2474
|
expect(data).to.be.ok
|
|
2425
2475
|
} catch(error) {
|
|
2426
2476
|
expect(error.requestId).to.be.ok
|
|
@@ -2638,6 +2688,26 @@ it("wedata.v20210820.ModifyDimensionWeight", async function () {
|
|
|
2638
2688
|
}
|
|
2639
2689
|
})
|
|
2640
2690
|
|
|
2691
|
+
it("wedata.v20210820.FindAllFolder", async function () {
|
|
2692
|
+
try {
|
|
2693
|
+
const data = await client.FindAllFolder({})
|
|
2694
|
+
expect(data).to.be.ok
|
|
2695
|
+
} catch(error) {
|
|
2696
|
+
expect(error.requestId).to.be.ok
|
|
2697
|
+
expect(error.code).to.be.ok
|
|
2698
|
+
}
|
|
2699
|
+
})
|
|
2700
|
+
|
|
2701
|
+
it("wedata.v20210820.ModifyTaskAlarmRegular", async function () {
|
|
2702
|
+
try {
|
|
2703
|
+
const data = await client.ModifyTaskAlarmRegular({})
|
|
2704
|
+
expect(data).to.be.ok
|
|
2705
|
+
} catch(error) {
|
|
2706
|
+
expect(error.requestId).to.be.ok
|
|
2707
|
+
expect(error.code).to.be.ok
|
|
2708
|
+
}
|
|
2709
|
+
})
|
|
2710
|
+
|
|
2641
2711
|
it("wedata.v20210820.CheckDuplicateTemplateName", async function () {
|
|
2642
2712
|
try {
|
|
2643
2713
|
const data = await client.CheckDuplicateTemplateName({})
|
|
@@ -2648,6 +2718,16 @@ it("wedata.v20210820.CheckDuplicateTemplateName", async function () {
|
|
|
2648
2718
|
}
|
|
2649
2719
|
})
|
|
2650
2720
|
|
|
2721
|
+
it("wedata.v20210820.RunRerunScheduleInstances", async function () {
|
|
2722
|
+
try {
|
|
2723
|
+
const data = await client.RunRerunScheduleInstances({})
|
|
2724
|
+
expect(data).to.be.ok
|
|
2725
|
+
} catch(error) {
|
|
2726
|
+
expect(error.requestId).to.be.ok
|
|
2727
|
+
expect(error.code).to.be.ok
|
|
2728
|
+
}
|
|
2729
|
+
})
|
|
2730
|
+
|
|
2651
2731
|
it("wedata.v20210820.BatchResumeIntegrationTasks", async function () {
|
|
2652
2732
|
try {
|
|
2653
2733
|
const data = await client.BatchResumeIntegrationTasks({})
|