tencentcloud-sdk-nodejs 4.0.471 → 4.0.472
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 +216 -0
- package/SERVICE_CHANGELOG.md +388 -228
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_client.ts +13 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +87 -47
- package/src/services/asr/v20190614/asr_models.ts +2 -2
- package/src/services/batch/v20170312/batch_models.ts +1 -1
- package/src/services/clb/v20180317/clb_client.ts +4 -2
- package/src/services/clb/v20180317/clb_models.ts +80 -20
- package/src/services/cloudhsm/v20191112/cloudhsm_models.ts +8 -8
- package/src/services/cls/v20201016/cls_models.ts +25 -1
- package/src/services/cvm/v20170312/cvm_client.ts +0 -1
- package/src/services/cvm/v20170312/cvm_models.ts +1 -1
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +19 -7
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +29 -4
- package/src/services/kms/v20190118/kms_models.ts +3 -3
- package/src/services/tcm/v20210413/tcm_client.ts +25 -1
- package/src/services/tcm/v20210413/tcm_models.ts +54 -9
- package/src/services/tcss/v20201101/tcss_client.ts +1 -0
- package/src/services/tcss/v20201101/tcss_models.ts +34 -0
- package/src/services/tdmq/v20200217/tdmq_client.ts +26 -0
- package/src/services/tdmq/v20200217/tdmq_models.ts +169 -0
- package/src/services/teo/v20220901/teo_client.ts +12 -73
- package/src/services/teo/v20220901/teo_models.ts +165 -419
- package/src/services/tke/v20180525/tke_models.ts +1 -1
- package/src/services/vod/v20180717/vod_models.ts +18 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.d.ts +5 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.js +6 -0
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +74 -41
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +2 -2
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +70 -20
- package/tencentcloud/services/cloudhsm/v20191112/cloudhsm_models.d.ts +8 -8
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +21 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +0 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +0 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +7 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +9 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +26 -4
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +3 -3
- package/tencentcloud/services/tcm/v20210413/tcm_client.d.ts +9 -1
- package/tencentcloud/services/tcm/v20210413/tcm_client.js +12 -0
- package/tencentcloud/services/tcm/v20210413/tcm_models.d.ts +48 -8
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +29 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +9 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +12 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +142 -0
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +3 -23
- package/tencentcloud/services/teo/v20220901/teo_client.js +3 -33
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +141 -359
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +16 -4
- package/test/antiddos.v20200309.test.js +10 -0
- package/test/cynosdb.v20190107.test.js +12 -2
- package/test/tcm.v20210413.test.js +20 -0
- package/test/tdmq.v20200217.test.js +20 -0
- package/test/teo.v20220901.test.js +2 -52
|
@@ -38,6 +38,16 @@ it("antiddos.v20200309.ModifyDDoSBlackWhiteIpList", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
+
it("antiddos.v20200309.DescribePendingRiskInfo", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.DescribePendingRiskInfo({})
|
|
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("antiddos.v20200309.DescribeL7RulesBySSLCertId", async function () {
|
|
42
52
|
try {
|
|
43
53
|
const data = await client.DescribeL7RulesBySSLCertId({})
|
|
@@ -108,9 +108,9 @@ it("cynosdb.v20190107.DescribeParamTemplates", async function () {
|
|
|
108
108
|
}
|
|
109
109
|
})
|
|
110
110
|
|
|
111
|
-
it("cynosdb.v20190107.
|
|
111
|
+
it("cynosdb.v20190107.DeleteBackup", async function () {
|
|
112
112
|
try {
|
|
113
|
-
const data = await client.
|
|
113
|
+
const data = await client.DeleteBackup({})
|
|
114
114
|
expect(data).to.be.ok
|
|
115
115
|
} catch(error) {
|
|
116
116
|
expect(error.requestId).to.be.ok
|
|
@@ -138,6 +138,16 @@ it("cynosdb.v20190107.OfflineCluster", async function () {
|
|
|
138
138
|
}
|
|
139
139
|
})
|
|
140
140
|
|
|
141
|
+
it("cynosdb.v20190107.SetRenewFlag", async function () {
|
|
142
|
+
try {
|
|
143
|
+
const data = await client.SetRenewFlag({})
|
|
144
|
+
expect(data).to.be.ok
|
|
145
|
+
} catch(error) {
|
|
146
|
+
expect(error.requestId).to.be.ok
|
|
147
|
+
expect(error.code).to.be.ok
|
|
148
|
+
}
|
|
149
|
+
})
|
|
150
|
+
|
|
141
151
|
it("cynosdb.v20190107.ModifyBackupName", async function () {
|
|
142
152
|
try {
|
|
143
153
|
const data = await client.ModifyBackupName({})
|
|
@@ -38,6 +38,16 @@ it("tcm.v20210413.LinkClusterList", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
+
it("tcm.v20210413.LinkPrometheus", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.LinkPrometheus({})
|
|
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("tcm.v20210413.DescribeMeshList", async function () {
|
|
42
52
|
try {
|
|
43
53
|
const data = await client.DescribeMeshList({})
|
|
@@ -58,6 +68,16 @@ it("tcm.v20210413.UnlinkCluster", async function () {
|
|
|
58
68
|
}
|
|
59
69
|
})
|
|
60
70
|
|
|
71
|
+
it("tcm.v20210413.UnlinkPrometheus", async function () {
|
|
72
|
+
try {
|
|
73
|
+
const data = await client.UnlinkPrometheus({})
|
|
74
|
+
expect(data).to.be.ok
|
|
75
|
+
} catch(error) {
|
|
76
|
+
expect(error.requestId).to.be.ok
|
|
77
|
+
expect(error.code).to.be.ok
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
|
|
61
81
|
it("tcm.v20210413.ModifyMesh", async function () {
|
|
62
82
|
try {
|
|
63
83
|
const data = await client.ModifyMesh({})
|
|
@@ -128,6 +128,16 @@ it("tdmq.v20200217.DeleteRocketMQGroup", async function () {
|
|
|
128
128
|
}
|
|
129
129
|
})
|
|
130
130
|
|
|
131
|
+
it("tdmq.v20200217.DescribeRabbitMQVipInstances", async function () {
|
|
132
|
+
try {
|
|
133
|
+
const data = await client.DescribeRabbitMQVipInstances({})
|
|
134
|
+
expect(data).to.be.ok
|
|
135
|
+
} catch(error) {
|
|
136
|
+
expect(error.requestId).to.be.ok
|
|
137
|
+
expect(error.code).to.be.ok
|
|
138
|
+
}
|
|
139
|
+
})
|
|
140
|
+
|
|
131
141
|
it("tdmq.v20200217.RewindCmqQueue", async function () {
|
|
132
142
|
try {
|
|
133
143
|
const data = await client.RewindCmqQueue({})
|
|
@@ -538,6 +548,16 @@ it("tdmq.v20200217.ResetMsgSubOffsetByTimestamp", async function () {
|
|
|
538
548
|
}
|
|
539
549
|
})
|
|
540
550
|
|
|
551
|
+
it("tdmq.v20200217.DescribeRabbitMQNodeList", async function () {
|
|
552
|
+
try {
|
|
553
|
+
const data = await client.DescribeRabbitMQNodeList({})
|
|
554
|
+
expect(data).to.be.ok
|
|
555
|
+
} catch(error) {
|
|
556
|
+
expect(error.requestId).to.be.ok
|
|
557
|
+
expect(error.code).to.be.ok
|
|
558
|
+
}
|
|
559
|
+
})
|
|
560
|
+
|
|
541
561
|
it("tdmq.v20200217.DescribeBindVpcs", async function () {
|
|
542
562
|
try {
|
|
543
563
|
const data = await client.DescribeBindVpcs({})
|
|
@@ -318,9 +318,9 @@ it("teo.v20220901.CreatePrefetchTask", async function () {
|
|
|
318
318
|
}
|
|
319
319
|
})
|
|
320
320
|
|
|
321
|
-
it("teo.v20220901.
|
|
321
|
+
it("teo.v20220901.DescribeLogTopicTaskDetail", async function () {
|
|
322
322
|
try {
|
|
323
|
-
const data = await client.
|
|
323
|
+
const data = await client.DescribeLogTopicTaskDetail({})
|
|
324
324
|
expect(data).to.be.ok
|
|
325
325
|
} catch(error) {
|
|
326
326
|
expect(error.requestId).to.be.ok
|
|
@@ -548,16 +548,6 @@ it("teo.v20220901.DescribeBotData", async function () {
|
|
|
548
548
|
}
|
|
549
549
|
})
|
|
550
550
|
|
|
551
|
-
it("teo.v20220901.CreateAliasDomain", async function () {
|
|
552
|
-
try {
|
|
553
|
-
const data = await client.CreateAliasDomain({})
|
|
554
|
-
expect(data).to.be.ok
|
|
555
|
-
} catch(error) {
|
|
556
|
-
expect(error.requestId).to.be.ok
|
|
557
|
-
expect(error.code).to.be.ok
|
|
558
|
-
}
|
|
559
|
-
})
|
|
560
|
-
|
|
561
551
|
it("teo.v20220901.DescribeWebProtectionHitRuleDetail", async function () {
|
|
562
552
|
try {
|
|
563
553
|
const data = await client.DescribeWebProtectionHitRuleDetail({})
|
|
@@ -568,16 +558,6 @@ it("teo.v20220901.DescribeWebProtectionHitRuleDetail", async function () {
|
|
|
568
558
|
}
|
|
569
559
|
})
|
|
570
560
|
|
|
571
|
-
it("teo.v20220901.ModifyAliasDomainStatus", async function () {
|
|
572
|
-
try {
|
|
573
|
-
const data = await client.ModifyAliasDomainStatus({})
|
|
574
|
-
expect(data).to.be.ok
|
|
575
|
-
} catch(error) {
|
|
576
|
-
expect(error.requestId).to.be.ok
|
|
577
|
-
expect(error.code).to.be.ok
|
|
578
|
-
}
|
|
579
|
-
})
|
|
580
|
-
|
|
581
561
|
it("teo.v20220901.DescribeTopL7CacheData", async function () {
|
|
582
562
|
try {
|
|
583
563
|
const data = await client.DescribeTopL7CacheData({})
|
|
@@ -638,16 +618,6 @@ it("teo.v20220901.ModifySecurityPolicy", async function () {
|
|
|
638
618
|
}
|
|
639
619
|
})
|
|
640
620
|
|
|
641
|
-
it("teo.v20220901.DescribeLogTopicTaskDetail", async function () {
|
|
642
|
-
try {
|
|
643
|
-
const data = await client.DescribeLogTopicTaskDetail({})
|
|
644
|
-
expect(data).to.be.ok
|
|
645
|
-
} catch(error) {
|
|
646
|
-
expect(error.requestId).to.be.ok
|
|
647
|
-
expect(error.code).to.be.ok
|
|
648
|
-
}
|
|
649
|
-
})
|
|
650
|
-
|
|
651
621
|
it("teo.v20220901.ModifyRulePriority", async function () {
|
|
652
622
|
try {
|
|
653
623
|
const data = await client.ModifyRulePriority({})
|
|
@@ -998,16 +968,6 @@ it("teo.v20220901.SwitchLogTopicTask", async function () {
|
|
|
998
968
|
}
|
|
999
969
|
})
|
|
1000
970
|
|
|
1001
|
-
it("teo.v20220901.ModifyAliasDomain", async function () {
|
|
1002
|
-
try {
|
|
1003
|
-
const data = await client.ModifyAliasDomain({})
|
|
1004
|
-
expect(data).to.be.ok
|
|
1005
|
-
} catch(error) {
|
|
1006
|
-
expect(error.requestId).to.be.ok
|
|
1007
|
-
expect(error.code).to.be.ok
|
|
1008
|
-
}
|
|
1009
|
-
})
|
|
1010
|
-
|
|
1011
971
|
it("teo.v20220901.DescribeDnssec", async function () {
|
|
1012
972
|
try {
|
|
1013
973
|
const data = await client.DescribeDnssec({})
|
|
@@ -1238,16 +1198,6 @@ it("teo.v20220901.DescribeWebManagedRulesData", async function () {
|
|
|
1238
1198
|
}
|
|
1239
1199
|
})
|
|
1240
1200
|
|
|
1241
|
-
it("teo.v20220901.DescribeAliasDomains", async function () {
|
|
1242
|
-
try {
|
|
1243
|
-
const data = await client.DescribeAliasDomains({})
|
|
1244
|
-
expect(data).to.be.ok
|
|
1245
|
-
} catch(error) {
|
|
1246
|
-
expect(error.requestId).to.be.ok
|
|
1247
|
-
expect(error.code).to.be.ok
|
|
1248
|
-
}
|
|
1249
|
-
})
|
|
1250
|
-
|
|
1251
1201
|
it("teo.v20220901.DescribeBillingData", async function () {
|
|
1252
1202
|
try {
|
|
1253
1203
|
const data = await client.DescribeBillingData({})
|