tencentcloud-sdk-nodejs-iotexplorer 4.0.842 → 4.0.850
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/package.json +1 -1
- package/products.md +58 -58
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +93 -32
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +300 -112
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +29 -9
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +42 -12
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +289 -112
|
@@ -437,6 +437,15 @@ export interface GetDeviceListResponse {
|
|
|
437
437
|
*/
|
|
438
438
|
RequestId?: string;
|
|
439
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* DismissRoomByStrRoomIdFromTRTC返回参数结构体
|
|
442
|
+
*/
|
|
443
|
+
export interface DismissRoomByStrRoomIdFromTRTCResponse {
|
|
444
|
+
/**
|
|
445
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
446
|
+
*/
|
|
447
|
+
RequestId?: string;
|
|
448
|
+
}
|
|
440
449
|
/**
|
|
441
450
|
* GenerateSignedVideoURL请求参数结构体
|
|
442
451
|
*/
|
|
@@ -532,6 +541,25 @@ export interface DeleteLoRaFrequencyResponse {
|
|
|
532
541
|
*/
|
|
533
542
|
RequestId?: string;
|
|
534
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
|
+
}
|
|
535
563
|
/**
|
|
536
564
|
* DescribeCloudStorageMultiThumbnail返回参数结构体
|
|
537
565
|
*/
|
|
@@ -740,21 +768,27 @@ export interface CallDeviceActionSyncRequest {
|
|
|
740
768
|
InputParams?: string;
|
|
741
769
|
}
|
|
742
770
|
/**
|
|
743
|
-
*
|
|
771
|
+
* 设备的用户
|
|
744
772
|
*/
|
|
745
|
-
export interface
|
|
773
|
+
export interface DeviceUser {
|
|
746
774
|
/**
|
|
747
|
-
*
|
|
775
|
+
* 用户ID
|
|
748
776
|
*/
|
|
749
|
-
|
|
777
|
+
UserId: string;
|
|
750
778
|
/**
|
|
751
|
-
*
|
|
779
|
+
* 用户角色 1所有者,0:其他分享者
|
|
752
780
|
*/
|
|
753
|
-
|
|
781
|
+
Role: number;
|
|
754
782
|
/**
|
|
755
|
-
*
|
|
783
|
+
* 家庭ID,所有者带该参数
|
|
784
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
756
785
|
*/
|
|
757
|
-
|
|
786
|
+
FamilyId?: string;
|
|
787
|
+
/**
|
|
788
|
+
* 家庭名称,所有者带该参数
|
|
789
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
790
|
+
*/
|
|
791
|
+
FamilyName?: string;
|
|
758
792
|
}
|
|
759
793
|
/**
|
|
760
794
|
* GetProjectList返回参数结构体
|
|
@@ -775,6 +809,15 @@ export interface GetProjectListResponse {
|
|
|
775
809
|
*/
|
|
776
810
|
RequestId?: string;
|
|
777
811
|
}
|
|
812
|
+
/**
|
|
813
|
+
* ModifyFenceBind返回参数结构体
|
|
814
|
+
*/
|
|
815
|
+
export interface ModifyFenceBindResponse {
|
|
816
|
+
/**
|
|
817
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
818
|
+
*/
|
|
819
|
+
RequestId?: string;
|
|
820
|
+
}
|
|
778
821
|
/**
|
|
779
822
|
* DescribeDevicePositionList请求参数结构体
|
|
780
823
|
*/
|
|
@@ -985,45 +1028,13 @@ export interface DeletePositionFenceResponse {
|
|
|
985
1028
|
RequestId?: string;
|
|
986
1029
|
}
|
|
987
1030
|
/**
|
|
988
|
-
*
|
|
1031
|
+
* DescribeCloudStorageAIServiceTask请求参数结构体
|
|
989
1032
|
*/
|
|
990
|
-
export interface
|
|
991
|
-
/**
|
|
992
|
-
* 频点唯一ID
|
|
993
|
-
*/
|
|
994
|
-
FreqId?: string;
|
|
995
|
-
/**
|
|
996
|
-
* 频点名称
|
|
997
|
-
*/
|
|
998
|
-
FreqName?: string;
|
|
999
|
-
/**
|
|
1000
|
-
* 频点描述
|
|
1001
|
-
*/
|
|
1002
|
-
Description?: string;
|
|
1003
|
-
/**
|
|
1004
|
-
* 数据上行信道
|
|
1005
|
-
*/
|
|
1006
|
-
ChannelsDataUp?: Array<number | bigint>;
|
|
1007
|
-
/**
|
|
1008
|
-
* 数据下行信道RX1
|
|
1009
|
-
*/
|
|
1010
|
-
ChannelsDataRX1?: Array<number | bigint>;
|
|
1011
|
-
/**
|
|
1012
|
-
* 数据下行信道RX2
|
|
1013
|
-
*/
|
|
1014
|
-
ChannelsDataRX2?: Array<number | bigint>;
|
|
1015
|
-
/**
|
|
1016
|
-
* 入网上行信道
|
|
1017
|
-
*/
|
|
1018
|
-
ChannelsJoinUp?: Array<number | bigint>;
|
|
1019
|
-
/**
|
|
1020
|
-
* 入网下行信道RX1
|
|
1021
|
-
*/
|
|
1022
|
-
ChannelsJoinRX1?: Array<number | bigint>;
|
|
1033
|
+
export interface DescribeCloudStorageAIServiceTaskRequest {
|
|
1023
1034
|
/**
|
|
1024
|
-
*
|
|
1035
|
+
* 任务 ID
|
|
1025
1036
|
*/
|
|
1026
|
-
|
|
1037
|
+
TaskId: string;
|
|
1027
1038
|
}
|
|
1028
1039
|
/**
|
|
1029
1040
|
* 围栏告警位置点
|
|
@@ -1115,6 +1126,15 @@ export interface PackageInfo {
|
|
|
1115
1126
|
*/
|
|
1116
1127
|
CSUserId?: string;
|
|
1117
1128
|
}
|
|
1129
|
+
/**
|
|
1130
|
+
* UnbindDevices返回参数结构体
|
|
1131
|
+
*/
|
|
1132
|
+
export interface UnbindDevicesResponse {
|
|
1133
|
+
/**
|
|
1134
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1135
|
+
*/
|
|
1136
|
+
RequestId?: string;
|
|
1137
|
+
}
|
|
1118
1138
|
/**
|
|
1119
1139
|
* ModifyCloudStorageAIServiceCallback返回参数结构体
|
|
1120
1140
|
*/
|
|
@@ -1499,6 +1519,23 @@ export interface FenceBindDeviceItem {
|
|
|
1499
1519
|
*/
|
|
1500
1520
|
Method: string;
|
|
1501
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
|
+
}
|
|
1502
1539
|
/**
|
|
1503
1540
|
* 设备历史数据结构
|
|
1504
1541
|
*/
|
|
@@ -1568,6 +1605,13 @@ export interface CloudStorageAIServiceTask {
|
|
|
1568
1605
|
* 通道 ID
|
|
1569
1606
|
*/
|
|
1570
1607
|
ChannelId?: number;
|
|
1608
|
+
/**
|
|
1609
|
+
* 云存 AI 服务类型。可能取值:
|
|
1610
|
+
|
|
1611
|
+
- `PackageDetect`:包裹检测
|
|
1612
|
+
- `Highlight`:视频浓缩
|
|
1613
|
+
*/
|
|
1614
|
+
ServiceType?: string;
|
|
1571
1615
|
/**
|
|
1572
1616
|
* 对应云存视频的起始时间
|
|
1573
1617
|
*/
|
|
@@ -1577,7 +1621,7 @@ export interface CloudStorageAIServiceTask {
|
|
|
1577
1621
|
*/
|
|
1578
1622
|
EndTime?: number;
|
|
1579
1623
|
/**
|
|
1580
|
-
* 任务状态(1:失败;2:成功但结果为空;3
|
|
1624
|
+
* 任务状态(1:失败;2:成功但结果为空;3:成功且结果非空;4:执行中)
|
|
1581
1625
|
*/
|
|
1582
1626
|
Status?: number;
|
|
1583
1627
|
/**
|
|
@@ -1585,18 +1629,15 @@ export interface CloudStorageAIServiceTask {
|
|
|
1585
1629
|
*/
|
|
1586
1630
|
Result?: string;
|
|
1587
1631
|
/**
|
|
1588
|
-
*
|
|
1589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1632
|
+
* 任务输出文件列表
|
|
1590
1633
|
*/
|
|
1591
|
-
|
|
1634
|
+
Files?: Array<string>;
|
|
1592
1635
|
/**
|
|
1593
1636
|
* 创建时间
|
|
1594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1595
1637
|
*/
|
|
1596
1638
|
CreateTime?: number;
|
|
1597
1639
|
/**
|
|
1598
1640
|
* 最后更新时间
|
|
1599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1600
1641
|
*/
|
|
1601
1642
|
UpdateTime?: number;
|
|
1602
1643
|
}
|
|
@@ -2182,7 +2223,8 @@ export interface ModifyCloudStorageAIServiceCallbackRequest {
|
|
|
2182
2223
|
*/
|
|
2183
2224
|
ProductId: string;
|
|
2184
2225
|
/**
|
|
2185
|
-
*
|
|
2226
|
+
* 推送类型。可选值:
|
|
2227
|
+
- `http`:HTTP 回调
|
|
2186
2228
|
*/
|
|
2187
2229
|
Type: string;
|
|
2188
2230
|
/**
|
|
@@ -2330,6 +2372,31 @@ export interface CreateLoRaGatewayRequest {
|
|
|
2330
2372
|
*/
|
|
2331
2373
|
FrequencyId?: string;
|
|
2332
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
|
+
}
|
|
2333
2400
|
/**
|
|
2334
2401
|
* ReleaseStudioProduct请求参数结构体
|
|
2335
2402
|
*/
|
|
@@ -2416,7 +2483,9 @@ export interface ModifyCloudStorageAIServiceRequest {
|
|
|
2416
2483
|
*/
|
|
2417
2484
|
DeviceName: string;
|
|
2418
2485
|
/**
|
|
2419
|
-
* 云存 AI 服务类型。可选值:
|
|
2486
|
+
* 云存 AI 服务类型。可选值:
|
|
2487
|
+
- `PackageDetect`:包裹检测
|
|
2488
|
+
- `Highlight`:视频浓缩
|
|
2420
2489
|
*/
|
|
2421
2490
|
ServiceType: string;
|
|
2422
2491
|
/**
|
|
@@ -2427,6 +2496,10 @@ export interface ModifyCloudStorageAIServiceRequest {
|
|
|
2427
2496
|
* 视频分析区域
|
|
2428
2497
|
*/
|
|
2429
2498
|
ROI?: string;
|
|
2499
|
+
/**
|
|
2500
|
+
* 云存 AI 服务的配置参数
|
|
2501
|
+
*/
|
|
2502
|
+
Config?: string;
|
|
2430
2503
|
}
|
|
2431
2504
|
/**
|
|
2432
2505
|
* CreateDevice返回参数结构体
|
|
@@ -2735,7 +2808,9 @@ export interface DescribeCloudStorageAIServiceTasksRequest {
|
|
|
2735
2808
|
*/
|
|
2736
2809
|
DeviceName: string;
|
|
2737
2810
|
/**
|
|
2738
|
-
* 云存 AI 服务类型。可选值:
|
|
2811
|
+
* 云存 AI 服务类型。可选值:
|
|
2812
|
+
- `PackageDetect`:包裹检测
|
|
2813
|
+
- `Highlight`:视频浓缩
|
|
2739
2814
|
*/
|
|
2740
2815
|
ServiceType: string;
|
|
2741
2816
|
/**
|
|
@@ -2747,9 +2822,22 @@ export interface DescribeCloudStorageAIServiceTasksRequest {
|
|
|
2747
2822
|
*/
|
|
2748
2823
|
Offset?: number;
|
|
2749
2824
|
/**
|
|
2750
|
-
*
|
|
2825
|
+
* 任务状态。可选值:
|
|
2826
|
+
- (不传):查询全部状态的任务
|
|
2827
|
+
- `1`:失败
|
|
2828
|
+
- `2`:成功但结果为空
|
|
2829
|
+
- `3`:成功且结果非空
|
|
2830
|
+
- `4`:执行中
|
|
2751
2831
|
*/
|
|
2752
2832
|
Status?: number;
|
|
2833
|
+
/**
|
|
2834
|
+
* 用户ID
|
|
2835
|
+
*/
|
|
2836
|
+
UserId?: string;
|
|
2837
|
+
/**
|
|
2838
|
+
* 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
|
|
2839
|
+
*/
|
|
2840
|
+
ChannelId?: number;
|
|
2753
2841
|
}
|
|
2754
2842
|
/**
|
|
2755
2843
|
* DescribeStudioProduct返回参数结构体
|
|
@@ -3526,6 +3614,19 @@ export interface EnableTopicRuleRequest {
|
|
|
3526
3614
|
*/
|
|
3527
3615
|
RuleName: string;
|
|
3528
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
|
+
}
|
|
3529
3630
|
/**
|
|
3530
3631
|
* DescribeBindedProducts返回参数结构体
|
|
3531
3632
|
*/
|
|
@@ -3738,6 +3839,19 @@ export interface DirectBindDeviceInFamilyRequest {
|
|
|
3738
3839
|
*/
|
|
3739
3840
|
RoomId?: string;
|
|
3740
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
|
+
}
|
|
3741
3855
|
/**
|
|
3742
3856
|
* DescribeCloudStorageEvents返回参数结构体
|
|
3743
3857
|
*/
|
|
@@ -3850,23 +3964,17 @@ export interface DescribeInstanceResponse {
|
|
|
3850
3964
|
RequestId?: string;
|
|
3851
3965
|
}
|
|
3852
3966
|
/**
|
|
3853
|
-
*
|
|
3967
|
+
* CreateTRTCSignaturesWithRoomId请求参数结构体
|
|
3854
3968
|
*/
|
|
3855
|
-
export interface
|
|
3856
|
-
/**
|
|
3857
|
-
* 设备的总数
|
|
3858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3859
|
-
*/
|
|
3860
|
-
Total: number;
|
|
3969
|
+
export interface CreateTRTCSignaturesWithRoomIdRequest {
|
|
3861
3970
|
/**
|
|
3862
|
-
*
|
|
3863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3971
|
+
* TRTC进房间的用户名称数组,数组元素不可重复,最长不超过 10 个。
|
|
3864
3972
|
*/
|
|
3865
|
-
|
|
3973
|
+
TRTCUserIds: Array<string>;
|
|
3866
3974
|
/**
|
|
3867
|
-
*
|
|
3975
|
+
* 房间id
|
|
3868
3976
|
*/
|
|
3869
|
-
|
|
3977
|
+
RoomId: string;
|
|
3870
3978
|
}
|
|
3871
3979
|
/**
|
|
3872
3980
|
* Topic信息, 包括Topic名字和权限
|
|
@@ -3971,9 +4079,9 @@ export interface DescribeProjectRequest {
|
|
|
3971
4079
|
ProjectId: string;
|
|
3972
4080
|
}
|
|
3973
4081
|
/**
|
|
3974
|
-
*
|
|
4082
|
+
* ModifyModelDefinition返回参数结构体
|
|
3975
4083
|
*/
|
|
3976
|
-
export interface
|
|
4084
|
+
export interface ModifyModelDefinitionResponse {
|
|
3977
4085
|
/**
|
|
3978
4086
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3979
4087
|
*/
|
|
@@ -4037,13 +4145,13 @@ export interface CreateIotVideoCloudStorageRequest {
|
|
|
4037
4145
|
StorageRegion?: string;
|
|
4038
4146
|
}
|
|
4039
4147
|
/**
|
|
4040
|
-
*
|
|
4148
|
+
* DismissRoomByStrRoomIdFromTRTC请求参数结构体
|
|
4041
4149
|
*/
|
|
4042
|
-
export interface
|
|
4150
|
+
export interface DismissRoomByStrRoomIdFromTRTCRequest {
|
|
4043
4151
|
/**
|
|
4044
|
-
*
|
|
4152
|
+
* 房间id
|
|
4045
4153
|
*/
|
|
4046
|
-
|
|
4154
|
+
RoomId: string;
|
|
4047
4155
|
}
|
|
4048
4156
|
/**
|
|
4049
4157
|
* DescribeCloudStoragePackageConsumeDetails请求参数结构体
|
|
@@ -4594,6 +4702,47 @@ export interface GetProjectListRequest {
|
|
|
4594
4702
|
*/
|
|
4595
4703
|
ProjectName?: string;
|
|
4596
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
|
+
}
|
|
4597
4746
|
/**
|
|
4598
4747
|
* DescribeCloudStorageAIServiceTasks返回参数结构体
|
|
4599
4748
|
*/
|
|
@@ -4698,33 +4847,21 @@ export interface GetGatewaySubDeviceListRequest {
|
|
|
4698
4847
|
Limit: number;
|
|
4699
4848
|
}
|
|
4700
4849
|
/**
|
|
4701
|
-
*
|
|
4850
|
+
* 产品设备位置信息
|
|
4702
4851
|
*/
|
|
4703
|
-
export interface
|
|
4704
|
-
/**
|
|
4705
|
-
* 项目ID
|
|
4706
|
-
*/
|
|
4707
|
-
ProjectId?: string;
|
|
4708
|
-
/**
|
|
4709
|
-
* 产品名称
|
|
4710
|
-
*/
|
|
4711
|
-
ProductName?: string;
|
|
4712
|
-
/**
|
|
4713
|
-
* 列表Limit
|
|
4714
|
-
*/
|
|
4715
|
-
Limit?: number;
|
|
4852
|
+
export interface ProductDevicesPositionItem {
|
|
4716
4853
|
/**
|
|
4717
|
-
*
|
|
4854
|
+
* 设备位置列表
|
|
4718
4855
|
*/
|
|
4719
|
-
|
|
4856
|
+
Items: Array<DevicePositionItem>;
|
|
4720
4857
|
/**
|
|
4721
|
-
*
|
|
4858
|
+
* 产品标识
|
|
4722
4859
|
*/
|
|
4723
|
-
|
|
4860
|
+
ProductId: string;
|
|
4724
4861
|
/**
|
|
4725
|
-
*
|
|
4862
|
+
* 设备位置数量
|
|
4726
4863
|
*/
|
|
4727
|
-
|
|
4864
|
+
Total: number;
|
|
4728
4865
|
}
|
|
4729
4866
|
/**
|
|
4730
4867
|
* ListTopicPolicy请求参数结构体
|
|
@@ -5223,7 +5360,10 @@ export interface DescribeCloudStorageAIServiceRequest {
|
|
|
5223
5360
|
*/
|
|
5224
5361
|
DeviceName: string;
|
|
5225
5362
|
/**
|
|
5226
|
-
* 云存 AI 服务类型。可选值:
|
|
5363
|
+
* 云存 AI 服务类型。可选值:
|
|
5364
|
+
|
|
5365
|
+
- `PackageDetect`:包裹检测
|
|
5366
|
+
- `Highlight`:视频浓缩
|
|
5227
5367
|
*/
|
|
5228
5368
|
ServiceType: string;
|
|
5229
5369
|
}
|
|
@@ -5351,27 +5491,18 @@ export interface PublishRRPCMessageResponse {
|
|
|
5351
5491
|
RequestId?: string;
|
|
5352
5492
|
}
|
|
5353
5493
|
/**
|
|
5354
|
-
*
|
|
5494
|
+
* CreateTRTCSignaturesWithRoomId返回参数结构体
|
|
5355
5495
|
*/
|
|
5356
|
-
export interface
|
|
5357
|
-
/**
|
|
5358
|
-
* 用户ID
|
|
5359
|
-
*/
|
|
5360
|
-
UserId: string;
|
|
5361
|
-
/**
|
|
5362
|
-
* 用户角色 1所有者,0:其他分享者
|
|
5363
|
-
*/
|
|
5364
|
-
Role: number;
|
|
5496
|
+
export interface CreateTRTCSignaturesWithRoomIdResponse {
|
|
5365
5497
|
/**
|
|
5366
|
-
*
|
|
5498
|
+
* 返回参数数组
|
|
5367
5499
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5368
5500
|
*/
|
|
5369
|
-
|
|
5501
|
+
TRTCParamList?: Array<TRTCParams>;
|
|
5370
5502
|
/**
|
|
5371
|
-
*
|
|
5372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5503
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5373
5504
|
*/
|
|
5374
|
-
|
|
5505
|
+
RequestId?: string;
|
|
5375
5506
|
}
|
|
5376
5507
|
/**
|
|
5377
5508
|
* DescribeDevicePackages返回参数结构体
|
|
@@ -5536,13 +5667,21 @@ export interface DeviceInfo {
|
|
|
5536
5667
|
IsLora: boolean;
|
|
5537
5668
|
}
|
|
5538
5669
|
/**
|
|
5539
|
-
*
|
|
5670
|
+
* GenerateCloudStorageAIServiceTaskFileURL请求参数结构体
|
|
5540
5671
|
*/
|
|
5541
|
-
export interface
|
|
5672
|
+
export interface GenerateCloudStorageAIServiceTaskFileURLRequest {
|
|
5542
5673
|
/**
|
|
5543
|
-
*
|
|
5674
|
+
* 产品 ID
|
|
5544
5675
|
*/
|
|
5545
|
-
|
|
5676
|
+
TaskId: string;
|
|
5677
|
+
/**
|
|
5678
|
+
* 文件名
|
|
5679
|
+
*/
|
|
5680
|
+
FileName: string;
|
|
5681
|
+
/**
|
|
5682
|
+
* 过期时间 UNIX 时间戳(默认值为当前时间 1 小时后)
|
|
5683
|
+
*/
|
|
5684
|
+
ExpireTime?: number;
|
|
5546
5685
|
}
|
|
5547
5686
|
/**
|
|
5548
5687
|
* DescribeInstance请求参数结构体
|
|
@@ -5675,6 +5814,44 @@ export interface InstanceDetail {
|
|
|
5675
5814
|
*/
|
|
5676
5815
|
MaxDeviceOnlineCount?: number;
|
|
5677
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
|
+
}
|
|
5678
5855
|
/**
|
|
5679
5856
|
* DescribeLoRaFrequency返回参数结构体
|
|
5680
5857
|
*/
|