tencentcloud-sdk-nodejs 4.0.932 → 4.0.933
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 +63 -0
- package/SERVICE_CHANGELOG.md +72 -19
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cfw/v20190904/cfw_client.ts +5 -19
- package/src/services/cfw/v20190904/cfw_models.ts +59 -74
- package/src/services/cwp/v20180228/cwp_models.ts +1 -1
- package/src/services/emr/v20190103/emr_client.ts +86 -34
- package/src/services/emr/v20190103/emr_models.ts +727 -361
- package/src/services/ess/v20201111/ess_client.ts +15 -3
- package/src/services/ess/v20201111/ess_models.ts +42 -48
- package/src/services/gme/v20180711/gme_models.ts +7 -7
- package/src/services/teo/v20220901/teo_models.ts +6 -4
- package/src/services/trocket/v20230308/trocket_models.ts +4 -0
- package/src/services/vclm/v20240523/vclm_client.ts +54 -2
- package/src/services/vclm/v20240523/vclm_models.ts +17 -4
- package/src/services/vtc/v20240223/vtc_client.ts +54 -2
- package/src/services/vtc/v20240223/vtc_models.ts +18 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +1 -7
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +0 -8
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +59 -72
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +1 -1
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +28 -12
- package/tencentcloud/services/emr/v20190103/emr_client.js +38 -14
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +712 -358
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +15 -3
- package/tencentcloud/services/ess/v20201111/ess_client.js +15 -3
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +42 -48
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -7
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +6 -4
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +4 -0
- package/tencentcloud/services/vclm/v20240523/vclm_client.d.ts +53 -1
- package/tencentcloud/services/vclm/v20240523/vclm_client.js +53 -1
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +17 -4
- package/tencentcloud/services/vtc/v20240223/vtc_client.d.ts +53 -1
- package/tencentcloud/services/vtc/v20240223/vtc_client.js +53 -1
- package/tencentcloud/services/vtc/v20240223/vtc_models.d.ts +18 -4
- package/test/cfw.v20190904.test.js +0 -10
- package/test/emr.v20190103.test.js +46 -6
|
@@ -78,9 +78,9 @@ it("emr.v20190103.DescribeImpalaQueries", async function () {
|
|
|
78
78
|
}
|
|
79
79
|
})
|
|
80
80
|
|
|
81
|
-
it("emr.v20190103.
|
|
81
|
+
it("emr.v20190103.DescribeYarnQueue", async function () {
|
|
82
82
|
try {
|
|
83
|
-
const data = await client.
|
|
83
|
+
const data = await client.DescribeYarnQueue({})
|
|
84
84
|
expect(data).to.be.ok
|
|
85
85
|
} catch(error) {
|
|
86
86
|
expect(error.requestId).to.be.ok
|
|
@@ -88,9 +88,19 @@ it("emr.v20190103.ModifyResourceScheduleConfig", async function () {
|
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
90
|
|
|
91
|
-
it("emr.v20190103.
|
|
91
|
+
it("emr.v20190103.ModifyYarnQueueV2", async function () {
|
|
92
92
|
try {
|
|
93
|
-
const data = await client.
|
|
93
|
+
const data = await client.ModifyYarnQueueV2({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
it("emr.v20190103.DeployYarnConf", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.DeployYarnConf({})
|
|
94
104
|
expect(data).to.be.ok
|
|
95
105
|
} catch(error) {
|
|
96
106
|
expect(error.requestId).to.be.ok
|
|
@@ -198,6 +208,16 @@ it("emr.v20190103.ModifyYarnDeploy", async function () {
|
|
|
198
208
|
}
|
|
199
209
|
})
|
|
200
210
|
|
|
211
|
+
it("emr.v20190103.TerminateTasks", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.TerminateTasks({})
|
|
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
|
+
|
|
201
221
|
it("emr.v20190103.TerminateClusterNodes", async function () {
|
|
202
222
|
try {
|
|
203
223
|
const data = await client.TerminateClusterNodes({})
|
|
@@ -208,6 +228,16 @@ it("emr.v20190103.TerminateClusterNodes", async function () {
|
|
|
208
228
|
}
|
|
209
229
|
})
|
|
210
230
|
|
|
231
|
+
it("emr.v20190103.ResetYarnConfig", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.ResetYarnConfig({})
|
|
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
|
+
|
|
211
241
|
it("emr.v20190103.DescribeUsersForUserManager", async function () {
|
|
212
242
|
try {
|
|
213
243
|
const data = await client.DescribeUsersForUserManager({})
|
|
@@ -358,6 +388,16 @@ it("emr.v20190103.DescribeYarnScheduleHistory", async function () {
|
|
|
358
388
|
}
|
|
359
389
|
})
|
|
360
390
|
|
|
391
|
+
it("emr.v20190103.ModifyResourceScheduleConfig", async function () {
|
|
392
|
+
try {
|
|
393
|
+
const data = await client.ModifyResourceScheduleConfig({})
|
|
394
|
+
expect(data).to.be.ok
|
|
395
|
+
} catch(error) {
|
|
396
|
+
expect(error.requestId).to.be.ok
|
|
397
|
+
expect(error.code).to.be.ok
|
|
398
|
+
}
|
|
399
|
+
})
|
|
400
|
+
|
|
361
401
|
it("emr.v20190103.DescribeJobFlow", async function () {
|
|
362
402
|
try {
|
|
363
403
|
const data = await client.DescribeJobFlow({})
|
|
@@ -388,9 +428,9 @@ it("emr.v20190103.DescribeEmrOverviewMetrics", async function () {
|
|
|
388
428
|
}
|
|
389
429
|
})
|
|
390
430
|
|
|
391
|
-
it("emr.v20190103.
|
|
431
|
+
it("emr.v20190103.InquirePriceRenewEmr", async function () {
|
|
392
432
|
try {
|
|
393
|
-
const data = await client.
|
|
433
|
+
const data = await client.InquirePriceRenewEmr({})
|
|
394
434
|
expect(data).to.be.ok
|
|
395
435
|
} catch(error) {
|
|
396
436
|
expect(error.requestId).to.be.ok
|