tencentcloud-sdk-nodejs 4.0.424 → 4.0.427
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 +514 -0
- package/SERVICE_CHANGELOG.md +178 -188
- package/package.json +1 -1
- package/products.md +7 -7
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cat/v20180409/cat_models.ts +6 -0
- package/src/services/cfw/v20190904/cfw_client.ts +0 -12
- package/src/services/cfw/v20190904/cfw_models.ts +0 -25
- package/src/services/essbasic/v20210526/essbasic_models.ts +2 -1
- package/src/services/faceid/v20180301/faceid_models.ts +20 -5
- package/src/services/monitor/v20180724/monitor_models.ts +4 -4
- package/src/services/teo/v20220106/teo_client.ts +146 -33
- package/src/services/teo/v20220106/teo_models.ts +1110 -358
- package/src/services/tts/v20190823/tts_client.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cat/v20180409/cat_models.d.ts +5 -0
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +1 -5
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +0 -6
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +0 -22
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +2 -1
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +17 -5
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +4 -4
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +39 -7
- package/tencentcloud/services/teo/v20220106/teo_client.js +57 -9
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +967 -309
- package/tencentcloud/services/tts/v20190823/tts_client.d.ts +1 -1
- package/tencentcloud/services/tts/v20190823/tts_client.js +1 -1
- package/test/cfw.v20190904.test.js +0 -10
- package/test/teo.v20220106.test.js +86 -6
|
@@ -15,7 +15,7 @@ export declare class Client extends AbstractClient {
|
|
|
15
15
|
<li>支持中文普通话、英文、中英文混读、粤语合成</li>
|
|
16
16
|
<li>支持语速、音量设置</li>
|
|
17
17
|
<li>支持回调或轮询的方式获取结果,结果获取请参考 长文本语音合成结果查询。</li>
|
|
18
|
-
<li
|
|
18
|
+
<li>提交长文本语音合成请求后,合成结果在3小时内完成,音频文件在服务端可保存24小时</li>
|
|
19
19
|
|
|
20
20
|
<p></p>
|
|
21
21
|
|
|
@@ -35,7 +35,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
35
35
|
<li>支持中文普通话、英文、中英文混读、粤语合成</li>
|
|
36
36
|
<li>支持语速、音量设置</li>
|
|
37
37
|
<li>支持回调或轮询的方式获取结果,结果获取请参考 长文本语音合成结果查询。</li>
|
|
38
|
-
<li
|
|
38
|
+
<li>提交长文本语音合成请求后,合成结果在3小时内完成,音频文件在服务端可保存24小时</li>
|
|
39
39
|
|
|
40
40
|
<p></p>
|
|
41
41
|
|
|
@@ -578,16 +578,6 @@ it("cfw.v20190904.DescribeCfwEips", async function () {
|
|
|
578
578
|
}
|
|
579
579
|
})
|
|
580
580
|
|
|
581
|
-
it("cfw.v20190904.RunSyncAsset", async function () {
|
|
582
|
-
try {
|
|
583
|
-
const data = await client.RunSyncAsset({})
|
|
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
581
|
it("cfw.v20190904.ModifyAcRule", async function () {
|
|
592
582
|
try {
|
|
593
583
|
const data = await client.ModifyAcRule({})
|
|
@@ -38,9 +38,9 @@ it("teo.v20220106.CreatePurgeTask", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
-
it("teo.v20220106.
|
|
41
|
+
it("teo.v20220106.CreatePlanForZone", async function () {
|
|
42
42
|
try {
|
|
43
|
-
const data = await client.
|
|
43
|
+
const data = await client.CreatePlanForZone({})
|
|
44
44
|
expect(data).to.be.ok
|
|
45
45
|
} catch(error) {
|
|
46
46
|
expect(error.requestId).to.be.ok
|
|
@@ -308,6 +308,16 @@ it("teo.v20220106.DescribeSecurityPolicyList", async function () {
|
|
|
308
308
|
}
|
|
309
309
|
})
|
|
310
310
|
|
|
311
|
+
it("teo.v20220106.DescribePrefetchTasks", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.DescribePrefetchTasks({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
311
321
|
it("teo.v20220106.DeleteOriginGroup", async function () {
|
|
312
322
|
try {
|
|
313
323
|
const data = await client.DeleteOriginGroup({})
|
|
@@ -388,9 +398,9 @@ it("teo.v20220106.DeleteLoadBalancing", async function () {
|
|
|
388
398
|
}
|
|
389
399
|
})
|
|
390
400
|
|
|
391
|
-
it("teo.v20220106.
|
|
401
|
+
it("teo.v20220106.DescribeTopL7CacheData", async function () {
|
|
392
402
|
try {
|
|
393
|
-
const data = await client.
|
|
403
|
+
const data = await client.DescribeTopL7CacheData({})
|
|
394
404
|
expect(data).to.be.ok
|
|
395
405
|
} catch(error) {
|
|
396
406
|
expect(error.requestId).to.be.ok
|
|
@@ -398,9 +408,9 @@ it("teo.v20220106.DescribeTimingL4Data", async function () {
|
|
|
398
408
|
}
|
|
399
409
|
})
|
|
400
410
|
|
|
401
|
-
it("teo.v20220106.
|
|
411
|
+
it("teo.v20220106.DescribeTimingL4Data", async function () {
|
|
402
412
|
try {
|
|
403
|
-
const data = await client.
|
|
413
|
+
const data = await client.DescribeTimingL4Data({})
|
|
404
414
|
expect(data).to.be.ok
|
|
405
415
|
} catch(error) {
|
|
406
416
|
expect(error.requestId).to.be.ok
|
|
@@ -418,6 +428,16 @@ it("teo.v20220106.ScanDnsRecords", async function () {
|
|
|
418
428
|
}
|
|
419
429
|
})
|
|
420
430
|
|
|
431
|
+
it("teo.v20220106.ModifyRule", async function () {
|
|
432
|
+
try {
|
|
433
|
+
const data = await client.ModifyRule({})
|
|
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
|
+
|
|
421
441
|
it("teo.v20220106.DescribeTopL7AnalysisData", async function () {
|
|
422
442
|
try {
|
|
423
443
|
const data = await client.DescribeTopL7AnalysisData({})
|
|
@@ -448,6 +468,16 @@ it("teo.v20220106.ModifySecurityPolicy", async function () {
|
|
|
448
468
|
}
|
|
449
469
|
})
|
|
450
470
|
|
|
471
|
+
it("teo.v20220106.ModifyRulePriority", async function () {
|
|
472
|
+
try {
|
|
473
|
+
const data = await client.ModifyRulePriority({})
|
|
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
|
+
|
|
451
481
|
it("teo.v20220106.DescribeBotManagedRules", async function () {
|
|
452
482
|
try {
|
|
453
483
|
const data = await client.DescribeBotManagedRules({})
|
|
@@ -498,6 +528,16 @@ it("teo.v20220106.DescribeIdentification", async function () {
|
|
|
498
528
|
}
|
|
499
529
|
})
|
|
500
530
|
|
|
531
|
+
it("teo.v20220106.CreateRule", async function () {
|
|
532
|
+
try {
|
|
533
|
+
const data = await client.CreateRule({})
|
|
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
|
+
|
|
501
541
|
it("teo.v20220106.ModifyApplicationProxy", async function () {
|
|
502
542
|
try {
|
|
503
543
|
const data = await client.ModifyApplicationProxy({})
|
|
@@ -518,6 +558,16 @@ it("teo.v20220106.CreateZone", async function () {
|
|
|
518
558
|
}
|
|
519
559
|
})
|
|
520
560
|
|
|
561
|
+
it("teo.v20220106.DescribeAvailablePlans", async function () {
|
|
562
|
+
try {
|
|
563
|
+
const data = await client.DescribeAvailablePlans({})
|
|
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
|
+
|
|
521
571
|
it("teo.v20220106.DescribeZoneDDoSPolicy", async function () {
|
|
522
572
|
try {
|
|
523
573
|
const data = await client.DescribeZoneDDoSPolicy({})
|
|
@@ -568,6 +618,16 @@ it("teo.v20220106.DescribeDnsData", async function () {
|
|
|
568
618
|
}
|
|
569
619
|
})
|
|
570
620
|
|
|
621
|
+
it("teo.v20220106.DescribeRulesSetting", async function () {
|
|
622
|
+
try {
|
|
623
|
+
const data = await client.DescribeRulesSetting({})
|
|
624
|
+
expect(data).to.be.ok
|
|
625
|
+
} catch(error) {
|
|
626
|
+
expect(error.requestId).to.be.ok
|
|
627
|
+
expect(error.code).to.be.ok
|
|
628
|
+
}
|
|
629
|
+
})
|
|
630
|
+
|
|
571
631
|
it("teo.v20220106.DescribeHostsCertificate", async function () {
|
|
572
632
|
try {
|
|
573
633
|
const data = await client.DescribeHostsCertificate({})
|
|
@@ -628,6 +688,16 @@ it("teo.v20220106.ModifyZoneStatus", async function () {
|
|
|
628
688
|
}
|
|
629
689
|
})
|
|
630
690
|
|
|
691
|
+
it("teo.v20220106.DeleteRules", async function () {
|
|
692
|
+
try {
|
|
693
|
+
const data = await client.DeleteRules({})
|
|
694
|
+
expect(data).to.be.ok
|
|
695
|
+
} catch(error) {
|
|
696
|
+
expect(error.requestId).to.be.ok
|
|
697
|
+
expect(error.code).to.be.ok
|
|
698
|
+
}
|
|
699
|
+
})
|
|
700
|
+
|
|
631
701
|
it("teo.v20220106.DescribeDDoSPolicy", async function () {
|
|
632
702
|
try {
|
|
633
703
|
const data = await client.DescribeDDoSPolicy({})
|
|
@@ -668,6 +738,16 @@ it("teo.v20220106.DescribeSecurityPolicy", async function () {
|
|
|
668
738
|
}
|
|
669
739
|
})
|
|
670
740
|
|
|
741
|
+
it("teo.v20220106.DescribeRules", async function () {
|
|
742
|
+
try {
|
|
743
|
+
const data = await client.DescribeRules({})
|
|
744
|
+
expect(data).to.be.ok
|
|
745
|
+
} catch(error) {
|
|
746
|
+
expect(error.requestId).to.be.ok
|
|
747
|
+
expect(error.code).to.be.ok
|
|
748
|
+
}
|
|
749
|
+
})
|
|
750
|
+
|
|
671
751
|
it("teo.v20220106.CreateApplicationProxy", async function () {
|
|
672
752
|
try {
|
|
673
753
|
const data = await client.CreateApplicationProxy({})
|