tencentcloud-sdk-nodejs 4.0.396 → 4.0.399

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +304 -0
  2. package/SERVICE_CHANGELOG.md +180 -90
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/bma/v20210624/bma_client.ts +181 -57
  7. package/src/services/bma/v20210624/bma_models.ts +650 -20
  8. package/src/services/cat/v20180409/cat_client.ts +15 -2
  9. package/src/services/cat/v20180409/cat_models.ts +222 -90
  10. package/src/services/cfw/v20190904/cfw_client.ts +1 -1
  11. package/src/services/essbasic/v20210526/essbasic_client.ts +22 -7
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +103 -3
  13. package/src/services/irp/v20220324/irp_models.ts +18 -2
  14. package/src/services/tcbr/v20220217/tcbr_models.ts +5 -0
  15. package/src/services/tem/v20210701/tem_client.ts +17 -2
  16. package/src/services/tem/v20210701/tem_models.ts +536 -33
  17. package/src/services/tke/v20180525/tke_models.ts +27 -4
  18. package/src/services/trtc/v20190722/trtc_client.ts +130 -57
  19. package/src/services/trtc/v20190722/trtc_models.ts +1532 -900
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/bma/v20210624/bma_client.d.ts +61 -21
  23. package/tencentcloud/services/bma/v20210624/bma_client.js +90 -30
  24. package/tencentcloud/services/bma/v20210624/bma_models.d.ts +533 -6
  25. package/tencentcloud/services/cat/v20180409/cat_client.d.ts +5 -1
  26. package/tencentcloud/services/cat/v20180409/cat_client.js +6 -0
  27. package/tencentcloud/services/cat/v20180409/cat_models.d.ts +193 -79
  28. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +1 -1
  29. package/tencentcloud/services/cfw/v20190904/cfw_client.js +1 -1
  30. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +8 -3
  31. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +10 -3
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +87 -3
  33. package/tencentcloud/services/irp/v20220324/irp_models.d.ts +17 -1
  34. package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +4 -0
  35. package/tencentcloud/services/tem/v20210701/tem_client.d.ts +5 -1
  36. package/tencentcloud/services/tem/v20210701/tem_client.js +6 -0
  37. package/tencentcloud/services/tem/v20210701/tem_models.d.ts +448 -29
  38. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +23 -4
  39. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +28 -1
  40. package/tencentcloud/services/trtc/v20190722/trtc_client.js +35 -0
  41. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1365 -828
  42. package/test/bma.v20210624.test.js +120 -20
  43. package/test/cat.v20180409.test.js +10 -0
  44. package/test/essbasic.v20210526.test.js +12 -2
  45. package/test/tem.v20210701.test.js +10 -0
  46. package/test/trtc.v20190722.test.js +40 -0
@@ -18,9 +18,49 @@ const client = new tencentcloud.bma.v20210624.Client({
18
18
  })
19
19
  describe("bma.v20210624.test.js", function () {
20
20
 
21
- it("bma.v20210624.DescribeCRWorkInfo", async function () {
21
+ it("bma.v20210624.UpdateCRWork", async function () {
22
22
  try {
23
- const data = await client.DescribeCRWorkInfo({})
23
+ const data = await client.UpdateCRWork({})
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
+
31
+ it("bma.v20210624.DescribeBPCompanyInfo", async function () {
32
+ try {
33
+ const data = await client.DescribeBPCompanyInfo({})
34
+ expect(data).to.be.ok
35
+ } catch(error) {
36
+ expect(error.requestId).to.be.ok
37
+ expect(error.code).to.be.ok
38
+ }
39
+ })
40
+
41
+ it("bma.v20210624.CreateCRBlock", async function () {
42
+ try {
43
+ const data = await client.CreateCRBlock({})
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
+
51
+ it("bma.v20210624.CreateCRWork", async function () {
52
+ try {
53
+ const data = await client.CreateCRWork({})
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
+
61
+ it("bma.v20210624.CreateBPOfflineTicket", async function () {
62
+ try {
63
+ const data = await client.CreateBPOfflineTicket({})
24
64
  expect(data).to.be.ok
25
65
  } catch(error) {
26
66
  expect(error.requestId).to.be.ok
@@ -38,6 +78,56 @@ it("bma.v20210624.ModifyCRObtainStatus", async function () {
38
78
  }
39
79
  })
40
80
 
81
+ it("bma.v20210624.CreateCRRight", async function () {
82
+ try {
83
+ const data = await client.CreateCRRight({})
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
+
91
+ it("bma.v20210624.ModifyBPOfflineAttachment", async function () {
92
+ try {
93
+ const data = await client.ModifyBPOfflineAttachment({})
94
+ expect(data).to.be.ok
95
+ } catch(error) {
96
+ expect(error.requestId).to.be.ok
97
+ expect(error.code).to.be.ok
98
+ }
99
+ })
100
+
101
+ it("bma.v20210624.ModifyCRMonitor", async function () {
102
+ try {
103
+ const data = await client.ModifyCRMonitor({})
104
+ expect(data).to.be.ok
105
+ } catch(error) {
106
+ expect(error.requestId).to.be.ok
107
+ expect(error.code).to.be.ok
108
+ }
109
+ })
110
+
111
+ it("bma.v20210624.DescribeCRMonitorDetail", async function () {
112
+ try {
113
+ const data = await client.DescribeCRMonitorDetail({})
114
+ expect(data).to.be.ok
115
+ } catch(error) {
116
+ expect(error.requestId).to.be.ok
117
+ expect(error.code).to.be.ok
118
+ }
119
+ })
120
+
121
+ it("bma.v20210624.CreateBPFakeURL", async function () {
122
+ try {
123
+ const data = await client.CreateBPFakeURL({})
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
+
41
131
  it("bma.v20210624.ModifyCRBlockStatus", async function () {
42
132
  try {
43
133
  const data = await client.ModifyCRBlockStatus({})
@@ -48,9 +138,9 @@ it("bma.v20210624.ModifyCRBlockStatus", async function () {
48
138
  }
49
139
  })
50
140
 
51
- it("bma.v20210624.CreateCRRight", async function () {
141
+ it("bma.v20210624.CreateBPFalseTicket", async function () {
52
142
  try {
53
- const data = await client.CreateCRRight({})
143
+ const data = await client.CreateBPFalseTicket({})
54
144
  expect(data).to.be.ok
55
145
  } catch(error) {
56
146
  expect(error.requestId).to.be.ok
@@ -58,9 +148,9 @@ it("bma.v20210624.CreateCRRight", async function () {
58
148
  }
59
149
  })
60
150
 
61
- it("bma.v20210624.DescribeCRMonitors", async function () {
151
+ it("bma.v20210624.CreateBPProtectURLs", async function () {
62
152
  try {
63
- const data = await client.DescribeCRMonitors({})
153
+ const data = await client.CreateBPProtectURLs({})
64
154
  expect(data).to.be.ok
65
155
  } catch(error) {
66
156
  expect(error.requestId).to.be.ok
@@ -68,9 +158,9 @@ it("bma.v20210624.DescribeCRMonitors", async function () {
68
158
  }
69
159
  })
70
160
 
71
- it("bma.v20210624.ModifyCRRightStatus", async function () {
161
+ it("bma.v20210624.DescribeBPReportFakeURLs", async function () {
72
162
  try {
73
- const data = await client.ModifyCRRightStatus({})
163
+ const data = await client.DescribeBPReportFakeURLs({})
74
164
  expect(data).to.be.ok
75
165
  } catch(error) {
76
166
  expect(error.requestId).to.be.ok
@@ -78,9 +168,9 @@ it("bma.v20210624.ModifyCRRightStatus", async function () {
78
168
  }
79
169
  })
80
170
 
81
- it("bma.v20210624.UpdateCRWork", async function () {
171
+ it("bma.v20210624.DescribeCRWorkInfo", async function () {
82
172
  try {
83
- const data = await client.UpdateCRWork({})
173
+ const data = await client.DescribeCRWorkInfo({})
84
174
  expect(data).to.be.ok
85
175
  } catch(error) {
86
176
  expect(error.requestId).to.be.ok
@@ -88,9 +178,9 @@ it("bma.v20210624.UpdateCRWork", async function () {
88
178
  }
89
179
  })
90
180
 
91
- it("bma.v20210624.CreateCRCompanyVerify", async function () {
181
+ it("bma.v20210624.DescribeCRMonitors", async function () {
92
182
  try {
93
- const data = await client.CreateCRCompanyVerify({})
183
+ const data = await client.DescribeCRMonitors({})
94
184
  expect(data).to.be.ok
95
185
  } catch(error) {
96
186
  expect(error.requestId).to.be.ok
@@ -98,9 +188,9 @@ it("bma.v20210624.CreateCRCompanyVerify", async function () {
98
188
  }
99
189
  })
100
190
 
101
- it("bma.v20210624.ModifyCRMonitor", async function () {
191
+ it("bma.v20210624.ModifyCRRightStatus", async function () {
102
192
  try {
103
- const data = await client.ModifyCRMonitor({})
193
+ const data = await client.ModifyCRRightStatus({})
104
194
  expect(data).to.be.ok
105
195
  } catch(error) {
106
196
  expect(error.requestId).to.be.ok
@@ -108,9 +198,9 @@ it("bma.v20210624.ModifyCRMonitor", async function () {
108
198
  }
109
199
  })
110
200
 
111
- it("bma.v20210624.CreateCRBlock", async function () {
201
+ it("bma.v20210624.CreateBPOfflineAttachment", async function () {
112
202
  try {
113
- const data = await client.CreateCRBlock({})
203
+ const data = await client.CreateBPOfflineAttachment({})
114
204
  expect(data).to.be.ok
115
205
  } catch(error) {
116
206
  expect(error.requestId).to.be.ok
@@ -118,9 +208,9 @@ it("bma.v20210624.CreateCRBlock", async function () {
118
208
  }
119
209
  })
120
210
 
121
- it("bma.v20210624.CreateCRWork", async function () {
211
+ it("bma.v20210624.DescribeBPProtectURLs", async function () {
122
212
  try {
123
- const data = await client.CreateCRWork({})
213
+ const data = await client.DescribeBPProtectURLs({})
124
214
  expect(data).to.be.ok
125
215
  } catch(error) {
126
216
  expect(error.requestId).to.be.ok
@@ -128,9 +218,19 @@ it("bma.v20210624.CreateCRWork", async function () {
128
218
  }
129
219
  })
130
220
 
131
- it("bma.v20210624.DescribeCRMonitorDetail", async function () {
221
+ it("bma.v20210624.DescribeBPFakeURLs", async function () {
132
222
  try {
133
- const data = await client.DescribeCRMonitorDetail({})
223
+ const data = await client.DescribeBPFakeURLs({})
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
+
231
+ it("bma.v20210624.CreateCRCompanyVerify", async function () {
232
+ try {
233
+ const data = await client.CreateCRCompanyVerify({})
134
234
  expect(data).to.be.ok
135
235
  } catch(error) {
136
236
  expect(error.requestId).to.be.ok
@@ -58,6 +58,16 @@ it("cat.v20180409.UpdateProbeTaskConfigurationList", async function () {
58
58
  }
59
59
  })
60
60
 
61
+ it("cat.v20180409.DescribeNodes", async function () {
62
+ try {
63
+ const data = await client.DescribeNodes({})
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("cat.v20180409.DescribeProbeNodes", async function () {
62
72
  try {
63
73
  const data = await client.DescribeProbeNodes({})
@@ -58,6 +58,16 @@ it("essbasic.v20210526.OperateChannelTemplate", async function () {
58
58
  }
59
59
  })
60
60
 
61
+ it("essbasic.v20210526.SyncProxyOrganizationOperators", async function () {
62
+ try {
63
+ const data = await client.SyncProxyOrganizationOperators({})
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("essbasic.v20210526.ChannelCreateMultiFlowSignQRCode", async function () {
62
72
  try {
63
73
  const data = await client.ChannelCreateMultiFlowSignQRCode({})
@@ -128,9 +138,9 @@ it("essbasic.v20210526.CreateConsoleLoginUrl", async function () {
128
138
  }
129
139
  })
130
140
 
131
- it("essbasic.v20210526.SyncProxyOrganizationOperators", async function () {
141
+ it("essbasic.v20210526.ChannelCreateBatchCancelFlowUrl", async function () {
132
142
  try {
133
- const data = await client.SyncProxyOrganizationOperators({})
143
+ const data = await client.ChannelCreateBatchCancelFlowUrl({})
134
144
  expect(data).to.be.ok
135
145
  } catch(error) {
136
146
  expect(error.requestId).to.be.ok
@@ -128,6 +128,16 @@ it("tem.v20210701.StopApplication", async function () {
128
128
  }
129
129
  })
130
130
 
131
+ it("tem.v20210701.DescribeApplicationInfo", async function () {
132
+ try {
133
+ const data = await client.DescribeApplicationInfo({})
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("tem.v20210701.DescribeApplicationPods", async function () {
132
142
  try {
133
143
  const data = await client.DescribeApplicationPods({})
@@ -128,6 +128,26 @@ it("trtc.v20190722.DescribeUserEvent", async function () {
128
128
  }
129
129
  })
130
130
 
131
+ it("trtc.v20190722.ModifyCloudRecording", async function () {
132
+ try {
133
+ const data = await client.ModifyCloudRecording({})
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
+
141
+ it("trtc.v20190722.CreateCloudRecording", async function () {
142
+ try {
143
+ const data = await client.CreateCloudRecording({})
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
+
131
151
  it("trtc.v20190722.DescribeExternalTrtcMeasure", async function () {
132
152
  try {
133
153
  const data = await client.DescribeExternalTrtcMeasure({})
@@ -248,6 +268,26 @@ it("trtc.v20190722.DescribeTrtcMcuTranscodeTime", async function () {
248
268
  }
249
269
  })
250
270
 
271
+ it("trtc.v20190722.DescribeCloudRecording", async function () {
272
+ try {
273
+ const data = await client.DescribeCloudRecording({})
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
+
281
+ it("trtc.v20190722.DeleteCloudRecording", async function () {
282
+ try {
283
+ const data = await client.DeleteCloudRecording({})
284
+ expect(data).to.be.ok
285
+ } catch(error) {
286
+ expect(error.requestId).to.be.ok
287
+ expect(error.code).to.be.ok
288
+ }
289
+ })
290
+
251
291
  it("trtc.v20190722.DescribePicture", async function () {
252
292
  try {
253
293
  const data = await client.DescribePicture({})