tencentcloud-sdk-nodejs-iotexplorer 4.0.248 → 4.0.255
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 +1395 -76
- package/package.json +1 -1
- package/products.md +59 -58
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +52 -14
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +243 -105
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +17 -5
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +24 -6
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +206 -87
|
@@ -683,6 +683,23 @@ export interface FenceBindProductItem {
|
|
|
683
683
|
*/
|
|
684
684
|
ProductId: string;
|
|
685
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* PublishRRPCMessage请求参数结构体
|
|
688
|
+
*/
|
|
689
|
+
export interface PublishRRPCMessageRequest {
|
|
690
|
+
/**
|
|
691
|
+
* 产品ID
|
|
692
|
+
*/
|
|
693
|
+
ProductId: string;
|
|
694
|
+
/**
|
|
695
|
+
* 设备名称
|
|
696
|
+
*/
|
|
697
|
+
DeviceName: string;
|
|
698
|
+
/**
|
|
699
|
+
* 消息内容,utf8编码
|
|
700
|
+
*/
|
|
701
|
+
Payload: string;
|
|
702
|
+
}
|
|
686
703
|
/**
|
|
687
704
|
* 设备位置详情
|
|
688
705
|
*/
|
|
@@ -756,29 +773,17 @@ export interface DescribePositionFenceListResponse {
|
|
|
756
773
|
RequestId?: string;
|
|
757
774
|
}
|
|
758
775
|
/**
|
|
759
|
-
*
|
|
776
|
+
* GenSingleDeviceSignatureOfPublic返回参数结构体
|
|
760
777
|
*/
|
|
761
|
-
export interface
|
|
778
|
+
export interface GenSingleDeviceSignatureOfPublicResponse {
|
|
762
779
|
/**
|
|
763
|
-
*
|
|
780
|
+
* 设备签名
|
|
764
781
|
*/
|
|
765
|
-
|
|
766
|
-
/**
|
|
767
|
-
* 设备名
|
|
768
|
-
*/
|
|
769
|
-
DeviceName: string;
|
|
770
|
-
/**
|
|
771
|
-
* 查询起始时间,Unix时间,单位为毫秒
|
|
772
|
-
*/
|
|
773
|
-
StartTime: number;
|
|
774
|
-
/**
|
|
775
|
-
* 查询结束时间,Unix时间,单位为毫秒
|
|
776
|
-
*/
|
|
777
|
-
EndTime: number;
|
|
782
|
+
DeviceSignature: DeviceSignatureInfo;
|
|
778
783
|
/**
|
|
779
|
-
*
|
|
784
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
780
785
|
*/
|
|
781
|
-
|
|
786
|
+
RequestId?: string;
|
|
782
787
|
}
|
|
783
788
|
/**
|
|
784
789
|
* DescribeDevicePositionList返回参数结构体
|
|
@@ -932,80 +937,18 @@ export interface DeviceDataHistoryItem {
|
|
|
932
937
|
Value: string;
|
|
933
938
|
}
|
|
934
939
|
/**
|
|
935
|
-
*
|
|
940
|
+
* GetFamilyDeviceUserList返回参数结构体
|
|
936
941
|
*/
|
|
937
|
-
export interface
|
|
938
|
-
/**
|
|
939
|
-
* 产品ID
|
|
940
|
-
*/
|
|
941
|
-
ProductId: string;
|
|
942
|
-
/**
|
|
943
|
-
* 产品名称
|
|
944
|
-
*/
|
|
945
|
-
ProductName: string;
|
|
946
|
-
/**
|
|
947
|
-
* 产品分组模板ID
|
|
948
|
-
*/
|
|
949
|
-
CategoryId: number;
|
|
950
|
-
/**
|
|
951
|
-
* 加密类型
|
|
952
|
-
*/
|
|
953
|
-
EncryptionType: string;
|
|
954
|
-
/**
|
|
955
|
-
* 连接类型
|
|
956
|
-
*/
|
|
957
|
-
NetType: string;
|
|
958
|
-
/**
|
|
959
|
-
* 数据协议
|
|
960
|
-
*/
|
|
961
|
-
DataProtocol: number;
|
|
962
|
-
/**
|
|
963
|
-
* 产品描述
|
|
964
|
-
*/
|
|
965
|
-
ProductDesc: string;
|
|
966
|
-
/**
|
|
967
|
-
* 状态
|
|
968
|
-
*/
|
|
969
|
-
DevStatus: string;
|
|
942
|
+
export interface GetFamilyDeviceUserListResponse {
|
|
970
943
|
/**
|
|
971
|
-
|
|
972
|
-
*/
|
|
973
|
-
CreateTime: number;
|
|
974
|
-
/**
|
|
975
|
-
* 更新时间
|
|
976
|
-
*/
|
|
977
|
-
UpdateTime: number;
|
|
978
|
-
/**
|
|
979
|
-
* 区域
|
|
980
|
-
*/
|
|
981
|
-
Region: string;
|
|
982
|
-
/**
|
|
983
|
-
* 产品类型
|
|
984
|
-
*/
|
|
985
|
-
ProductType: number;
|
|
986
|
-
/**
|
|
987
|
-
* 项目ID
|
|
988
|
-
*/
|
|
989
|
-
ProjectId: string;
|
|
990
|
-
/**
|
|
991
|
-
* 产品ModuleId
|
|
992
|
-
*/
|
|
993
|
-
ModuleId: number;
|
|
994
|
-
/**
|
|
995
|
-
* 是否使用脚本进行二进制转json功能 可以取值 true / false
|
|
944
|
+
* 设备的用户列表
|
|
996
945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
997
946
|
*/
|
|
998
|
-
|
|
947
|
+
UserList: Array<DeviceUser>;
|
|
999
948
|
/**
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
CreateUserId: number;
|
|
1004
|
-
/**
|
|
1005
|
-
* 创建者昵称
|
|
1006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1007
|
-
*/
|
|
1008
|
-
CreatorNickName: string;
|
|
949
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
950
|
+
*/
|
|
951
|
+
RequestId?: string;
|
|
1009
952
|
}
|
|
1010
953
|
/**
|
|
1011
954
|
* 项目详情
|
|
@@ -1370,6 +1313,31 @@ export interface DescribeTopicRuleRequest {
|
|
|
1370
1313
|
*/
|
|
1371
1314
|
RuleName: string;
|
|
1372
1315
|
}
|
|
1316
|
+
/**
|
|
1317
|
+
* GetDeviceLocationHistory请求参数结构体
|
|
1318
|
+
*/
|
|
1319
|
+
export interface GetDeviceLocationHistoryRequest {
|
|
1320
|
+
/**
|
|
1321
|
+
* 产品Id
|
|
1322
|
+
*/
|
|
1323
|
+
ProductId: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* 设备名
|
|
1326
|
+
*/
|
|
1327
|
+
DeviceName: string;
|
|
1328
|
+
/**
|
|
1329
|
+
* 查询起始时间,Unix时间,单位为毫秒
|
|
1330
|
+
*/
|
|
1331
|
+
StartTime: number;
|
|
1332
|
+
/**
|
|
1333
|
+
* 查询结束时间,Unix时间,单位为毫秒
|
|
1334
|
+
*/
|
|
1335
|
+
EndTime: number;
|
|
1336
|
+
/**
|
|
1337
|
+
* 坐标类型
|
|
1338
|
+
*/
|
|
1339
|
+
CoordinateType?: number;
|
|
1340
|
+
}
|
|
1373
1341
|
/**
|
|
1374
1342
|
* CallDeviceActionSync返回参数结构体
|
|
1375
1343
|
*/
|
|
@@ -2281,6 +2249,19 @@ export interface PositionFenceInfo {
|
|
|
2281
2249
|
*/
|
|
2282
2250
|
UpdateTime: number;
|
|
2283
2251
|
}
|
|
2252
|
+
/**
|
|
2253
|
+
* 设备签名
|
|
2254
|
+
*/
|
|
2255
|
+
export interface DeviceSignatureInfo {
|
|
2256
|
+
/**
|
|
2257
|
+
* 设备名
|
|
2258
|
+
*/
|
|
2259
|
+
DeviceName: string;
|
|
2260
|
+
/**
|
|
2261
|
+
* 设备签名
|
|
2262
|
+
*/
|
|
2263
|
+
DeviceSignature: string;
|
|
2264
|
+
}
|
|
2284
2265
|
/**
|
|
2285
2266
|
* 位置空间详情
|
|
2286
2267
|
*/
|
|
@@ -2450,6 +2431,19 @@ export interface DirectBindDeviceInFamilyRequest {
|
|
|
2450
2431
|
*/
|
|
2451
2432
|
RoomId?: string;
|
|
2452
2433
|
}
|
|
2434
|
+
/**
|
|
2435
|
+
* GetFamilyDeviceUserList请求参数结构体
|
|
2436
|
+
*/
|
|
2437
|
+
export interface GetFamilyDeviceUserListRequest {
|
|
2438
|
+
/**
|
|
2439
|
+
* 产品ID
|
|
2440
|
+
*/
|
|
2441
|
+
ProductId: string;
|
|
2442
|
+
/**
|
|
2443
|
+
* 设备名称
|
|
2444
|
+
*/
|
|
2445
|
+
DeviceName: string;
|
|
2446
|
+
}
|
|
2453
2447
|
/**
|
|
2454
2448
|
* DescribeLoRaFrequency返回参数结构体
|
|
2455
2449
|
*/
|
|
@@ -2464,6 +2458,82 @@ export interface DescribeLoRaFrequencyResponse {
|
|
|
2464
2458
|
*/
|
|
2465
2459
|
RequestId?: string;
|
|
2466
2460
|
}
|
|
2461
|
+
/**
|
|
2462
|
+
* 产品详情
|
|
2463
|
+
*/
|
|
2464
|
+
export interface ProductEntry {
|
|
2465
|
+
/**
|
|
2466
|
+
* 产品ID
|
|
2467
|
+
*/
|
|
2468
|
+
ProductId: string;
|
|
2469
|
+
/**
|
|
2470
|
+
* 产品名称
|
|
2471
|
+
*/
|
|
2472
|
+
ProductName: string;
|
|
2473
|
+
/**
|
|
2474
|
+
* 产品分组模板ID
|
|
2475
|
+
*/
|
|
2476
|
+
CategoryId: number;
|
|
2477
|
+
/**
|
|
2478
|
+
* 加密类型
|
|
2479
|
+
*/
|
|
2480
|
+
EncryptionType: string;
|
|
2481
|
+
/**
|
|
2482
|
+
* 连接类型
|
|
2483
|
+
*/
|
|
2484
|
+
NetType: string;
|
|
2485
|
+
/**
|
|
2486
|
+
* 数据协议
|
|
2487
|
+
*/
|
|
2488
|
+
DataProtocol: number;
|
|
2489
|
+
/**
|
|
2490
|
+
* 产品描述
|
|
2491
|
+
*/
|
|
2492
|
+
ProductDesc: string;
|
|
2493
|
+
/**
|
|
2494
|
+
* 状态
|
|
2495
|
+
*/
|
|
2496
|
+
DevStatus: string;
|
|
2497
|
+
/**
|
|
2498
|
+
* 创建时间
|
|
2499
|
+
*/
|
|
2500
|
+
CreateTime: number;
|
|
2501
|
+
/**
|
|
2502
|
+
* 更新时间
|
|
2503
|
+
*/
|
|
2504
|
+
UpdateTime: number;
|
|
2505
|
+
/**
|
|
2506
|
+
* 区域
|
|
2507
|
+
*/
|
|
2508
|
+
Region: string;
|
|
2509
|
+
/**
|
|
2510
|
+
* 产品类型
|
|
2511
|
+
*/
|
|
2512
|
+
ProductType: number;
|
|
2513
|
+
/**
|
|
2514
|
+
* 项目ID
|
|
2515
|
+
*/
|
|
2516
|
+
ProjectId: string;
|
|
2517
|
+
/**
|
|
2518
|
+
* 产品ModuleId
|
|
2519
|
+
*/
|
|
2520
|
+
ModuleId: number;
|
|
2521
|
+
/**
|
|
2522
|
+
* 是否使用脚本进行二进制转json功能 可以取值 true / false
|
|
2523
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2524
|
+
*/
|
|
2525
|
+
EnableProductScript: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* 创建人 UinId
|
|
2528
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2529
|
+
*/
|
|
2530
|
+
CreateUserId: number;
|
|
2531
|
+
/**
|
|
2532
|
+
* 创建者昵称
|
|
2533
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2534
|
+
*/
|
|
2535
|
+
CreatorNickName: string;
|
|
2536
|
+
}
|
|
2467
2537
|
/**
|
|
2468
2538
|
* DescribeSpaceFenceEventList请求参数结构体
|
|
2469
2539
|
*/
|
|
@@ -2973,6 +3043,23 @@ export interface SearchStudioProductRequest {
|
|
|
2973
3043
|
*/
|
|
2974
3044
|
ProductId?: string;
|
|
2975
3045
|
}
|
|
3046
|
+
/**
|
|
3047
|
+
* GenSingleDeviceSignatureOfPublic请求参数结构体
|
|
3048
|
+
*/
|
|
3049
|
+
export interface GenSingleDeviceSignatureOfPublicRequest {
|
|
3050
|
+
/**
|
|
3051
|
+
* 设备所属的产品ID
|
|
3052
|
+
*/
|
|
3053
|
+
ProductId: string;
|
|
3054
|
+
/**
|
|
3055
|
+
* 需要绑定的设备
|
|
3056
|
+
*/
|
|
3057
|
+
DeviceName: string;
|
|
3058
|
+
/**
|
|
3059
|
+
* 设备绑定签名的有效时间,以秒为单位。取值范围:0 < Expire <= 86400,Expire == -1(十年)
|
|
3060
|
+
*/
|
|
3061
|
+
Expire: number;
|
|
3062
|
+
}
|
|
2976
3063
|
/**
|
|
2977
3064
|
* DeleteDevices请求参数结构体
|
|
2978
3065
|
*/
|
|
@@ -3226,6 +3313,38 @@ export interface CreateTopicRuleRequest {
|
|
|
3226
3313
|
*/
|
|
3227
3314
|
TopicRulePayload: TopicRulePayload;
|
|
3228
3315
|
}
|
|
3316
|
+
/**
|
|
3317
|
+
* PublishRRPCMessage返回参数结构体
|
|
3318
|
+
*/
|
|
3319
|
+
export interface PublishRRPCMessageResponse {
|
|
3320
|
+
/**
|
|
3321
|
+
* RRPC消息ID
|
|
3322
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3323
|
+
*/
|
|
3324
|
+
MessageId: number;
|
|
3325
|
+
/**
|
|
3326
|
+
* 设备回复的消息内容,采用base64编码
|
|
3327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3328
|
+
*/
|
|
3329
|
+
PayloadBase64: string;
|
|
3330
|
+
/**
|
|
3331
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3332
|
+
*/
|
|
3333
|
+
RequestId?: string;
|
|
3334
|
+
}
|
|
3335
|
+
/**
|
|
3336
|
+
* 设备的用户
|
|
3337
|
+
*/
|
|
3338
|
+
export interface DeviceUser {
|
|
3339
|
+
/**
|
|
3340
|
+
* 用户ID
|
|
3341
|
+
*/
|
|
3342
|
+
UserId: string;
|
|
3343
|
+
/**
|
|
3344
|
+
* 用户角色 1所有者,0:其他分享者
|
|
3345
|
+
*/
|
|
3346
|
+
Role: number;
|
|
3347
|
+
}
|
|
3229
3348
|
/**
|
|
3230
3349
|
* GetBatchProductionsList请求参数结构体
|
|
3231
3350
|
*/
|