tencentcloud-sdk-nodejs 4.0.609 → 4.0.610
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 +280 -0
- package/SERVICE_CHANGELOG.md +358 -113
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/car/v20220110/car_models.ts +8 -0
- package/src/services/ccc/v20200210/ccc_models.ts +15 -15
- package/src/services/chdfs/v20201112/chdfs_models.ts +6 -6
- package/src/services/cwp/v20180228/cwp_client.ts +4 -2
- package/src/services/cwp/v20180228/cwp_models.ts +19 -4
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +137 -24
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +949 -314
- package/src/services/ess/v20201111/ess_models.ts +65 -34
- package/src/services/facefusion/v20220927/facefusion_models.ts +6 -0
- package/src/services/live/v20180801/live_models.ts +4 -4
- package/src/services/redis/v20180412/redis_models.ts +12 -12
- package/src/services/scf/v20180416/scf_models.ts +6 -6
- package/src/services/tcr/v20190924/tcr_client.ts +4 -2
- package/src/services/tcr/v20190924/tcr_models.ts +8 -3
- package/src/services/thpc/v20230321/thpc_models.ts +25 -0
- package/src/services/trtc/v20190722/trtc_models.ts +6 -4
- package/src/services/vod/v20180717/vod_client.ts +1 -1
- package/src/services/wedata/v20210820/wedata_models.ts +90 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/car/v20220110/car_models.d.ts +7 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +15 -15
- package/tencentcloud/services/chdfs/v20201112/chdfs_models.d.ts +6 -6
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +3 -1
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +3 -1
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +16 -4
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +41 -5
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +60 -6
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +788 -244
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +61 -34
- package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +5 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -4
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +12 -12
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +6 -6
- package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +2 -0
- package/tencentcloud/services/tcr/v20190924/tcr_client.js +2 -0
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +7 -3
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +20 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +2 -0
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_client.js +1 -1
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +74 -1
- package/test/cynosdb.v20190107.test.js +94 -4
|
@@ -38,6 +38,16 @@ it("cynosdb.v20190107.DescribeBackupConfig", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
+
it("cynosdb.v20190107.ModifyResourcePackageClusters", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.ModifyResourcePackageClusters({})
|
|
44
|
+
expect(data).to.be.ok
|
|
45
|
+
} catch(error) {
|
|
46
|
+
expect(error.requestId).to.be.ok
|
|
47
|
+
expect(error.code).to.be.ok
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
|
|
41
51
|
it("cynosdb.v20190107.CreateAuditRuleTemplate", async function () {
|
|
42
52
|
try {
|
|
43
53
|
const data = await client.CreateAuditRuleTemplate({})
|
|
@@ -468,6 +478,16 @@ it("cynosdb.v20190107.CreateAccounts", async function () {
|
|
|
468
478
|
}
|
|
469
479
|
})
|
|
470
480
|
|
|
481
|
+
it("cynosdb.v20190107.CreateResourcePackage", async function () {
|
|
482
|
+
try {
|
|
483
|
+
const data = await client.CreateResourcePackage({})
|
|
484
|
+
expect(data).to.be.ok
|
|
485
|
+
} catch(error) {
|
|
486
|
+
expect(error.requestId).to.be.ok
|
|
487
|
+
expect(error.code).to.be.ok
|
|
488
|
+
}
|
|
489
|
+
})
|
|
490
|
+
|
|
471
491
|
it("cynosdb.v20190107.DescribeAuditLogFiles", async function () {
|
|
472
492
|
try {
|
|
473
493
|
const data = await client.DescribeAuditLogFiles({})
|
|
@@ -628,6 +648,16 @@ it("cynosdb.v20190107.ModifyInstanceParam", async function () {
|
|
|
628
648
|
}
|
|
629
649
|
})
|
|
630
650
|
|
|
651
|
+
it("cynosdb.v20190107.BindClusterResourcePackages", async function () {
|
|
652
|
+
try {
|
|
653
|
+
const data = await client.BindClusterResourcePackages({})
|
|
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
|
+
|
|
631
661
|
it("cynosdb.v20190107.DescribeAuditLogs", async function () {
|
|
632
662
|
try {
|
|
633
663
|
const data = await client.DescribeAuditLogs({})
|
|
@@ -638,6 +668,16 @@ it("cynosdb.v20190107.DescribeAuditLogs", async function () {
|
|
|
638
668
|
}
|
|
639
669
|
})
|
|
640
670
|
|
|
671
|
+
it("cynosdb.v20190107.UnbindClusterResourcePackages", async function () {
|
|
672
|
+
try {
|
|
673
|
+
const data = await client.UnbindClusterResourcePackages({})
|
|
674
|
+
expect(data).to.be.ok
|
|
675
|
+
} catch(error) {
|
|
676
|
+
expect(error.requestId).to.be.ok
|
|
677
|
+
expect(error.code).to.be.ok
|
|
678
|
+
}
|
|
679
|
+
})
|
|
680
|
+
|
|
641
681
|
it("cynosdb.v20190107.OpenWan", async function () {
|
|
642
682
|
try {
|
|
643
683
|
const data = await client.OpenWan({})
|
|
@@ -668,6 +708,16 @@ it("cynosdb.v20190107.AssociateSecurityGroups", async function () {
|
|
|
668
708
|
}
|
|
669
709
|
})
|
|
670
710
|
|
|
711
|
+
it("cynosdb.v20190107.DescribeResourcePackageSaleSpec", async function () {
|
|
712
|
+
try {
|
|
713
|
+
const data = await client.DescribeResourcePackageSaleSpec({})
|
|
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
|
+
|
|
671
721
|
it("cynosdb.v20190107.ModifyAccountPrivileges", async function () {
|
|
672
722
|
try {
|
|
673
723
|
const data = await client.ModifyAccountPrivileges({})
|
|
@@ -748,6 +798,16 @@ it("cynosdb.v20190107.InquirePriceRenew", async function () {
|
|
|
748
798
|
}
|
|
749
799
|
})
|
|
750
800
|
|
|
801
|
+
it("cynosdb.v20190107.SearchClusterDatabases", async function () {
|
|
802
|
+
try {
|
|
803
|
+
const data = await client.SearchClusterDatabases({})
|
|
804
|
+
expect(data).to.be.ok
|
|
805
|
+
} catch(error) {
|
|
806
|
+
expect(error.requestId).to.be.ok
|
|
807
|
+
expect(error.code).to.be.ok
|
|
808
|
+
}
|
|
809
|
+
})
|
|
810
|
+
|
|
751
811
|
it("cynosdb.v20190107.ModifyAuditRuleTemplates", async function () {
|
|
752
812
|
try {
|
|
753
813
|
const data = await client.ModifyAuditRuleTemplates({})
|
|
@@ -788,6 +848,16 @@ it("cynosdb.v20190107.CreateClusterDatabase", async function () {
|
|
|
788
848
|
}
|
|
789
849
|
})
|
|
790
850
|
|
|
851
|
+
it("cynosdb.v20190107.OpenAuditService", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.OpenAuditService({})
|
|
854
|
+
expect(data).to.be.ok
|
|
855
|
+
} catch(error) {
|
|
856
|
+
expect(error.requestId).to.be.ok
|
|
857
|
+
expect(error.code).to.be.ok
|
|
858
|
+
}
|
|
859
|
+
})
|
|
860
|
+
|
|
791
861
|
it("cynosdb.v20190107.DeleteAuditLogFile", async function () {
|
|
792
862
|
try {
|
|
793
863
|
const data = await client.DeleteAuditLogFile({})
|
|
@@ -808,6 +878,16 @@ it("cynosdb.v20190107.DescribeAuditRuleTemplates", async function () {
|
|
|
808
878
|
}
|
|
809
879
|
})
|
|
810
880
|
|
|
881
|
+
it("cynosdb.v20190107.DescribeResourcePackageDetail", async function () {
|
|
882
|
+
try {
|
|
883
|
+
const data = await client.DescribeResourcePackageDetail({})
|
|
884
|
+
expect(data).to.be.ok
|
|
885
|
+
} catch(error) {
|
|
886
|
+
expect(error.requestId).to.be.ok
|
|
887
|
+
expect(error.code).to.be.ok
|
|
888
|
+
}
|
|
889
|
+
})
|
|
890
|
+
|
|
811
891
|
it("cynosdb.v20190107.ModifyBackupConfig", async function () {
|
|
812
892
|
try {
|
|
813
893
|
const data = await client.ModifyBackupConfig({})
|
|
@@ -838,9 +918,9 @@ it("cynosdb.v20190107.UpgradeClusterVersion", async function () {
|
|
|
838
918
|
}
|
|
839
919
|
})
|
|
840
920
|
|
|
841
|
-
it("cynosdb.v20190107.
|
|
921
|
+
it("cynosdb.v20190107.DescribeResourcePackageList", async function () {
|
|
842
922
|
try {
|
|
843
|
-
const data = await client.
|
|
923
|
+
const data = await client.DescribeResourcePackageList({})
|
|
844
924
|
expect(data).to.be.ok
|
|
845
925
|
} catch(error) {
|
|
846
926
|
expect(error.requestId).to.be.ok
|
|
@@ -858,6 +938,16 @@ it("cynosdb.v20190107.DescribeClusterParams", async function () {
|
|
|
858
938
|
}
|
|
859
939
|
})
|
|
860
940
|
|
|
941
|
+
it("cynosdb.v20190107.RefundResourcePackage", async function () {
|
|
942
|
+
try {
|
|
943
|
+
const data = await client.RefundResourcePackage({})
|
|
944
|
+
expect(data).to.be.ok
|
|
945
|
+
} catch(error) {
|
|
946
|
+
expect(error.requestId).to.be.ok
|
|
947
|
+
expect(error.code).to.be.ok
|
|
948
|
+
}
|
|
949
|
+
})
|
|
950
|
+
|
|
861
951
|
it("cynosdb.v20190107.ModifyInstanceName", async function () {
|
|
862
952
|
try {
|
|
863
953
|
const data = await client.ModifyInstanceName({})
|
|
@@ -1048,9 +1138,9 @@ it("cynosdb.v20190107.OpenClusterPasswordComplexity", async function () {
|
|
|
1048
1138
|
}
|
|
1049
1139
|
})
|
|
1050
1140
|
|
|
1051
|
-
it("cynosdb.v20190107.
|
|
1141
|
+
it("cynosdb.v20190107.ModifyResourcePackageName", async function () {
|
|
1052
1142
|
try {
|
|
1053
|
-
const data = await client.
|
|
1143
|
+
const data = await client.ModifyResourcePackageName({})
|
|
1054
1144
|
expect(data).to.be.ok
|
|
1055
1145
|
} catch(error) {
|
|
1056
1146
|
expect(error.requestId).to.be.ok
|