tencentcloud-sdk-nodejs 4.0.996 → 4.0.997
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 +259 -0
- package/SERVICE_CHANGELOG.md +341 -96
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +40 -35
- package/src/services/dsgc/v20190723/dsgc_client.ts +1 -5
- package/src/services/dsgc/v20190723/dsgc_models.ts +190 -677
- package/src/services/ess/v20201111/ess_models.ts +19 -16
- package/src/services/essbasic/v20210526/essbasic_models.ts +17 -13
- package/src/services/keewidb/v20220308/keewidb_models.ts +60 -55
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +11 -11
- package/src/services/monitor/v20180724/monitor_client.ts +29 -2
- package/src/services/monitor/v20180724/monitor_models.ts +143 -24
- package/src/services/ocr/v20181119/ocr_client.ts +2 -2
- package/src/services/ocr/v20181119/ocr_models.ts +4 -0
- package/src/services/privatedns/v20201028/privatedns_client.ts +1 -1
- package/src/services/privatedns/v20201028/privatedns_models.ts +23 -22
- package/src/services/tdmq/v20200217/tdmq_client.ts +1 -1
- package/src/services/tdmq/v20200217/tdmq_models.ts +11 -2
- package/src/services/teo/v20220901/teo_client.ts +129 -19
- package/src/services/teo/v20220901/teo_models.ts +534 -131
- package/src/services/thpc/v20211109/thpc_models.ts +14 -14
- package/src/services/thpc/v20220401/thpc_models.ts +4 -5
- package/src/services/tiia/v20190529/tiia_client.ts +14 -23
- package/src/services/tiia/v20190529/tiia_models.ts +99 -119
- 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 +40 -35
- package/tencentcloud/services/dsgc/v20190723/dsgc_client.d.ts +1 -5
- package/tencentcloud/services/dsgc/v20190723/dsgc_client.js +1 -5
- package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +190 -677
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +19 -16
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +17 -13
- package/tencentcloud/services/keewidb/v20220308/keewidb_models.d.ts +60 -55
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +11 -11
- package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +9 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.js +12 -0
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +136 -24
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +2 -2
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +2 -2
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +4 -0
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +1 -1
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +1 -1
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +23 -22
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +1 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +11 -2
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +41 -5
- package/tencentcloud/services/teo/v20220901/teo_client.js +60 -6
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +521 -138
- package/tencentcloud/services/thpc/v20211109/thpc_models.d.ts +14 -14
- package/tencentcloud/services/thpc/v20220401/thpc_models.d.ts +4 -5
- package/tencentcloud/services/tiia/v20190529/tiia_client.d.ts +14 -23
- package/tencentcloud/services/tiia/v20190529/tiia_client.js +14 -23
- package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +99 -119
- package/test/monitor.v20180724.test.js +20 -0
- package/test/teo.v20220901.test.js +94 -4
|
@@ -688,6 +688,16 @@ it("monitor.v20180724.DeleteSSOAccount", async function () {
|
|
|
688
688
|
}
|
|
689
689
|
})
|
|
690
690
|
|
|
691
|
+
it("monitor.v20180724.DescribeRemoteURLs", async function () {
|
|
692
|
+
try {
|
|
693
|
+
const data = await client.DescribeRemoteURLs({})
|
|
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
|
+
|
|
691
701
|
it("monitor.v20180724.UpdatePrometheusAlertGroupState", async function () {
|
|
692
702
|
try {
|
|
693
703
|
const data = await client.UpdatePrometheusAlertGroupState({})
|
|
@@ -878,6 +888,16 @@ it("monitor.v20180724.SyncPrometheusTemp", async function () {
|
|
|
878
888
|
}
|
|
879
889
|
})
|
|
880
890
|
|
|
891
|
+
it("monitor.v20180724.ModifyRemoteURLs", async function () {
|
|
892
|
+
try {
|
|
893
|
+
const data = await client.ModifyRemoteURLs({})
|
|
894
|
+
expect(data).to.be.ok
|
|
895
|
+
} catch(error) {
|
|
896
|
+
expect(error.requestId).to.be.ok
|
|
897
|
+
expect(error.code).to.be.ok
|
|
898
|
+
}
|
|
899
|
+
})
|
|
900
|
+
|
|
881
901
|
it("monitor.v20180724.CreateAlarmNotice", async function () {
|
|
882
902
|
try {
|
|
883
903
|
const data = await client.CreateAlarmNotice({})
|
|
@@ -28,9 +28,9 @@ it("teo.v20220901.DestroyPlan", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("teo.v20220901.
|
|
31
|
+
it("teo.v20220901.CreateDnsRecord", async function () {
|
|
32
32
|
try {
|
|
33
|
-
const data = await client.
|
|
33
|
+
const data = await client.CreateDnsRecord({})
|
|
34
34
|
expect(data).to.be.ok
|
|
35
35
|
} catch(error) {
|
|
36
36
|
expect(error.requestId).to.be.ok
|
|
@@ -48,6 +48,16 @@ it("teo.v20220901.ExportZoneConfig", async function () {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
+
it("teo.v20220901.DescribeContentIdentifiers", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.DescribeContentIdentifiers({})
|
|
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
|
+
|
|
51
61
|
it("teo.v20220901.DeleteFunction", async function () {
|
|
52
62
|
try {
|
|
53
63
|
const data = await client.DeleteFunction({})
|
|
@@ -448,6 +458,16 @@ it("teo.v20220901.ModifyL4ProxyRules", async function () {
|
|
|
448
458
|
}
|
|
449
459
|
})
|
|
450
460
|
|
|
461
|
+
it("teo.v20220901.ModifyDnsRecords", async function () {
|
|
462
|
+
try {
|
|
463
|
+
const data = await client.ModifyDnsRecords({})
|
|
464
|
+
expect(data).to.be.ok
|
|
465
|
+
} catch(error) {
|
|
466
|
+
expect(error.requestId).to.be.ok
|
|
467
|
+
expect(error.code).to.be.ok
|
|
468
|
+
}
|
|
469
|
+
})
|
|
470
|
+
|
|
451
471
|
it("teo.v20220901.DescribeTimingL7CacheData", async function () {
|
|
452
472
|
try {
|
|
453
473
|
const data = await client.DescribeTimingL7CacheData({})
|
|
@@ -498,6 +518,16 @@ it("teo.v20220901.ModifyAliasDomainStatus", async function () {
|
|
|
498
518
|
}
|
|
499
519
|
})
|
|
500
520
|
|
|
521
|
+
it("teo.v20220901.DescribeDnsRecords", async function () {
|
|
522
|
+
try {
|
|
523
|
+
const data = await client.DescribeDnsRecords({})
|
|
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
|
+
|
|
501
531
|
it("teo.v20220901.CreateL4ProxyRules", async function () {
|
|
502
532
|
try {
|
|
503
533
|
const data = await client.CreateL4ProxyRules({})
|
|
@@ -548,6 +578,16 @@ it("teo.v20220901.DescribeTopL7AnalysisData", async function () {
|
|
|
548
578
|
}
|
|
549
579
|
})
|
|
550
580
|
|
|
581
|
+
it("teo.v20220901.DeleteDnsRecords", async function () {
|
|
582
|
+
try {
|
|
583
|
+
const data = await client.DeleteDnsRecords({})
|
|
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
|
+
|
|
551
591
|
it("teo.v20220901.ModifySecurityPolicy", async function () {
|
|
552
592
|
try {
|
|
553
593
|
const data = await client.ModifySecurityPolicy({})
|
|
@@ -578,9 +618,9 @@ it("teo.v20220901.BindZoneToPlan", async function () {
|
|
|
578
618
|
}
|
|
579
619
|
})
|
|
580
620
|
|
|
581
|
-
it("teo.v20220901.
|
|
621
|
+
it("teo.v20220901.DescribeOriginGroupHealthStatus", async function () {
|
|
582
622
|
try {
|
|
583
|
-
const data = await client.
|
|
623
|
+
const data = await client.DescribeOriginGroupHealthStatus({})
|
|
584
624
|
expect(data).to.be.ok
|
|
585
625
|
} catch(error) {
|
|
586
626
|
expect(error.requestId).to.be.ok
|
|
@@ -708,6 +748,16 @@ it("teo.v20220901.CreateConfigGroupVersion", async function () {
|
|
|
708
748
|
}
|
|
709
749
|
})
|
|
710
750
|
|
|
751
|
+
it("teo.v20220901.ModifyDnsRecordsStatus", async function () {
|
|
752
|
+
try {
|
|
753
|
+
const data = await client.ModifyDnsRecordsStatus({})
|
|
754
|
+
expect(data).to.be.ok
|
|
755
|
+
} catch(error) {
|
|
756
|
+
expect(error.requestId).to.be.ok
|
|
757
|
+
expect(error.code).to.be.ok
|
|
758
|
+
}
|
|
759
|
+
})
|
|
760
|
+
|
|
711
761
|
it("teo.v20220901.ModifyFunction", async function () {
|
|
712
762
|
try {
|
|
713
763
|
const data = await client.ModifyFunction({})
|
|
@@ -778,6 +828,16 @@ it("teo.v20220901.DeleteLoadBalancer", async function () {
|
|
|
778
828
|
}
|
|
779
829
|
})
|
|
780
830
|
|
|
831
|
+
it("teo.v20220901.DeleteContentIdentifier", async function () {
|
|
832
|
+
try {
|
|
833
|
+
const data = await client.DeleteContentIdentifier({})
|
|
834
|
+
expect(data).to.be.ok
|
|
835
|
+
} catch(error) {
|
|
836
|
+
expect(error.requestId).to.be.ok
|
|
837
|
+
expect(error.code).to.be.ok
|
|
838
|
+
}
|
|
839
|
+
})
|
|
840
|
+
|
|
781
841
|
it("teo.v20220901.DescribeRulesSetting", async function () {
|
|
782
842
|
try {
|
|
783
843
|
const data = await client.DescribeRulesSetting({})
|
|
@@ -888,6 +948,26 @@ it("teo.v20220901.HandleFunctionRuntimeEnvironment", async function () {
|
|
|
888
948
|
}
|
|
889
949
|
})
|
|
890
950
|
|
|
951
|
+
it("teo.v20220901.DescribeDDoSAttackEvent", async function () {
|
|
952
|
+
try {
|
|
953
|
+
const data = await client.DescribeDDoSAttackEvent({})
|
|
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
|
+
|
|
961
|
+
it("teo.v20220901.ModifyContentIdentifier", async function () {
|
|
962
|
+
try {
|
|
963
|
+
const data = await client.ModifyContentIdentifier({})
|
|
964
|
+
expect(data).to.be.ok
|
|
965
|
+
} catch(error) {
|
|
966
|
+
expect(error.requestId).to.be.ok
|
|
967
|
+
expect(error.code).to.be.ok
|
|
968
|
+
}
|
|
969
|
+
})
|
|
970
|
+
|
|
891
971
|
it("teo.v20220901.UpgradePlan", async function () {
|
|
892
972
|
try {
|
|
893
973
|
const data = await client.UpgradePlan({})
|
|
@@ -1128,6 +1208,16 @@ it("teo.v20220901.DescribeZoneConfigImportResult", async function () {
|
|
|
1128
1208
|
}
|
|
1129
1209
|
})
|
|
1130
1210
|
|
|
1211
|
+
it("teo.v20220901.CreateContentIdentifier", async function () {
|
|
1212
|
+
try {
|
|
1213
|
+
const data = await client.CreateContentIdentifier({})
|
|
1214
|
+
expect(data).to.be.ok
|
|
1215
|
+
} catch(error) {
|
|
1216
|
+
expect(error.requestId).to.be.ok
|
|
1217
|
+
expect(error.code).to.be.ok
|
|
1218
|
+
}
|
|
1219
|
+
})
|
|
1220
|
+
|
|
1131
1221
|
it("teo.v20220901.DeleteSecurityIPGroup", async function () {
|
|
1132
1222
|
try {
|
|
1133
1223
|
const data = await client.DeleteSecurityIPGroup({})
|