tencentcloud-sdk-nodejs 4.0.565 → 4.0.566
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 +260 -0
- package/SERVICE_CHANGELOG.md +328 -95
- package/package.json +1 -1
- package/products.md +26 -26
- package/src/common/sdk_version.ts +1 -1
- package/src/services/as/v20180419/as_client.ts +0 -1
- package/src/services/as/v20180419/as_models.ts +23 -1
- package/src/services/asr/v20190614/asr_client.ts +2 -2
- package/src/services/asr/v20190614/asr_models.ts +3 -0
- package/src/services/batch/v20170312/batch_models.ts +6 -4
- package/src/services/ccc/v20200210/ccc_models.ts +8 -8
- package/src/services/ckafka/v20190819/ckafka_client.ts +44 -7
- package/src/services/ckafka/v20190819/ckafka_models.ts +405 -242
- package/src/services/clb/v20180317/clb_models.ts +5 -0
- package/src/services/cme/v20191029/cme_client.ts +41 -12
- package/src/services/cme/v20191029/cme_models.ts +228 -50
- package/src/services/cvm/v20170312/cvm_models.ts +38 -18
- package/src/services/eb/v20210416/eb_client.ts +32 -5
- package/src/services/eb/v20210416/eb_models.ts +277 -37
- package/src/services/monitor/v20180724/monitor_models.ts +5 -0
- package/src/services/redis/v20180412/redis_client.ts +3 -3
- package/src/services/redis/v20180412/redis_models.ts +31 -22
- package/src/services/scf/v20180416/scf_models.ts +9 -0
- package/src/services/tcb/v20180608/tcb_models.ts +7 -7
- package/src/services/trtc/v20190722/trtc_models.ts +1 -1
- package/src/services/tsf/v20180326/tsf_client.ts +123 -26
- package/src/services/tsf/v20180326/tsf_models.ts +383 -81
- package/src/services/vod/v20180717/vod_models.ts +4 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/as/v20180419/as_client.d.ts +0 -1
- package/tencentcloud/services/as/v20180419/as_client.js +0 -1
- package/tencentcloud/services/as/v20180419/as_models.d.ts +19 -1
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +2 -2
- package/tencentcloud/services/asr/v20190614/asr_client.js +2 -2
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +3 -0
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +2 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +7 -7
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +13 -1
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +18 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +326 -188
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +4 -0
- package/tencentcloud/services/cme/v20191029/cme_client.d.ts +27 -9
- package/tencentcloud/services/cme/v20191029/cme_client.js +29 -9
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +193 -43
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +19 -0
- package/tencentcloud/services/eb/v20210416/eb_client.d.ts +9 -1
- package/tencentcloud/services/eb/v20210416/eb_client.js +12 -0
- package/tencentcloud/services/eb/v20210416/eb_models.d.ts +238 -36
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +4 -0
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +3 -3
- package/tencentcloud/services/redis/v20180412/redis_client.js +3 -3
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +27 -18
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +8 -0
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +7 -7
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +39 -7
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +57 -9
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +330 -70
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -4
- package/test/ckafka.v20190819.test.js +30 -0
- package/test/cme.v20191029.test.js +12 -2
- package/test/eb.v20210416.test.js +20 -0
- package/test/tsf.v20180326.test.js +86 -6
|
@@ -178,6 +178,16 @@ it("eb.v20210416.UpdateRule", async function () {
|
|
|
178
178
|
}
|
|
179
179
|
})
|
|
180
180
|
|
|
181
|
+
it("eb.v20210416.DescribeLogTagValue", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.DescribeLogTagValue({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
181
191
|
it("eb.v20210416.DeleteTransformation", async function () {
|
|
182
192
|
try {
|
|
183
193
|
const data = await client.DeleteTransformation({})
|
|
@@ -208,6 +218,16 @@ it("eb.v20210416.GetRule", async function () {
|
|
|
208
218
|
}
|
|
209
219
|
})
|
|
210
220
|
|
|
221
|
+
it("eb.v20210416.SearchLog", async function () {
|
|
222
|
+
try {
|
|
223
|
+
const data = await client.SearchLog({})
|
|
224
|
+
expect(data).to.be.ok
|
|
225
|
+
} catch(error) {
|
|
226
|
+
expect(error.requestId).to.be.ok
|
|
227
|
+
expect(error.code).to.be.ok
|
|
228
|
+
}
|
|
229
|
+
})
|
|
230
|
+
|
|
211
231
|
it("eb.v20210416.DeleteConnection", async function () {
|
|
212
232
|
try {
|
|
213
233
|
const data = await client.DeleteConnection({})
|
|
@@ -328,9 +328,9 @@ it("tsf.v20180326.DescribeFileConfigs", async function () {
|
|
|
328
328
|
}
|
|
329
329
|
})
|
|
330
330
|
|
|
331
|
-
it("tsf.v20180326.
|
|
331
|
+
it("tsf.v20180326.CreateConfigTemplateWithDetailResp", async function () {
|
|
332
332
|
try {
|
|
333
|
-
const data = await client.
|
|
333
|
+
const data = await client.CreateConfigTemplateWithDetailResp({})
|
|
334
334
|
expect(data).to.be.ok
|
|
335
335
|
} catch(error) {
|
|
336
336
|
expect(error.requestId).to.be.ok
|
|
@@ -458,6 +458,16 @@ it("tsf.v20180326.DescribeApplications", async function () {
|
|
|
458
458
|
}
|
|
459
459
|
})
|
|
460
460
|
|
|
461
|
+
it("tsf.v20180326.CreatePathRewritesWithDetailResp", async function () {
|
|
462
|
+
try {
|
|
463
|
+
const data = await client.CreatePathRewritesWithDetailResp({})
|
|
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
|
+
|
|
461
471
|
it("tsf.v20180326.DescribeContainerGroupDeployInfo", async function () {
|
|
462
472
|
try {
|
|
463
473
|
const data = await client.DescribeContainerGroupDeployInfo({})
|
|
@@ -828,6 +838,26 @@ it("tsf.v20180326.DescribeBusinessLogConfigs", async function () {
|
|
|
828
838
|
}
|
|
829
839
|
})
|
|
830
840
|
|
|
841
|
+
it("tsf.v20180326.CreatePublicConfigWithDetailResp", async function () {
|
|
842
|
+
try {
|
|
843
|
+
const data = await client.CreatePublicConfigWithDetailResp({})
|
|
844
|
+
expect(data).to.be.ok
|
|
845
|
+
} catch(error) {
|
|
846
|
+
expect(error.requestId).to.be.ok
|
|
847
|
+
expect(error.code).to.be.ok
|
|
848
|
+
}
|
|
849
|
+
})
|
|
850
|
+
|
|
851
|
+
it("tsf.v20180326.CreateUnitRuleWithDetailResp", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.CreateUnitRuleWithDetailResp({})
|
|
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
|
+
|
|
831
861
|
it("tsf.v20180326.ReleaseConfig", async function () {
|
|
832
862
|
try {
|
|
833
863
|
const data = await client.ReleaseConfig({})
|
|
@@ -1008,6 +1038,16 @@ it("tsf.v20180326.ReleaseFileConfig", async function () {
|
|
|
1008
1038
|
}
|
|
1009
1039
|
})
|
|
1010
1040
|
|
|
1041
|
+
it("tsf.v20180326.DeleteApiRateLimitRule", async function () {
|
|
1042
|
+
try {
|
|
1043
|
+
const data = await client.DeleteApiRateLimitRule({})
|
|
1044
|
+
expect(data).to.be.ok
|
|
1045
|
+
} catch(error) {
|
|
1046
|
+
expect(error.requestId).to.be.ok
|
|
1047
|
+
expect(error.code).to.be.ok
|
|
1048
|
+
}
|
|
1049
|
+
})
|
|
1050
|
+
|
|
1011
1051
|
it("tsf.v20180326.DescribeGroupGateways", async function () {
|
|
1012
1052
|
try {
|
|
1013
1053
|
const data = await client.DescribeGroupGateways({})
|
|
@@ -1368,9 +1408,9 @@ it("tsf.v20180326.CreateLane", async function () {
|
|
|
1368
1408
|
}
|
|
1369
1409
|
})
|
|
1370
1410
|
|
|
1371
|
-
it("tsf.v20180326.
|
|
1411
|
+
it("tsf.v20180326.DescribeContainerEvents", async function () {
|
|
1372
1412
|
try {
|
|
1373
|
-
const data = await client.
|
|
1413
|
+
const data = await client.DescribeContainerEvents({})
|
|
1374
1414
|
expect(data).to.be.ok
|
|
1375
1415
|
} catch(error) {
|
|
1376
1416
|
expect(error.requestId).to.be.ok
|
|
@@ -1418,6 +1458,16 @@ it("tsf.v20180326.UpdateApiGroup", async function () {
|
|
|
1418
1458
|
}
|
|
1419
1459
|
})
|
|
1420
1460
|
|
|
1461
|
+
it("tsf.v20180326.StopGroup", async function () {
|
|
1462
|
+
try {
|
|
1463
|
+
const data = await client.StopGroup({})
|
|
1464
|
+
expect(data).to.be.ok
|
|
1465
|
+
} catch(error) {
|
|
1466
|
+
expect(error.requestId).to.be.ok
|
|
1467
|
+
expect(error.code).to.be.ok
|
|
1468
|
+
}
|
|
1469
|
+
})
|
|
1470
|
+
|
|
1421
1471
|
it("tsf.v20180326.ModifyLane", async function () {
|
|
1422
1472
|
try {
|
|
1423
1473
|
const data = await client.ModifyLane({})
|
|
@@ -1638,6 +1688,16 @@ it("tsf.v20180326.DescribeJvmMonitor", async function () {
|
|
|
1638
1688
|
}
|
|
1639
1689
|
})
|
|
1640
1690
|
|
|
1691
|
+
it("tsf.v20180326.ReleaseConfigWithDetailResp", async function () {
|
|
1692
|
+
try {
|
|
1693
|
+
const data = await client.ReleaseConfigWithDetailResp({})
|
|
1694
|
+
expect(data).to.be.ok
|
|
1695
|
+
} catch(error) {
|
|
1696
|
+
expect(error.requestId).to.be.ok
|
|
1697
|
+
expect(error.code).to.be.ok
|
|
1698
|
+
}
|
|
1699
|
+
})
|
|
1700
|
+
|
|
1641
1701
|
it("tsf.v20180326.DeleteRepository", async function () {
|
|
1642
1702
|
try {
|
|
1643
1703
|
const data = await client.DeleteRepository({})
|
|
@@ -1878,6 +1938,16 @@ it("tsf.v20180326.DescribeEnabledUnitRule", async function () {
|
|
|
1878
1938
|
}
|
|
1879
1939
|
})
|
|
1880
1940
|
|
|
1941
|
+
it("tsf.v20180326.ModifyContainerReplicas", async function () {
|
|
1942
|
+
try {
|
|
1943
|
+
const data = await client.ModifyContainerReplicas({})
|
|
1944
|
+
expect(data).to.be.ok
|
|
1945
|
+
} catch(error) {
|
|
1946
|
+
expect(error.requestId).to.be.ok
|
|
1947
|
+
expect(error.code).to.be.ok
|
|
1948
|
+
}
|
|
1949
|
+
})
|
|
1950
|
+
|
|
1881
1951
|
it("tsf.v20180326.DescribeRepository", async function () {
|
|
1882
1952
|
try {
|
|
1883
1953
|
const data = await client.DescribeRepository({})
|
|
@@ -2018,9 +2088,9 @@ it("tsf.v20180326.UpdateGatewayApi", async function () {
|
|
|
2018
2088
|
}
|
|
2019
2089
|
})
|
|
2020
2090
|
|
|
2021
|
-
it("tsf.v20180326.
|
|
2091
|
+
it("tsf.v20180326.CreateApiRateLimitRuleWithDetailResp", async function () {
|
|
2022
2092
|
try {
|
|
2023
|
-
const data = await client.
|
|
2093
|
+
const data = await client.CreateApiRateLimitRuleWithDetailResp({})
|
|
2024
2094
|
expect(data).to.be.ok
|
|
2025
2095
|
} catch(error) {
|
|
2026
2096
|
expect(error.requestId).to.be.ok
|
|
@@ -2038,6 +2108,16 @@ it("tsf.v20180326.ShrinkGroup", async function () {
|
|
|
2038
2108
|
}
|
|
2039
2109
|
})
|
|
2040
2110
|
|
|
2111
|
+
it("tsf.v20180326.DescribeResourceTaskStatus", async function () {
|
|
2112
|
+
try {
|
|
2113
|
+
const data = await client.DescribeResourceTaskStatus({})
|
|
2114
|
+
expect(data).to.be.ok
|
|
2115
|
+
} catch(error) {
|
|
2116
|
+
expect(error.requestId).to.be.ok
|
|
2117
|
+
expect(error.code).to.be.ok
|
|
2118
|
+
}
|
|
2119
|
+
})
|
|
2120
|
+
|
|
2041
2121
|
it("tsf.v20180326.StartGroup", async function () {
|
|
2042
2122
|
try {
|
|
2043
2123
|
const data = await client.StartGroup({})
|