tencentcloud-sdk-nodejs 4.0.486 → 4.0.487
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 +306 -0
- package/SERVICE_CHANGELOG.md +415 -111
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/advisor/v20200721/advisor_models.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +66 -0
- package/src/services/cvm/v20170312/cvm_client.ts +84 -35
- package/src/services/cvm/v20170312/cvm_models.ts +283 -98
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +2 -1
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +122 -3
- package/src/services/dbdc/v20201029/dbdc_models.ts +5 -0
- package/src/services/dcdb/v20180411/dcdb_models.ts +6 -1
- package/src/services/dnspod/v20210323/dnspod_client.ts +80 -19
- package/src/services/dnspod/v20210323/dnspod_models.ts +207 -7
- package/src/services/gaap/v20180529/gaap_models.ts +2 -2
- package/src/services/mariadb/v20170312/mariadb_client.ts +3 -1
- package/src/services/mariadb/v20170312/mariadb_models.ts +67 -5
- package/src/services/mps/v20190612/mps_models.ts +2 -2
- package/src/services/ocr/v20181119/ocr_models.ts +5 -0
- package/src/services/redis/v20180412/redis_models.ts +1 -1
- package/src/services/smh/v20210712/smh_models.ts +11 -11
- package/src/services/teo/v20220901/teo_client.ts +1 -14
- package/src/services/teo/v20220901/teo_models.ts +11 -101
- package/src/services/tione/v20211111/tione_client.ts +12 -0
- package/src/services/tione/v20211111/tione_models.ts +148 -4
- package/src/services/wedata/v20210820/wedata_client.ts +29 -16
- package/src/services/wedata/v20210820/wedata_models.ts +71 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/advisor/v20200721/advisor_models.d.ts +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +54 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +31 -15
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +42 -18
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +243 -85
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +101 -3
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +4 -0
- package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +5 -1
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +27 -7
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +39 -9
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +177 -6
- package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +2 -2
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +1 -1
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +58 -5
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +2 -2
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +4 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/smh/v20210712/smh_models.d.ts +10 -10
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +1 -5
- package/tencentcloud/services/teo/v20220901/teo_client.js +0 -6
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +9 -89
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +5 -1
- package/tencentcloud/services/tione/v20211111/tione_client.js +6 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +126 -4
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +10 -6
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +13 -7
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +60 -3
- package/test/cvm.v20170312.test.js +48 -8
- package/test/dnspod.v20210323.test.js +56 -6
- package/test/teo.v20220901.test.js +0 -10
- package/test/tione.v20211111.test.js +10 -0
- package/test/wedata.v20210820.test.js +14 -4
|
@@ -228,6 +228,16 @@ it("cvm.v20170312.ModifyChcAttribute", async function () {
|
|
|
228
228
|
}
|
|
229
229
|
})
|
|
230
230
|
|
|
231
|
+
it("cvm.v20170312.CreateHpcCluster", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.CreateHpcCluster({})
|
|
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("cvm.v20170312.DisassociateSecurityGroups", async function () {
|
|
232
242
|
try {
|
|
233
243
|
const data = await client.DisassociateSecurityGroups({})
|
|
@@ -308,6 +318,16 @@ it("cvm.v20170312.ModifyDisasterRecoverGroupAttribute", async function () {
|
|
|
308
318
|
}
|
|
309
319
|
})
|
|
310
320
|
|
|
321
|
+
it("cvm.v20170312.DescribeHpcClusters", async function () {
|
|
322
|
+
try {
|
|
323
|
+
const data = await client.DescribeHpcClusters({})
|
|
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
|
+
|
|
311
331
|
it("cvm.v20170312.DescribeInstancesOperationLimit", async function () {
|
|
312
332
|
try {
|
|
313
333
|
const data = await client.DescribeInstancesOperationLimit({})
|
|
@@ -318,9 +338,9 @@ it("cvm.v20170312.DescribeInstancesOperationLimit", async function () {
|
|
|
318
338
|
}
|
|
319
339
|
})
|
|
320
340
|
|
|
321
|
-
it("cvm.v20170312.
|
|
341
|
+
it("cvm.v20170312.ModifyHostsAttribute", async function () {
|
|
322
342
|
try {
|
|
323
|
-
const data = await client.
|
|
343
|
+
const data = await client.ModifyHostsAttribute({})
|
|
324
344
|
expect(data).to.be.ok
|
|
325
345
|
} catch(error) {
|
|
326
346
|
expect(error.requestId).to.be.ok
|
|
@@ -328,9 +348,9 @@ it("cvm.v20170312.DescribeRegions", async function () {
|
|
|
328
348
|
}
|
|
329
349
|
})
|
|
330
350
|
|
|
331
|
-
it("cvm.v20170312.
|
|
351
|
+
it("cvm.v20170312.DescribeRegions", async function () {
|
|
332
352
|
try {
|
|
333
|
-
const data = await client.
|
|
353
|
+
const data = await client.DescribeRegions({})
|
|
334
354
|
expect(data).to.be.ok
|
|
335
355
|
} catch(error) {
|
|
336
356
|
expect(error.requestId).to.be.ok
|
|
@@ -618,9 +638,9 @@ it("cvm.v20170312.RebootInstances", async function () {
|
|
|
618
638
|
}
|
|
619
639
|
})
|
|
620
640
|
|
|
621
|
-
it("cvm.v20170312.
|
|
641
|
+
it("cvm.v20170312.DeleteHpcClusters", async function () {
|
|
622
642
|
try {
|
|
623
|
-
const data = await client.
|
|
643
|
+
const data = await client.DeleteHpcClusters({})
|
|
624
644
|
expect(data).to.be.ok
|
|
625
645
|
} catch(error) {
|
|
626
646
|
expect(error.requestId).to.be.ok
|
|
@@ -628,9 +648,29 @@ it("cvm.v20170312.ModifyKeyPairAttribute", async function () {
|
|
|
628
648
|
}
|
|
629
649
|
})
|
|
630
650
|
|
|
631
|
-
it("cvm.v20170312.
|
|
651
|
+
it("cvm.v20170312.StopInstances", async function () {
|
|
632
652
|
try {
|
|
633
|
-
const data = await client.
|
|
653
|
+
const data = await client.StopInstances({})
|
|
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
|
+
|
|
661
|
+
it("cvm.v20170312.ModifyHpcClusterAttribute", async function () {
|
|
662
|
+
try {
|
|
663
|
+
const data = await client.ModifyHpcClusterAttribute({})
|
|
664
|
+
expect(data).to.be.ok
|
|
665
|
+
} catch(error) {
|
|
666
|
+
expect(error.requestId).to.be.ok
|
|
667
|
+
expect(error.code).to.be.ok
|
|
668
|
+
}
|
|
669
|
+
})
|
|
670
|
+
|
|
671
|
+
it("cvm.v20170312.ModifyKeyPairAttribute", async function () {
|
|
672
|
+
try {
|
|
673
|
+
const data = await client.ModifyKeyPairAttribute({})
|
|
634
674
|
expect(data).to.be.ok
|
|
635
675
|
} catch(error) {
|
|
636
676
|
expect(error.requestId).to.be.ok
|
|
@@ -78,6 +78,26 @@ it("dnspod.v20210323.DescribeRecordType", async function () {
|
|
|
78
78
|
}
|
|
79
79
|
})
|
|
80
80
|
|
|
81
|
+
it("dnspod.v20210323.DeleteRecordGroup", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DeleteRecordGroup({})
|
|
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("dnspod.v20210323.ModifyDomainStatus", async function () {
|
|
92
|
+
try {
|
|
93
|
+
const data = await client.ModifyDomainStatus({})
|
|
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
|
+
|
|
81
101
|
it("dnspod.v20210323.DescribeDomainAliasList", async function () {
|
|
82
102
|
try {
|
|
83
103
|
const data = await client.DescribeDomainAliasList({})
|
|
@@ -128,9 +148,9 @@ it("dnspod.v20210323.ModifyRecord", async function () {
|
|
|
128
148
|
}
|
|
129
149
|
})
|
|
130
150
|
|
|
131
|
-
it("dnspod.v20210323.
|
|
151
|
+
it("dnspod.v20210323.DescribeRecordGroupList", async function () {
|
|
132
152
|
try {
|
|
133
|
-
const data = await client.
|
|
153
|
+
const data = await client.DescribeRecordGroupList({})
|
|
134
154
|
expect(data).to.be.ok
|
|
135
155
|
} catch(error) {
|
|
136
156
|
expect(error.requestId).to.be.ok
|
|
@@ -218,9 +238,19 @@ it("dnspod.v20210323.DeleteShareDomain", async function () {
|
|
|
218
238
|
}
|
|
219
239
|
})
|
|
220
240
|
|
|
221
|
-
it("dnspod.v20210323.
|
|
241
|
+
it("dnspod.v20210323.DescribeDomain", async function () {
|
|
222
242
|
try {
|
|
223
|
-
const data = await client.
|
|
243
|
+
const data = await client.DescribeDomain({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
251
|
+
it("dnspod.v20210323.ModifyRecordGroup", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.ModifyRecordGroup({})
|
|
224
254
|
expect(data).to.be.ok
|
|
225
255
|
} catch(error) {
|
|
226
256
|
expect(error.requestId).to.be.ok
|
|
@@ -238,9 +268,9 @@ it("dnspod.v20210323.ModifyRecordStatus", async function () {
|
|
|
238
268
|
}
|
|
239
269
|
})
|
|
240
270
|
|
|
241
|
-
it("dnspod.v20210323.
|
|
271
|
+
it("dnspod.v20210323.CreateRecordGroup", async function () {
|
|
242
272
|
try {
|
|
243
|
-
const data = await client.
|
|
273
|
+
const data = await client.CreateRecordGroup({})
|
|
244
274
|
expect(data).to.be.ok
|
|
245
275
|
} catch(error) {
|
|
246
276
|
expect(error.requestId).to.be.ok
|
|
@@ -468,6 +498,26 @@ it("dnspod.v20210323.PayOrderWithBalance", async function () {
|
|
|
468
498
|
}
|
|
469
499
|
})
|
|
470
500
|
|
|
501
|
+
it("dnspod.v20210323.ModifyRecordToGroup", async function () {
|
|
502
|
+
try {
|
|
503
|
+
const data = await client.ModifyRecordToGroup({})
|
|
504
|
+
expect(data).to.be.ok
|
|
505
|
+
} catch(error) {
|
|
506
|
+
expect(error.requestId).to.be.ok
|
|
507
|
+
expect(error.code).to.be.ok
|
|
508
|
+
}
|
|
509
|
+
})
|
|
510
|
+
|
|
511
|
+
it("dnspod.v20210323.ModifyVasAutoRenewStatus", async function () {
|
|
512
|
+
try {
|
|
513
|
+
const data = await client.ModifyVasAutoRenewStatus({})
|
|
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
|
+
|
|
471
521
|
it("dnspod.v20210323.DescribeSubdomainAnalytics", async function () {
|
|
472
522
|
try {
|
|
473
523
|
const data = await client.DescribeSubdomainAnalytics({})
|
|
@@ -1258,16 +1258,6 @@ it("teo.v20220901.DescribeAliasDomains", async function () {
|
|
|
1258
1258
|
}
|
|
1259
1259
|
})
|
|
1260
1260
|
|
|
1261
|
-
it("teo.v20220901.DescribeBillingData", async function () {
|
|
1262
|
-
try {
|
|
1263
|
-
const data = await client.DescribeBillingData({})
|
|
1264
|
-
expect(data).to.be.ok
|
|
1265
|
-
} catch(error) {
|
|
1266
|
-
expect(error.requestId).to.be.ok
|
|
1267
|
-
expect(error.code).to.be.ok
|
|
1268
|
-
}
|
|
1269
|
-
})
|
|
1270
|
-
|
|
1271
1261
|
it("teo.v20220901.ModifyDnssec", async function () {
|
|
1272
1262
|
try {
|
|
1273
1263
|
const data = await client.ModifyDnssec({})
|
|
@@ -438,6 +438,16 @@ it("tione.v20211111.DescribeModelServices", async function () {
|
|
|
438
438
|
}
|
|
439
439
|
})
|
|
440
440
|
|
|
441
|
+
it("tione.v20211111.ModifyModelService", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.ModifyModelService({})
|
|
444
|
+
expect(data).to.be.ok
|
|
445
|
+
} catch(error) {
|
|
446
|
+
expect(error.requestId).to.be.ok
|
|
447
|
+
expect(error.code).to.be.ok
|
|
448
|
+
}
|
|
449
|
+
})
|
|
450
|
+
|
|
441
451
|
it("tione.v20211111.DescribeTrainingTask", async function () {
|
|
442
452
|
try {
|
|
443
453
|
const data = await client.DescribeTrainingTask({})
|
|
@@ -408,6 +408,16 @@ it("wedata.v20210820.DescribeQualityScore", async function () {
|
|
|
408
408
|
}
|
|
409
409
|
})
|
|
410
410
|
|
|
411
|
+
it("wedata.v20210820.CreateResourcePath", async function () {
|
|
412
|
+
try {
|
|
413
|
+
const data = await client.CreateResourcePath({})
|
|
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("wedata.v20210820.DescribeRuleDimStat", async function () {
|
|
412
422
|
try {
|
|
413
423
|
const data = await client.DescribeRuleDimStat({})
|
|
@@ -1568,9 +1578,9 @@ it("wedata.v20210820.DeleteCustomFunction", async function () {
|
|
|
1568
1578
|
}
|
|
1569
1579
|
})
|
|
1570
1580
|
|
|
1571
|
-
it("wedata.v20210820.
|
|
1581
|
+
it("wedata.v20210820.DescribeDataObjects", async function () {
|
|
1572
1582
|
try {
|
|
1573
|
-
const data = await client.
|
|
1583
|
+
const data = await client.DescribeDataObjects({})
|
|
1574
1584
|
expect(data).to.be.ok
|
|
1575
1585
|
} catch(error) {
|
|
1576
1586
|
expect(error.requestId).to.be.ok
|
|
@@ -1808,9 +1818,9 @@ it("wedata.v20210820.DescribeTaskInstanceReportDetail", async function () {
|
|
|
1808
1818
|
}
|
|
1809
1819
|
})
|
|
1810
1820
|
|
|
1811
|
-
it("wedata.v20210820.
|
|
1821
|
+
it("wedata.v20210820.DescribeFolderWorkflowList", async function () {
|
|
1812
1822
|
try {
|
|
1813
|
-
const data = await client.
|
|
1823
|
+
const data = await client.DescribeFolderWorkflowList({})
|
|
1814
1824
|
expect(data).to.be.ok
|
|
1815
1825
|
} catch(error) {
|
|
1816
1826
|
expect(error.requestId).to.be.ok
|