tencentcloud-sdk-nodejs 4.0.459 → 4.0.460
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 +201 -0
- package/SERVICE_CHANGELOG.md +286 -46
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bma/v20210624/bma_models.ts +92 -92
- package/src/services/cbs/v20170312/cbs_models.ts +18 -18
- package/src/services/ckafka/v20190819/ckafka_client.ts +1 -0
- package/src/services/ckafka/v20190819/ckafka_models.ts +64 -0
- package/src/services/cpdp/v20190820/cpdp_models.ts +30 -0
- package/src/services/cwp/v20180228/cwp_models.ts +2 -2
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +5 -0
- package/src/services/dc/v20180410/dc_models.ts +6 -0
- package/src/services/lcic/v20220817/lcic_client.ts +25 -0
- package/src/services/lcic/v20220817/lcic_models.ts +121 -0
- package/src/services/redis/v20180412/redis_models.ts +87 -51
- package/src/services/ssl/v20191205/ssl_models.ts +5 -0
- package/src/services/tdcpg/v20211118/tdcpg_models.ts +22 -1
- package/src/services/trtc/v20190722/trtc_client.ts +128 -59
- package/src/services/trtc/v20190722/trtc_models.ts +189 -0
- package/src/services/vod/v20180717/vod_models.ts +2 -2
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +92 -92
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +17 -17
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +54 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +25 -0
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2 -2
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +4 -0
- package/tencentcloud/services/dc/v20180410/dc_models.d.ts +5 -0
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +9 -1
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +12 -0
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +103 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +81 -51
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +4 -0
- package/tencentcloud/services/tdcpg/v20211118/tdcpg_models.d.ts +19 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +75 -39
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +89 -45
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +161 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +2 -2
- package/test/lcic.v20220817.test.js +20 -0
- package/test/trtc.v20190722.test.js +46 -6
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.lcic.v20220817.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("lcic.v20220817.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("lcic.v20220817.CreateDocument", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.CreateDocument({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("lcic.v20220817.DescribeUser", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.DescribeUser({})
|
|
@@ -68,6 +78,16 @@ it("lcic.v20220817.CreateSupervisor", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
81
|
+
it("lcic.v20220817.SetAppCustomContent", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.SetAppCustomContent({})
|
|
84
|
+
expect(data).to.be.ok
|
|
85
|
+
} catch(error) {
|
|
86
|
+
expect(error.requestId).to.be.ok
|
|
87
|
+
expect(error.code).to.be.ok
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
71
91
|
it("lcic.v20220817.DescribeRoom", async function () {
|
|
72
92
|
try {
|
|
73
93
|
const data = await client.DescribeRoom({})
|
|
@@ -28,9 +28,9 @@ it("trtc.v20190722.DescribeRoomInfo", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("trtc.v20190722.
|
|
31
|
+
it("trtc.v20190722.DescribeTrtcUsage", async function () {
|
|
32
32
|
try {
|
|
33
|
-
const data = await client.
|
|
33
|
+
const data = await client.DescribeTrtcUsage({})
|
|
34
34
|
expect(data).to.be.ok
|
|
35
35
|
} catch(error) {
|
|
36
36
|
expect(error.requestId).to.be.ok
|
|
@@ -58,6 +58,16 @@ it("trtc.v20190722.StopMCUMixTranscode", async function () {
|
|
|
58
58
|
}
|
|
59
59
|
})
|
|
60
60
|
|
|
61
|
+
it("trtc.v20190722.StartMCUMixTranscodeByStrRoomId", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.StartMCUMixTranscodeByStrRoomId({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
61
71
|
it("trtc.v20190722.DeletePicture", async function () {
|
|
62
72
|
try {
|
|
63
73
|
const data = await client.DeletePicture({})
|
|
@@ -108,6 +118,16 @@ it("trtc.v20190722.DescribeUserEvent", async function () {
|
|
|
108
118
|
}
|
|
109
119
|
})
|
|
110
120
|
|
|
121
|
+
it("trtc.v20190722.StartMCUMixTranscode", async function () {
|
|
122
|
+
try {
|
|
123
|
+
const data = await client.StartMCUMixTranscode({})
|
|
124
|
+
expect(data).to.be.ok
|
|
125
|
+
} catch(error) {
|
|
126
|
+
expect(error.requestId).to.be.ok
|
|
127
|
+
expect(error.code).to.be.ok
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
|
|
111
131
|
it("trtc.v20190722.CreateCloudRecording", async function () {
|
|
112
132
|
try {
|
|
113
133
|
const data = await client.CreateCloudRecording({})
|
|
@@ -138,9 +158,9 @@ it("trtc.v20190722.DescribeScaleInfo", async function () {
|
|
|
138
158
|
}
|
|
139
159
|
})
|
|
140
160
|
|
|
141
|
-
it("trtc.v20190722.
|
|
161
|
+
it("trtc.v20190722.DescribeRelayUsage", async function () {
|
|
142
162
|
try {
|
|
143
|
-
const data = await client.
|
|
163
|
+
const data = await client.DescribeRelayUsage({})
|
|
144
164
|
expect(data).to.be.ok
|
|
145
165
|
} catch(error) {
|
|
146
166
|
expect(error.requestId).to.be.ok
|
|
@@ -178,9 +198,9 @@ it("trtc.v20190722.StopMCUMixTranscodeByStrRoomId", async function () {
|
|
|
178
198
|
}
|
|
179
199
|
})
|
|
180
200
|
|
|
181
|
-
it("trtc.v20190722.
|
|
201
|
+
it("trtc.v20190722.DescribeRecordingUsage", async function () {
|
|
182
202
|
try {
|
|
183
|
-
const data = await client.
|
|
203
|
+
const data = await client.DescribeRecordingUsage({})
|
|
184
204
|
expect(data).to.be.ok
|
|
185
205
|
} catch(error) {
|
|
186
206
|
expect(error.requestId).to.be.ok
|
|
@@ -198,6 +218,16 @@ it("trtc.v20190722.RemoveUserByStrRoomId", async function () {
|
|
|
198
218
|
}
|
|
199
219
|
})
|
|
200
220
|
|
|
221
|
+
it("trtc.v20190722.DescribeMixTranscodingUsage", async function () {
|
|
222
|
+
try {
|
|
223
|
+
const data = await client.DescribeMixTranscodingUsage({})
|
|
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
|
+
|
|
201
231
|
it("trtc.v20190722.DismissRoom", async function () {
|
|
202
232
|
try {
|
|
203
233
|
const data = await client.DismissRoom({})
|
|
@@ -238,6 +268,16 @@ it("trtc.v20190722.DescribeCloudRecording", async function () {
|
|
|
238
268
|
}
|
|
239
269
|
})
|
|
240
270
|
|
|
271
|
+
it("trtc.v20190722.ModifyPicture", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.ModifyPicture({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
241
281
|
it("trtc.v20190722.DeleteCloudRecording", async function () {
|
|
242
282
|
try {
|
|
243
283
|
const data = await client.DeleteCloudRecording({})
|