tencentcloud-sdk-nodejs 4.0.923 → 4.0.925

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 (48) hide show
  1. package/CHANGELOG.md +208 -0
  2. package/SERVICE_CHANGELOG.md +196 -24
  3. package/package.json +1 -1
  4. package/products.md +21 -21
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cdwdoris/v20211228/cdwdoris_client.ts +1 -1
  7. package/src/services/cdwdoris/v20211228/cdwdoris_models.ts +10 -6
  8. package/src/services/cls/v20201016/cls_models.ts +2 -1
  9. package/src/services/cwp/v20180228/cwp_models.ts +33 -5
  10. package/src/services/cynosdb/v20190107/cynosdb_models.ts +10 -0
  11. package/src/services/facefusion/v20220927/facefusion_models.ts +13 -4
  12. package/src/services/lcic/v20220817/lcic_client.ts +25 -12
  13. package/src/services/lcic/v20220817/lcic_models.ts +91 -0
  14. package/src/services/mna/v20210119/mna_models.ts +10 -0
  15. package/src/services/mongodb/v20190725/mongodb_models.ts +15 -7
  16. package/src/services/monitor/v20180724/monitor_models.ts +5 -0
  17. package/src/services/ocr/v20181119/ocr_models.ts +6 -0
  18. package/src/services/rum/v20210622/rum_models.ts +4 -0
  19. package/src/services/scf/v20180416/scf_models.ts +3 -3
  20. package/src/services/tag/v20180813/tag_client.ts +2 -3
  21. package/src/services/tag/v20180813/tag_models.ts +37 -37
  22. package/src/services/vod/v20180717/vod_client.ts +2 -2
  23. package/src/services/vod/v20180717/vod_models.ts +7 -7
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_client.d.ts +1 -1
  27. package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_client.js +1 -1
  28. package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +10 -6
  29. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +2 -1
  30. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +33 -5
  31. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +10 -0
  32. package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +13 -4
  33. package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +9 -5
  34. package/tencentcloud/services/lcic/v20220817/lcic_client.js +12 -6
  35. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +88 -0
  36. package/tencentcloud/services/mna/v20210119/mna_models.d.ts +10 -0
  37. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +15 -7
  38. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +5 -0
  39. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +6 -0
  40. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +4 -0
  41. package/tencentcloud/services/scf/v20180416/scf_models.d.ts +3 -3
  42. package/tencentcloud/services/tag/v20180813/tag_client.d.ts +0 -1
  43. package/tencentcloud/services/tag/v20180813/tag_client.js +0 -1
  44. package/tencentcloud/services/tag/v20180813/tag_models.d.ts +37 -37
  45. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
  46. package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
  47. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +7 -7
  48. package/test/lcic.v20220817.test.js +14 -4
@@ -40,7 +40,7 @@ export interface TagWithDelete {
40
40
  */
41
41
  export interface DetachResourcesTagRequest {
42
42
  /**
43
- * 资源所属业务名称(资源六段式中的第三段)
43
+ * 业务类型,示例 cvm 。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
44
44
  */
45
45
  ServiceType: string;
46
46
  /**
@@ -52,11 +52,11 @@ export interface DetachResourcesTagRequest {
52
52
  */
53
53
  TagKey: string;
54
54
  /**
55
- * 资源所在地域,不区分地域的资源不需要传入该字段,区分地域的资源必填
55
+ * 资源所在地域,示例:ap-guangzhou 。不区分地域的资源则不需要传入该字段,区分地域的资源必填
56
56
  */
57
57
  ResourceRegion?: string;
58
58
  /**
59
- * 资源前缀(资源六段式中最后一段"/"前面的部分),cos存储桶不需要传入该字段,其他云资源必填
59
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId。cos存储桶为非必填,其他云资源为必填
60
60
  */
61
61
  ResourcePrefix?: string;
62
62
  }
@@ -159,15 +159,15 @@ export interface DeleteResourceTagResponse {
159
159
  */
160
160
  export interface DescribeResourceTagsByTagKeysRequest {
161
161
  /**
162
- * 业务类型
162
+ * 业务类型,示例 cvm 。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
163
163
  */
164
164
  ServiceType: string;
165
165
  /**
166
- * 资源前缀
166
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId。cos存储桶为非必填,其他云资源为必填
167
167
  */
168
168
  ResourcePrefix: string;
169
169
  /**
170
- * 资源地域
170
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
171
171
  */
172
172
  ResourceRegion: string;
173
173
  /**
@@ -225,7 +225,7 @@ export interface DescribeTagsRequest {
225
225
  */
226
226
  TagKeys?: Array<string>;
227
227
  /**
228
- * 是否展现项目标签
228
+ * 是否展现项目标签。1:展示 0:不展示
229
229
  */
230
230
  ShowProject?: number;
231
231
  }
@@ -321,7 +321,7 @@ export interface DescribeResourcesByTagsUnionRequest {
321
321
  */
322
322
  Limit?: number;
323
323
  /**
324
- * 资源前缀
324
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId。cos存储桶为非必填,其他云资源为必填
325
325
  */
326
326
  ResourcePrefix?: string;
327
327
  /**
@@ -329,11 +329,11 @@ export interface DescribeResourcesByTagsUnionRequest {
329
329
  */
330
330
  ResourceId?: string;
331
331
  /**
332
- * 资源所在地域
332
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
333
333
  */
334
334
  ResourceRegion?: string;
335
335
  /**
336
- * 业务类型
336
+ * 业务类型,示例 cvm 。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
337
337
  */
338
338
  ServiceType?: string;
339
339
  }
@@ -407,7 +407,7 @@ export interface DescribeTagKeysRequest {
407
407
  */
408
408
  Limit?: number;
409
409
  /**
410
- * 是否展现项目
410
+ * 是否展现项目。1:展示 0:不展示
411
411
  */
412
412
  ShowProject?: number;
413
413
  /**
@@ -521,11 +521,11 @@ export interface DescribeResourceTagsResponse {
521
521
  */
522
522
  export interface DescribeResourceTagsByResourceIdsRequest {
523
523
  /**
524
- * 业务类型
524
+ * 业务类型,示例 cvm 。资源所属业务名称(资源六段式中的第三段)
525
525
  */
526
526
  ServiceType: string;
527
527
  /**
528
- * 资源前缀
528
+ * 资源前缀,示例 instance
529
529
  */
530
530
  ResourcePrefix: string;
531
531
  /**
@@ -533,7 +533,7 @@ export interface DescribeResourceTagsByResourceIdsRequest {
533
533
  */
534
534
  ResourceIds: Array<string>;
535
535
  /**
536
- * 资源所在地域
536
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
537
537
  */
538
538
  ResourceRegion: string;
539
539
  /**
@@ -621,7 +621,7 @@ export interface GetTagsResponse {
621
621
  */
622
622
  export interface ModifyResourcesTagValueRequest {
623
623
  /**
624
- * 资源所属业务名称(资源六段式中的第三段)
624
+ * 业务类型,示例 cvm 。资源所属业务名称(资源六段式中的第三段)
625
625
  */
626
626
  ServiceType: string;
627
627
  /**
@@ -637,11 +637,11 @@ export interface ModifyResourcesTagValueRequest {
637
637
  */
638
638
  TagValue: string;
639
639
  /**
640
- * 资源所在地域,不区分地域的资源不需要传入该字段,区分地域的资源必填
640
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
641
641
  */
642
642
  ResourceRegion?: string;
643
643
  /**
644
- * 资源前缀(资源六段式中最后一段"/"前面的部分),cos存储桶不需要传入该字段,其他云资源必填
644
+ * 资源前缀(资源六段式中最后一段"/"前面的部分),例如“qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584” 中资源前缀为ckafkaId),cos存储桶不需要传入该字段,其他云资源必填
645
645
  */
646
646
  ResourcePrefix?: string;
647
647
  }
@@ -709,20 +709,20 @@ export interface DescribeResourcesByTagsResponse {
709
709
  /**
710
710
  * 结果总数
711
711
  */
712
- TotalCount: number;
712
+ TotalCount?: number;
713
713
  /**
714
714
  * 数据位移偏量
715
715
  */
716
- Offset: number;
716
+ Offset?: number;
717
717
  /**
718
718
  * 每页大小
719
719
  注意:此字段可能返回 null,表示取不到有效值。
720
720
  */
721
- Limit: number;
721
+ Limit?: number;
722
722
  /**
723
723
  * 资源标签
724
724
  */
725
- Rows: Array<ResourceTag>;
725
+ Rows?: Array<ResourceTag>;
726
726
  /**
727
727
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
728
728
  */
@@ -837,7 +837,7 @@ export interface DescribeTagsSeqRequest {
837
837
  */
838
838
  TagKeys?: Array<string>;
839
839
  /**
840
- * 是否展现项目标签
840
+ * 是否展现项目标签。1:展示 0:不展示
841
841
  */
842
842
  ShowProject?: number;
843
843
  }
@@ -942,7 +942,7 @@ export interface Tag {
942
942
  */
943
943
  export interface AttachResourcesTagRequest {
944
944
  /**
945
- * 业务的英文简称,即资源六段式第三段。资源六段式的描述方式参考:https://cloud.tencent.com/document/product/651/89122
945
+ * 业务类型,示例 cvm 。资源所属业务名称(资源六段式中的第三段)
946
946
  */
947
947
  ServiceType: string;
948
948
  /**
@@ -962,7 +962,7 @@ export interface AttachResourcesTagRequest {
962
962
  */
963
963
  ResourceRegion?: string;
964
964
  /**
965
- * 资源前缀(资源六段式中最后一段"/"前面的部分),cos存储桶不需要传入该字段,其他云资源必填
965
+ * 资源前缀(资源六段式中最后一段"/"前面的部分,例如“qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584” 中资源前缀为ckafkaId),cos存储桶不需要传入该字段,其他云资源必填
966
966
  */
967
967
  ResourcePrefix?: string;
968
968
  }
@@ -1246,7 +1246,7 @@ export interface DescribeResourcesByTagsRequest {
1246
1246
  */
1247
1247
  Limit?: number;
1248
1248
  /**
1249
- * 资源前缀
1249
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId。cos存储桶为非必填,其他云资源为必填
1250
1250
  */
1251
1251
  ResourcePrefix?: string;
1252
1252
  /**
@@ -1254,11 +1254,11 @@ export interface DescribeResourcesByTagsRequest {
1254
1254
  */
1255
1255
  ResourceId?: string;
1256
1256
  /**
1257
- * 资源所在地域
1257
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
1258
1258
  */
1259
1259
  ResourceRegion?: string;
1260
1260
  /**
1261
- * 业务类型
1261
+ * 业务类型,示例 cvm 。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
1262
1262
  */
1263
1263
  ServiceType?: string;
1264
1264
  }
@@ -1289,7 +1289,7 @@ export interface DeleteResourceTagRequest {
1289
1289
  */
1290
1290
  TagKey: string;
1291
1291
  /**
1292
- * [ 资源六段式描述 ](https://cloud.tencent.com/document/product/598/10606)
1292
+ * 资源六段式。示例:qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584
1293
1293
  */
1294
1294
  Resource: string;
1295
1295
  }
@@ -1316,23 +1316,23 @@ export interface TagKeyObject {
1316
1316
  */
1317
1317
  export interface DescribeResourceTagsRequest {
1318
1318
  /**
1319
- * 创建者uin
1319
+ * 资源创建者UIN
1320
1320
  */
1321
1321
  CreateUin?: number;
1322
1322
  /**
1323
- * 资源所在地域
1323
+ * 资源所在地域,示例:ap-guangzhou 。不区分地域的资源则不需要传入该字段,区分地域的资源必填
1324
1324
  */
1325
1325
  ResourceRegion?: string;
1326
1326
  /**
1327
- * 业务类型
1327
+ * 业务类型,示例 ckafka。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
1328
1328
  */
1329
1329
  ServiceType?: string;
1330
1330
  /**
1331
- * 资源前缀
1331
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId
1332
1332
  */
1333
1333
  ResourcePrefix?: string;
1334
1334
  /**
1335
- * 资源唯一标识。只输入ResourceId进行查询可能会查询较慢,或者无法匹配到结果,建议在输入ResourceId的同时也输入ServiceType、ResourcePrefix和ResourceRegion(不区分地域的资源可忽略该参数)
1335
+ * 资源唯一标识(资源六段式中最后一段"/"后面的部分)。注:只输入ResourceId查询时,如资源量大可能较慢,或无法匹配到结果,建议在输入ResourceId的同时也输入ServiceType、ResourcePrefix和ResourceRegion(不区分地域的资源可忽略该参数)。若传入的是cos资源的Id,则CosResourceId 字段请同时传1。
1336
1336
  */
1337
1337
  ResourceId?: string;
1338
1338
  /**
@@ -1344,7 +1344,7 @@ export interface DescribeResourceTagsRequest {
1344
1344
  */
1345
1345
  Limit?: number;
1346
1346
  /**
1347
- * 是否是cos的资源(0或者1),输入的ResourceId为cos资源时必填
1347
+ * 是否为cos的资源,取值 0 表示:非cos资源。取值1 表示:cos资源,且此时ResourceId也为必填。不填则默认为 0
1348
1348
  */
1349
1349
  CosResourceId?: number;
1350
1350
  }
@@ -1362,11 +1362,11 @@ export interface UpdateProjectResponse {
1362
1362
  */
1363
1363
  export interface DescribeResourceTagsByResourceIdsSeqRequest {
1364
1364
  /**
1365
- * 业务类型
1365
+ * 业务类型,示例 cvm 。指资源所属业务类型,也是资源六段式中的第三段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中业务类型为ckafka
1366
1366
  */
1367
1367
  ServiceType: string;
1368
1368
  /**
1369
- * 资源前缀
1369
+ * 该业务类型对应的资源前缀,示例 cvm对应instance、image、volume等。也是资源六段式中的第六段,例如qcs::ckafka:ap-shanghai:uin/123456789:ckafkaId/ckafka-o85jq584中资源前缀为ckafkaId。cos存储桶为非必填,其他云资源为必填
1370
1370
  */
1371
1371
  ResourcePrefix: string;
1372
1372
  /**
@@ -1374,7 +1374,7 @@ export interface DescribeResourceTagsByResourceIdsSeqRequest {
1374
1374
  */
1375
1375
  ResourceIds: Array<string>;
1376
1376
  /**
1377
- * 资源所在地域
1377
+ * 资源所在地域,示例:ap-guangzhou 不区分地域的资源不需要传入该字段,区分地域的资源必填
1378
1378
  */
1379
1379
  ResourceRegion: string;
1380
1380
  /**
@@ -26,7 +26,7 @@ export declare class Client extends AbstractClient {
26
26
  */
27
27
  ModifyDefaultStorageRegion(req: ModifyDefaultStorageRegionRequest, cb?: (error: string, rep: ModifyDefaultStorageRegionResponse) => void): Promise<ModifyDefaultStorageRegionResponse>;
28
28
  /**
29
- * 用于提取溯源水印。
29
+ * 该 API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
30
30
  */
31
31
  ExtractTraceWatermark(req: ExtractTraceWatermarkRequest, cb?: (error: string, rep: ExtractTraceWatermarkResponse) => void): Promise<ExtractTraceWatermarkResponse>;
32
32
  /**
@@ -520,7 +520,7 @@ export declare class Client extends AbstractClient {
520
520
  */
521
521
  DescribeDailyMostPlayedStat(req: DescribeDailyMostPlayedStatRequest, cb?: (error: string, rep: DescribeDailyMostPlayedStatResponse) => void): Promise<DescribeDailyMostPlayedStatResponse>;
522
522
  /**
523
- * 提取版权水印信息。
523
+ * 该 API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
524
524
  */
525
525
  ExtractCopyRightWatermark(req: ExtractCopyRightWatermarkRequest, cb?: (error: string, rep: ExtractCopyRightWatermarkResponse) => void): Promise<ExtractCopyRightWatermarkResponse>;
526
526
  /**
@@ -54,7 +54,7 @@ class Client extends abstract_client_1.AbstractClient {
54
54
  return this.request("ModifyDefaultStorageRegion", req, cb);
55
55
  }
56
56
  /**
57
- * 用于提取溯源水印。
57
+ * 该 API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
58
58
  */
59
59
  async ExtractTraceWatermark(req, cb) {
60
60
  return this.request("ExtractTraceWatermark", req, cb);
@@ -720,7 +720,7 @@ class Client extends abstract_client_1.AbstractClient {
720
720
  return this.request("DescribeDailyMostPlayedStat", req, cb);
721
721
  }
722
722
  /**
723
- * 提取版权水印信息。
723
+ * 该 API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
724
724
  */
725
725
  async ExtractCopyRightWatermark(req, cb) {
726
726
  return this.request("ExtractCopyRightWatermark", req, cb);
@@ -9140,13 +9140,13 @@ export interface SetVodDomainCertificateResponse {
9140
9140
  */
9141
9141
  export interface ExtractTraceWatermarkTaskOutput {
9142
9142
  /**
9143
- * 播放者的 ID,以十六进制表示,共6位,该参数用于 [溯源水印](https://cloud.tencent.com/document/product/266/75789) 使用场景。
9143
+ * 播放者的 ID,以十六进制表示,共6位。
9144
9144
  */
9145
- Uv: string;
9145
+ Uv?: string;
9146
9146
  /**
9147
9147
  * 该字段已废弃。
9148
9148
  */
9149
- Uid: string;
9149
+ Uid?: string;
9150
9150
  }
9151
9151
  /**
9152
9152
  * 对视频截图做封面任务结果类型
@@ -12740,11 +12740,11 @@ export interface TranscodeTaskInput {
12740
12740
  */
12741
12741
  WatermarkSet?: Array<WatermarkInput>;
12742
12742
  /**
12743
- * 溯源水印。
12743
+ * 溯源水印,该功能已不再支持使用。
12744
12744
  */
12745
12745
  TraceWatermark?: TraceWatermarkInput;
12746
12746
  /**
12747
- * 版权水印。
12747
+ * 版权水印,该功能已不再支持使用。
12748
12748
  */
12749
12749
  CopyRightWatermark?: CopyRightWatermarkInput;
12750
12750
  /**
@@ -14720,11 +14720,11 @@ export interface AdaptiveDynamicStreamingTaskInput {
14720
14720
  */
14721
14721
  WatermarkSet?: Array<WatermarkInput>;
14722
14722
  /**
14723
- * 溯源水印。
14723
+ * 溯源水印,该功能已不再支持使用。
14724
14724
  */
14725
14725
  TraceWatermark?: TraceWatermarkInput;
14726
14726
  /**
14727
- * 版权水印。
14727
+ * 版权水印,该功能已不再支持使用。
14728
14728
  */
14729
14729
  CopyRightWatermark?: CopyRightWatermarkInput;
14730
14730
  /**
@@ -48,9 +48,9 @@ it("lcic.v20220817.SendRoomNotificationMessage", async function () {
48
48
  }
49
49
  })
50
50
 
51
- it("lcic.v20220817.GetRoomMessage", async function () {
51
+ it("lcic.v20220817.DescribeRecordStream", async function () {
52
52
  try {
53
- const data = await client.GetRoomMessage({})
53
+ const data = await client.DescribeRecordStream({})
54
54
  expect(data).to.be.ok
55
55
  } catch(error) {
56
56
  expect(error.requestId).to.be.ok
@@ -98,9 +98,9 @@ it("lcic.v20220817.DeleteAppCustomContent", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("lcic.v20220817.KickUserFromRoom", async function () {
101
+ it("lcic.v20220817.GetRoomMessage", async function () {
102
102
  try {
103
- const data = await client.KickUserFromRoom({})
103
+ const data = await client.GetRoomMessage({})
104
104
  expect(data).to.be.ok
105
105
  } catch(error) {
106
106
  expect(error.requestId).to.be.ok
@@ -568,6 +568,16 @@ it("lcic.v20220817.GetRooms", async function () {
568
568
  }
569
569
  })
570
570
 
571
+ it("lcic.v20220817.KickUserFromRoom", async function () {
572
+ try {
573
+ const data = await client.KickUserFromRoom({})
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
+
571
581
  it("lcic.v20220817.DeleteRoom", async function () {
572
582
  try {
573
583
  const data = await client.DeleteRoom({})