tencentcloud-sdk-nodejs-iotexplorer 4.0.838 → 4.0.849

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.
@@ -188,6 +188,19 @@ export interface ThumbnailURLInfoList {
188
188
  */
189
189
  ExpireTime?: number;
190
190
  }
191
+ /**
192
+ * DescribeDeviceFirmwares请求参数结构体
193
+ */
194
+ export interface DescribeDeviceFirmwaresRequest {
195
+ /**
196
+ * 产品ID
197
+ */
198
+ ProductId: string;
199
+ /**
200
+ * 设备名
201
+ */
202
+ DeviceName: string;
203
+ }
191
204
  /**
192
205
  * ProductId -> DeviceName
193
206
  */
@@ -424,6 +437,15 @@ export interface GetDeviceListResponse {
424
437
  */
425
438
  RequestId?: string;
426
439
  }
440
+ /**
441
+ * DismissRoomByStrRoomIdFromTRTC返回参数结构体
442
+ */
443
+ export interface DismissRoomByStrRoomIdFromTRTCResponse {
444
+ /**
445
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
446
+ */
447
+ RequestId?: string;
448
+ }
427
449
  /**
428
450
  * GenerateSignedVideoURL请求参数结构体
429
451
  */
@@ -519,6 +541,25 @@ export interface DeleteLoRaFrequencyResponse {
519
541
  */
520
542
  RequestId?: string;
521
543
  }
544
+ /**
545
+ * DescribeGatewaySubDeviceList返回参数结构体
546
+ */
547
+ export interface DescribeGatewaySubDeviceListResponse {
548
+ /**
549
+ * 设备的总数
550
+ 注意:此字段可能返回 null,表示取不到有效值。
551
+ */
552
+ Total: number;
553
+ /**
554
+ * 设备列表
555
+ 注意:此字段可能返回 null,表示取不到有效值。
556
+ */
557
+ DeviceList: Array<FamilySubDevice>;
558
+ /**
559
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
560
+ */
561
+ RequestId?: string;
562
+ }
522
563
  /**
523
564
  * DescribeCloudStorageMultiThumbnail返回参数结构体
524
565
  */
@@ -666,6 +707,23 @@ export interface InheritCloudStorageUserRequest {
666
707
  */
667
708
  ToUserId: string;
668
709
  }
710
+ /**
711
+ * 设备固件信息
712
+ */
713
+ export interface DeviceFirmwareInfo {
714
+ /**
715
+ * 固件类型
716
+ */
717
+ FwType: string;
718
+ /**
719
+ * 固件版本
720
+ */
721
+ Version: string;
722
+ /**
723
+ * 最后更新时间
724
+ */
725
+ UpdateTime: number;
726
+ }
669
727
  /**
670
728
  * TransferCloudStorage返回参数结构体
671
729
  */
@@ -710,21 +768,27 @@ export interface CallDeviceActionSyncRequest {
710
768
  InputParams?: string;
711
769
  }
712
770
  /**
713
- * 产品设备位置信息
771
+ * 设备的用户
714
772
  */
715
- export interface ProductDevicesPositionItem {
773
+ export interface DeviceUser {
716
774
  /**
717
- * 设备位置列表
775
+ * 用户ID
718
776
  */
719
- Items: Array<DevicePositionItem>;
777
+ UserId: string;
720
778
  /**
721
- * 产品标识
779
+ * 用户角色 1所有者,0:其他分享者
722
780
  */
723
- ProductId: string;
781
+ Role: number;
724
782
  /**
725
- * 设备位置数量
783
+ * 家庭ID,所有者带该参数
784
+ 注意:此字段可能返回 null,表示取不到有效值。
726
785
  */
727
- Total: number;
786
+ FamilyId?: string;
787
+ /**
788
+ * 家庭名称,所有者带该参数
789
+ 注意:此字段可能返回 null,表示取不到有效值。
790
+ */
791
+ FamilyName?: string;
728
792
  }
729
793
  /**
730
794
  * GetProjectList返回参数结构体
@@ -745,6 +809,15 @@ export interface GetProjectListResponse {
745
809
  */
746
810
  RequestId?: string;
747
811
  }
812
+ /**
813
+ * ModifyFenceBind返回参数结构体
814
+ */
815
+ export interface ModifyFenceBindResponse {
816
+ /**
817
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
818
+ */
819
+ RequestId?: string;
820
+ }
748
821
  /**
749
822
  * DescribeDevicePositionList请求参数结构体
750
823
  */
@@ -955,45 +1028,13 @@ export interface DeletePositionFenceResponse {
955
1028
  RequestId?: string;
956
1029
  }
957
1030
  /**
958
- * ModifyLoRaFrequency请求参数结构体
1031
+ * DescribeCloudStorageAIServiceTask请求参数结构体
959
1032
  */
960
- export interface ModifyLoRaFrequencyRequest {
1033
+ export interface DescribeCloudStorageAIServiceTaskRequest {
961
1034
  /**
962
- * 频点唯一ID
963
- */
964
- FreqId?: string;
965
- /**
966
- * 频点名称
1035
+ * 任务 ID
967
1036
  */
968
- FreqName?: string;
969
- /**
970
- * 频点描述
971
- */
972
- Description?: string;
973
- /**
974
- * 数据上行信道
975
- */
976
- ChannelsDataUp?: Array<number | bigint>;
977
- /**
978
- * 数据下行信道RX1
979
- */
980
- ChannelsDataRX1?: Array<number | bigint>;
981
- /**
982
- * 数据下行信道RX2
983
- */
984
- ChannelsDataRX2?: Array<number | bigint>;
985
- /**
986
- * 入网上行信道
987
- */
988
- ChannelsJoinUp?: Array<number | bigint>;
989
- /**
990
- * 入网下行信道RX1
991
- */
992
- ChannelsJoinRX1?: Array<number | bigint>;
993
- /**
994
- * 入网下行信道RX2
995
- */
996
- ChannelsJoinRX2?: Array<number | bigint>;
1037
+ TaskId: string;
997
1038
  }
998
1039
  /**
999
1040
  * 围栏告警位置点
@@ -1085,6 +1126,15 @@ export interface PackageInfo {
1085
1126
  */
1086
1127
  CSUserId?: string;
1087
1128
  }
1129
+ /**
1130
+ * UnbindDevices返回参数结构体
1131
+ */
1132
+ export interface UnbindDevicesResponse {
1133
+ /**
1134
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1135
+ */
1136
+ RequestId?: string;
1137
+ }
1088
1138
  /**
1089
1139
  * ModifyCloudStorageAIServiceCallback返回参数结构体
1090
1140
  */
@@ -1469,6 +1519,23 @@ export interface FenceBindDeviceItem {
1469
1519
  */
1470
1520
  Method: string;
1471
1521
  }
1522
+ /**
1523
+ * GenerateCloudStorageAIServiceTaskFileURL返回参数结构体
1524
+ */
1525
+ export interface GenerateCloudStorageAIServiceTaskFileURLResponse {
1526
+ /**
1527
+ * 文件下载 URL
1528
+ */
1529
+ FileURL?: string;
1530
+ /**
1531
+ * 过期时间 UNIX 时间戳
1532
+ */
1533
+ ExpireTime?: number;
1534
+ /**
1535
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1536
+ */
1537
+ RequestId?: string;
1538
+ }
1472
1539
  /**
1473
1540
  * 设备历史数据结构
1474
1541
  */
@@ -1538,6 +1605,13 @@ export interface CloudStorageAIServiceTask {
1538
1605
  * 通道 ID
1539
1606
  */
1540
1607
  ChannelId?: number;
1608
+ /**
1609
+ * 云存 AI 服务类型。可能取值:
1610
+
1611
+ - `PackageDetect`:包裹检测
1612
+ - `Highlight`:视频浓缩
1613
+ */
1614
+ ServiceType?: string;
1541
1615
  /**
1542
1616
  * 对应云存视频的起始时间
1543
1617
  */
@@ -1547,7 +1621,7 @@ export interface CloudStorageAIServiceTask {
1547
1621
  */
1548
1622
  EndTime?: number;
1549
1623
  /**
1550
- * 任务状态(1:失败;2:成功但结果为空;3:成功且结果非空)
1624
+ * 任务状态(1:失败;2:成功但结果为空;3:成功且结果非空;4:执行中)
1551
1625
  */
1552
1626
  Status?: number;
1553
1627
  /**
@@ -1555,18 +1629,15 @@ export interface CloudStorageAIServiceTask {
1555
1629
  */
1556
1630
  Result?: string;
1557
1631
  /**
1558
- * 云存 AI 服务类型
1559
- 注意:此字段可能返回 null,表示取不到有效值。
1632
+ * 任务输出文件列表
1560
1633
  */
1561
- ServiceType?: string;
1634
+ Files?: Array<string>;
1562
1635
  /**
1563
1636
  * 创建时间
1564
- 注意:此字段可能返回 null,表示取不到有效值。
1565
1637
  */
1566
1638
  CreateTime?: number;
1567
1639
  /**
1568
1640
  * 最后更新时间
1569
- 注意:此字段可能返回 null,表示取不到有效值。
1570
1641
  */
1571
1642
  UpdateTime?: number;
1572
1643
  }
@@ -2152,7 +2223,8 @@ export interface ModifyCloudStorageAIServiceCallbackRequest {
2152
2223
  */
2153
2224
  ProductId: string;
2154
2225
  /**
2155
- * 推送类型。http:HTTP 回调
2226
+ * 推送类型。可选值:
2227
+ - `http`:HTTP 回调
2156
2228
  */
2157
2229
  Type: string;
2158
2230
  /**
@@ -2300,6 +2372,31 @@ export interface CreateLoRaGatewayRequest {
2300
2372
  */
2301
2373
  FrequencyId?: string;
2302
2374
  }
2375
+ /**
2376
+ * TRTC 的参数 可以用来加入房间
2377
+ */
2378
+ export interface TRTCParams {
2379
+ /**
2380
+ * TRTC入参: TRTC的实例ID
2381
+ */
2382
+ SdkAppId: number;
2383
+ /**
2384
+ * TRTC入参: 用户加入房间的ID
2385
+ */
2386
+ UserId: string;
2387
+ /**
2388
+ * TRTC入参: 用户的签名用来鉴权
2389
+ */
2390
+ UserSig: string;
2391
+ /**
2392
+ * TRTC入参: 加入的TRTC房间名称
2393
+ */
2394
+ StrRoomId: string;
2395
+ /**
2396
+ * TRTC入参: 校验TRTC的KEY
2397
+ */
2398
+ PrivateKey: string;
2399
+ }
2303
2400
  /**
2304
2401
  * ReleaseStudioProduct请求参数结构体
2305
2402
  */
@@ -2386,7 +2483,9 @@ export interface ModifyCloudStorageAIServiceRequest {
2386
2483
  */
2387
2484
  DeviceName: string;
2388
2485
  /**
2389
- * 云存 AI 服务类型。可选值:PackageDetect
2486
+ * 云存 AI 服务类型。可选值:
2487
+ - `PackageDetect`:包裹检测
2488
+ - `Highlight`:视频浓缩
2390
2489
  */
2391
2490
  ServiceType: string;
2392
2491
  /**
@@ -2397,6 +2496,10 @@ export interface ModifyCloudStorageAIServiceRequest {
2397
2496
  * 视频分析区域
2398
2497
  */
2399
2498
  ROI?: string;
2499
+ /**
2500
+ * 云存 AI 服务的配置参数
2501
+ */
2502
+ Config?: string;
2400
2503
  }
2401
2504
  /**
2402
2505
  * CreateDevice返回参数结构体
@@ -2705,7 +2808,9 @@ export interface DescribeCloudStorageAIServiceTasksRequest {
2705
2808
  */
2706
2809
  DeviceName: string;
2707
2810
  /**
2708
- * 云存 AI 服务类型。可选值:PackageDetect
2811
+ * 云存 AI 服务类型。可选值:
2812
+ - `PackageDetect`:包裹检测
2813
+ - `Highlight`:视频浓缩
2709
2814
  */
2710
2815
  ServiceType: string;
2711
2816
  /**
@@ -2717,9 +2822,22 @@ export interface DescribeCloudStorageAIServiceTasksRequest {
2717
2822
  */
2718
2823
  Offset?: number;
2719
2824
  /**
2720
- * 任务状态(1:失败;2:成功但结果为空;3:成功且结果非空;不传则查询全部状态的任务)
2825
+ * 任务状态。可选值:
2826
+ - (不传):查询全部状态的任务
2827
+ - `1`:失败
2828
+ - `2`:成功但结果为空
2829
+ - `3`:成功且结果非空
2830
+ - `4`:执行中
2721
2831
  */
2722
2832
  Status?: number;
2833
+ /**
2834
+ * 用户ID
2835
+ */
2836
+ UserId?: string;
2837
+ /**
2838
+ * 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
2839
+ */
2840
+ ChannelId?: number;
2723
2841
  }
2724
2842
  /**
2725
2843
  * DescribeStudioProduct返回参数结构体
@@ -3496,6 +3614,19 @@ export interface EnableTopicRuleRequest {
3496
3614
  */
3497
3615
  RuleName: string;
3498
3616
  }
3617
+ /**
3618
+ * RemoveUserByRoomIdFromTRTC请求参数结构体
3619
+ */
3620
+ export interface RemoveUserByRoomIdFromTRTCRequest {
3621
+ /**
3622
+ * 房间id
3623
+ */
3624
+ RoomId: string;
3625
+ /**
3626
+ * 用户名称数组,数组元素不可重复,最长不超过 10 个。
3627
+ */
3628
+ TRTCUserIds: Array<string>;
3629
+ }
3499
3630
  /**
3500
3631
  * DescribeBindedProducts返回参数结构体
3501
3632
  */
@@ -3708,6 +3839,19 @@ export interface DirectBindDeviceInFamilyRequest {
3708
3839
  */
3709
3840
  RoomId?: string;
3710
3841
  }
3842
+ /**
3843
+ * DescribeCloudStorageAIServiceTask返回参数结构体
3844
+ */
3845
+ export interface DescribeCloudStorageAIServiceTaskResponse {
3846
+ /**
3847
+ * 任务信息
3848
+ */
3849
+ TaskInfo?: CloudStorageAIServiceTask;
3850
+ /**
3851
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3852
+ */
3853
+ RequestId?: string;
3854
+ }
3711
3855
  /**
3712
3856
  * DescribeCloudStorageEvents返回参数结构体
3713
3857
  */
@@ -3820,23 +3964,17 @@ export interface DescribeInstanceResponse {
3820
3964
  RequestId?: string;
3821
3965
  }
3822
3966
  /**
3823
- * DescribeGatewaySubDeviceList返回参数结构体
3967
+ * CreateTRTCSignaturesWithRoomId请求参数结构体
3824
3968
  */
3825
- export interface DescribeGatewaySubDeviceListResponse {
3969
+ export interface CreateTRTCSignaturesWithRoomIdRequest {
3826
3970
  /**
3827
- * 设备的总数
3828
- 注意:此字段可能返回 null,表示取不到有效值。
3971
+ * TRTC进房间的用户名称数组,数组元素不可重复,最长不超过 10 个。
3829
3972
  */
3830
- Total: number;
3973
+ TRTCUserIds: Array<string>;
3831
3974
  /**
3832
- * 设备列表
3833
- 注意:此字段可能返回 null,表示取不到有效值。
3975
+ * 房间id
3834
3976
  */
3835
- DeviceList: Array<FamilySubDevice>;
3836
- /**
3837
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3838
- */
3839
- RequestId?: string;
3977
+ RoomId: string;
3840
3978
  }
3841
3979
  /**
3842
3980
  * Topic信息, 包括Topic名字和权限
@@ -3941,9 +4079,9 @@ export interface DescribeProjectRequest {
3941
4079
  ProjectId: string;
3942
4080
  }
3943
4081
  /**
3944
- * UnbindDevices返回参数结构体
4082
+ * ModifyModelDefinition返回参数结构体
3945
4083
  */
3946
- export interface UnbindDevicesResponse {
4084
+ export interface ModifyModelDefinitionResponse {
3947
4085
  /**
3948
4086
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3949
4087
  */
@@ -4007,13 +4145,13 @@ export interface CreateIotVideoCloudStorageRequest {
4007
4145
  StorageRegion?: string;
4008
4146
  }
4009
4147
  /**
4010
- * ModifyModelDefinition返回参数结构体
4148
+ * DismissRoomByStrRoomIdFromTRTC请求参数结构体
4011
4149
  */
4012
- export interface ModifyModelDefinitionResponse {
4150
+ export interface DismissRoomByStrRoomIdFromTRTCRequest {
4013
4151
  /**
4014
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4152
+ * 房间id
4015
4153
  */
4016
- RequestId?: string;
4154
+ RoomId: string;
4017
4155
  }
4018
4156
  /**
4019
4157
  * DescribeCloudStoragePackageConsumeDetails请求参数结构体
@@ -4564,6 +4702,47 @@ export interface GetProjectListRequest {
4564
4702
  */
4565
4703
  ProjectName?: string;
4566
4704
  }
4705
+ /**
4706
+ * ModifyLoRaFrequency请求参数结构体
4707
+ */
4708
+ export interface ModifyLoRaFrequencyRequest {
4709
+ /**
4710
+ * 频点唯一ID
4711
+ */
4712
+ FreqId?: string;
4713
+ /**
4714
+ * 频点名称
4715
+ */
4716
+ FreqName?: string;
4717
+ /**
4718
+ * 频点描述
4719
+ */
4720
+ Description?: string;
4721
+ /**
4722
+ * 数据上行信道
4723
+ */
4724
+ ChannelsDataUp?: Array<number | bigint>;
4725
+ /**
4726
+ * 数据下行信道RX1
4727
+ */
4728
+ ChannelsDataRX1?: Array<number | bigint>;
4729
+ /**
4730
+ * 数据下行信道RX2
4731
+ */
4732
+ ChannelsDataRX2?: Array<number | bigint>;
4733
+ /**
4734
+ * 入网上行信道
4735
+ */
4736
+ ChannelsJoinUp?: Array<number | bigint>;
4737
+ /**
4738
+ * 入网下行信道RX1
4739
+ */
4740
+ ChannelsJoinRX1?: Array<number | bigint>;
4741
+ /**
4742
+ * 入网下行信道RX2
4743
+ */
4744
+ ChannelsJoinRX2?: Array<number | bigint>;
4745
+ }
4567
4746
  /**
4568
4747
  * DescribeCloudStorageAIServiceTasks返回参数结构体
4569
4748
  */
@@ -4668,33 +4847,21 @@ export interface GetGatewaySubDeviceListRequest {
4668
4847
  Limit: number;
4669
4848
  }
4670
4849
  /**
4671
- * SearchStudioProduct请求参数结构体
4850
+ * 产品设备位置信息
4672
4851
  */
4673
- export interface SearchStudioProductRequest {
4674
- /**
4675
- * 项目ID
4676
- */
4677
- ProjectId?: string;
4678
- /**
4679
- * 产品名称
4680
- */
4681
- ProductName?: string;
4682
- /**
4683
- * 列表Limit
4684
- */
4685
- Limit?: number;
4852
+ export interface ProductDevicesPositionItem {
4686
4853
  /**
4687
- * 列表Offset
4854
+ * 设备位置列表
4688
4855
  */
4689
- Offset?: number;
4856
+ Items: Array<DevicePositionItem>;
4690
4857
  /**
4691
- * 产品Status
4858
+ * 产品标识
4692
4859
  */
4693
- DevStatus?: string;
4860
+ ProductId: string;
4694
4861
  /**
4695
- * 产品ID
4862
+ * 设备位置数量
4696
4863
  */
4697
- ProductId?: string;
4864
+ Total: number;
4698
4865
  }
4699
4866
  /**
4700
4867
  * ListTopicPolicy请求参数结构体
@@ -5193,7 +5360,10 @@ export interface DescribeCloudStorageAIServiceRequest {
5193
5360
  */
5194
5361
  DeviceName: string;
5195
5362
  /**
5196
- * 云存 AI 服务类型。可选值:PackageDetect
5363
+ * 云存 AI 服务类型。可选值:
5364
+
5365
+ - `PackageDetect`:包裹检测
5366
+ - `Highlight`:视频浓缩
5197
5367
  */
5198
5368
  ServiceType: string;
5199
5369
  }
@@ -5321,27 +5491,18 @@ export interface PublishRRPCMessageResponse {
5321
5491
  RequestId?: string;
5322
5492
  }
5323
5493
  /**
5324
- * 设备的用户
5494
+ * CreateTRTCSignaturesWithRoomId返回参数结构体
5325
5495
  */
5326
- export interface DeviceUser {
5327
- /**
5328
- * 用户ID
5329
- */
5330
- UserId: string;
5331
- /**
5332
- * 用户角色 1所有者,0:其他分享者
5333
- */
5334
- Role: number;
5496
+ export interface CreateTRTCSignaturesWithRoomIdResponse {
5335
5497
  /**
5336
- * 家庭ID,所有者带该参数
5498
+ * 返回参数数组
5337
5499
  注意:此字段可能返回 null,表示取不到有效值。
5338
5500
  */
5339
- FamilyId?: string;
5501
+ TRTCParamList?: Array<TRTCParams>;
5340
5502
  /**
5341
- * 家庭名称,所有者带该参数
5342
- 注意:此字段可能返回 null,表示取不到有效值。
5503
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5343
5504
  */
5344
- FamilyName?: string;
5505
+ RequestId?: string;
5345
5506
  }
5346
5507
  /**
5347
5508
  * DescribeDevicePackages返回参数结构体
@@ -5506,13 +5667,21 @@ export interface DeviceInfo {
5506
5667
  IsLora: boolean;
5507
5668
  }
5508
5669
  /**
5509
- * ModifyFenceBind返回参数结构体
5670
+ * GenerateCloudStorageAIServiceTaskFileURL请求参数结构体
5510
5671
  */
5511
- export interface ModifyFenceBindResponse {
5672
+ export interface GenerateCloudStorageAIServiceTaskFileURLRequest {
5512
5673
  /**
5513
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5674
+ * 产品 ID
5514
5675
  */
5515
- RequestId?: string;
5676
+ TaskId: string;
5677
+ /**
5678
+ * 文件名
5679
+ */
5680
+ FileName: string;
5681
+ /**
5682
+ * 过期时间 UNIX 时间戳(默认值为当前时间 1 小时后)
5683
+ */
5684
+ ExpireTime?: number;
5516
5685
  }
5517
5686
  /**
5518
5687
  * DescribeInstance请求参数结构体
@@ -5645,6 +5814,44 @@ export interface InstanceDetail {
5645
5814
  */
5646
5815
  MaxDeviceOnlineCount?: number;
5647
5816
  }
5817
+ /**
5818
+ * SearchStudioProduct请求参数结构体
5819
+ */
5820
+ export interface SearchStudioProductRequest {
5821
+ /**
5822
+ * 项目ID
5823
+ */
5824
+ ProjectId?: string;
5825
+ /**
5826
+ * 产品名称
5827
+ */
5828
+ ProductName?: string;
5829
+ /**
5830
+ * 列表Limit
5831
+ */
5832
+ Limit?: number;
5833
+ /**
5834
+ * 列表Offset
5835
+ */
5836
+ Offset?: number;
5837
+ /**
5838
+ * 产品Status
5839
+ */
5840
+ DevStatus?: string;
5841
+ /**
5842
+ * 产品ID
5843
+ */
5844
+ ProductId?: string;
5845
+ }
5846
+ /**
5847
+ * RemoveUserByRoomIdFromTRTC返回参数结构体
5848
+ */
5849
+ export interface RemoveUserByRoomIdFromTRTCResponse {
5850
+ /**
5851
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5852
+ */
5853
+ RequestId?: string;
5854
+ }
5648
5855
  /**
5649
5856
  * DescribeLoRaFrequency返回参数结构体
5650
5857
  */
@@ -5731,6 +5938,20 @@ export interface DescribeGatewayBindDevicesResponse {
5731
5938
  */
5732
5939
  RequestId?: string;
5733
5940
  }
5941
+ /**
5942
+ * DescribeDeviceFirmwares返回参数结构体
5943
+ */
5944
+ export interface DescribeDeviceFirmwaresResponse {
5945
+ /**
5946
+ * 固件信息列表
5947
+ 注意:此字段可能返回 null,表示取不到有效值。
5948
+ */
5949
+ Firmwares: Array<DeviceFirmwareInfo>;
5950
+ /**
5951
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5952
+ */
5953
+ RequestId?: string;
5954
+ }
5734
5955
  /**
5735
5956
  * DescribeFirmwareTask请求参数结构体
5736
5957
  */