tencentcloud-sdk-nodejs-iotexplorer 4.0.320 → 4.0.323
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.
|
@@ -112,7 +112,7 @@ export interface ModifyStudioProductResponse {
|
|
|
112
112
|
/**
|
|
113
113
|
* 产品描述
|
|
114
114
|
*/
|
|
115
|
-
Product
|
|
115
|
+
Product: ProductEntry;
|
|
116
116
|
/**
|
|
117
117
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
118
118
|
*/
|
|
@@ -412,7 +412,7 @@ export interface CreateStudioProductResponse {
|
|
|
412
412
|
/**
|
|
413
413
|
* 产品描述
|
|
414
414
|
*/
|
|
415
|
-
Product
|
|
415
|
+
Product: ProductEntry;
|
|
416
416
|
/**
|
|
417
417
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
418
418
|
*/
|
|
@@ -949,7 +949,7 @@ export interface DescribeProjectResponse {
|
|
|
949
949
|
/**
|
|
950
950
|
* 返回信息
|
|
951
951
|
*/
|
|
952
|
-
Project
|
|
952
|
+
Project: ProjectEntryEx;
|
|
953
953
|
/**
|
|
954
954
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
955
955
|
*/
|
|
@@ -1143,27 +1143,27 @@ export interface DescribeBatchProductionResponse {
|
|
|
1143
1143
|
/**
|
|
1144
1144
|
* 量产数量。
|
|
1145
1145
|
*/
|
|
1146
|
-
BatchCnt
|
|
1146
|
+
BatchCnt: number;
|
|
1147
1147
|
/**
|
|
1148
1148
|
* 烧录方式。
|
|
1149
1149
|
*/
|
|
1150
|
-
BurnMethod
|
|
1150
|
+
BurnMethod: number;
|
|
1151
1151
|
/**
|
|
1152
1152
|
* 创建时间。
|
|
1153
1153
|
*/
|
|
1154
|
-
CreateTime
|
|
1154
|
+
CreateTime: number;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* 下载URL。
|
|
1157
1157
|
*/
|
|
1158
|
-
DownloadUrl
|
|
1158
|
+
DownloadUrl: string;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* 生成方式。
|
|
1161
1161
|
*/
|
|
1162
|
-
GenerationMethod
|
|
1162
|
+
GenerationMethod: number;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* 上传URL。
|
|
1165
1165
|
*/
|
|
1166
|
-
UploadUrl
|
|
1166
|
+
UploadUrl: string;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1169
1169
|
*/
|
|
@@ -1319,7 +1319,7 @@ export interface UnbindProductsResponse {
|
|
|
1319
1319
|
/**
|
|
1320
1320
|
* 绑定了待解绑的LoRa产品下的设备的网关设备列表
|
|
1321
1321
|
*/
|
|
1322
|
-
GatewayDeviceNames
|
|
1322
|
+
GatewayDeviceNames: Array<string>;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1325
1325
|
*/
|
|
@@ -1445,11 +1445,11 @@ export interface SearchTopicRuleResponse {
|
|
|
1445
1445
|
/**
|
|
1446
1446
|
* 搜索到的规则总数
|
|
1447
1447
|
*/
|
|
1448
|
-
TotalCnt
|
|
1448
|
+
TotalCnt: number;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* 规则信息列表
|
|
1451
1451
|
*/
|
|
1452
|
-
Rules
|
|
1452
|
+
Rules: Array<TopicRuleInfo>;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1455
1455
|
*/
|
|
@@ -1598,7 +1598,7 @@ export interface CreateProjectResponse {
|
|
|
1598
1598
|
/**
|
|
1599
1599
|
* 返回信息
|
|
1600
1600
|
*/
|
|
1601
|
-
Project
|
|
1601
|
+
Project: ProjectEntry;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1604
1604
|
*/
|
|
@@ -1612,22 +1612,22 @@ export interface DescribeDeviceDataHistoryResponse {
|
|
|
1612
1612
|
* 属性字段名称,对应数据模板中功能属性的标识符
|
|
1613
1613
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1614
1614
|
*/
|
|
1615
|
-
FieldName
|
|
1615
|
+
FieldName: string;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* 数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
|
|
1618
1618
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1619
1619
|
*/
|
|
1620
|
-
Listover
|
|
1620
|
+
Listover: boolean;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* 检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
|
|
1623
1623
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1624
1624
|
*/
|
|
1625
|
-
Context
|
|
1625
|
+
Context: string;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* 历史数据结果数组,返回对应时间点及取值。
|
|
1628
1628
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1629
1629
|
*/
|
|
1630
|
-
Results
|
|
1630
|
+
Results: Array<DeviceDataHistoryItem>;
|
|
1631
1631
|
/**
|
|
1632
1632
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1633
1633
|
*/
|
|
@@ -1723,11 +1723,11 @@ export interface GetStudioProductListRequest {
|
|
|
1723
1723
|
*/
|
|
1724
1724
|
DevStatus?: string;
|
|
1725
1725
|
/**
|
|
1726
|
-
*
|
|
1726
|
+
* 偏移量
|
|
1727
1727
|
*/
|
|
1728
1728
|
Offset?: number;
|
|
1729
1729
|
/**
|
|
1730
|
-
*
|
|
1730
|
+
* 数量限制
|
|
1731
1731
|
*/
|
|
1732
1732
|
Limit?: number;
|
|
1733
1733
|
}
|
|
@@ -1886,7 +1886,7 @@ export interface DescribeStudioProductResponse {
|
|
|
1886
1886
|
/**
|
|
1887
1887
|
* 产品详情
|
|
1888
1888
|
*/
|
|
1889
|
-
Product
|
|
1889
|
+
Product: ProductEntry;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1892
1892
|
*/
|
|
@@ -1912,7 +1912,7 @@ export interface DescribeDeviceResponse {
|
|
|
1912
1912
|
/**
|
|
1913
1913
|
* 设备信息
|
|
1914
1914
|
*/
|
|
1915
|
-
Device
|
|
1915
|
+
Device: DeviceInfo;
|
|
1916
1916
|
/**
|
|
1917
1917
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1918
1918
|
*/
|
|
@@ -1946,11 +1946,11 @@ export interface GetStudioProductListResponse {
|
|
|
1946
1946
|
/**
|
|
1947
1947
|
* 产品列表
|
|
1948
1948
|
*/
|
|
1949
|
-
Products
|
|
1949
|
+
Products: Array<ProductEntry>;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* 产品数量
|
|
1952
1952
|
*/
|
|
1953
|
-
Total
|
|
1953
|
+
Total: number;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1956
1956
|
*/
|
|
@@ -2052,7 +2052,7 @@ export interface ModifyTopicRuleRequest {
|
|
|
2052
2052
|
*/
|
|
2053
2053
|
export interface GetDeviceListRequest {
|
|
2054
2054
|
/**
|
|
2055
|
-
* 需要查看设备列表的产品
|
|
2055
|
+
* 需要查看设备列表的产品ID, -1代表ProjectId来筛选
|
|
2056
2056
|
*/
|
|
2057
2057
|
ProductId: string;
|
|
2058
2058
|
/**
|
|
@@ -2145,11 +2145,11 @@ export interface GetTopicRuleListResponse {
|
|
|
2145
2145
|
/**
|
|
2146
2146
|
* 规则总数量
|
|
2147
2147
|
*/
|
|
2148
|
-
TotalCnt
|
|
2148
|
+
TotalCnt: number;
|
|
2149
2149
|
/**
|
|
2150
2150
|
* 规则列表
|
|
2151
2151
|
*/
|
|
2152
|
-
Rules
|
|
2152
|
+
Rules: Array<TopicRuleInfo>;
|
|
2153
2153
|
/**
|
|
2154
2154
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2155
2155
|
*/
|
|
@@ -2224,12 +2224,12 @@ export interface GetLoRaGatewayListResponse {
|
|
|
2224
2224
|
/**
|
|
2225
2225
|
* 返回总数
|
|
2226
2226
|
*/
|
|
2227
|
-
Total
|
|
2227
|
+
Total: number;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* 返回详情项
|
|
2230
2230
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2231
2231
|
*/
|
|
2232
|
-
Gateways
|
|
2232
|
+
Gateways: Array<LoRaGatewayItem>;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2235
2235
|
*/
|
|
@@ -2267,7 +2267,7 @@ export interface ModifyLoRaGatewayResponse {
|
|
|
2267
2267
|
/**
|
|
2268
2268
|
* 返回网关数据
|
|
2269
2269
|
*/
|
|
2270
|
-
Gateway
|
|
2270
|
+
Gateway: LoRaGatewayItem;
|
|
2271
2271
|
/**
|
|
2272
2272
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2273
2273
|
*/
|
|
@@ -2426,7 +2426,7 @@ export interface DescribeTopicRuleResponse {
|
|
|
2426
2426
|
* 规则描述。
|
|
2427
2427
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2428
2428
|
*/
|
|
2429
|
-
Rule
|
|
2429
|
+
Rule: TopicRule;
|
|
2430
2430
|
/**
|
|
2431
2431
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2432
2432
|
*/
|
|
@@ -2478,11 +2478,11 @@ export interface DescribeBindedProductsResponse {
|
|
|
2478
2478
|
/**
|
|
2479
2479
|
* 当前分页的子产品数组
|
|
2480
2480
|
*/
|
|
2481
|
-
Products
|
|
2481
|
+
Products: Array<BindProductInfo>;
|
|
2482
2482
|
/**
|
|
2483
2483
|
* 绑定的子产品总数量
|
|
2484
2484
|
*/
|
|
2485
|
-
Total
|
|
2485
|
+
Total: number;
|
|
2486
2486
|
/**
|
|
2487
2487
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2488
2488
|
*/
|
|
@@ -2551,14 +2551,6 @@ export interface PositionSpaceInfo {
|
|
|
2551
2551
|
* 网关坐标
|
|
2552
2552
|
*/
|
|
2553
2553
|
export interface LoRaGatewayLocation {
|
|
2554
|
-
/**
|
|
2555
|
-
* 准确度
|
|
2556
|
-
*/
|
|
2557
|
-
Accuracy: number;
|
|
2558
|
-
/**
|
|
2559
|
-
* 海拔
|
|
2560
|
-
*/
|
|
2561
|
-
Altitude: number;
|
|
2562
2554
|
/**
|
|
2563
2555
|
* 纬度
|
|
2564
2556
|
*/
|
|
@@ -2567,6 +2559,14 @@ export interface LoRaGatewayLocation {
|
|
|
2567
2559
|
* 精度
|
|
2568
2560
|
*/
|
|
2569
2561
|
Longitude: number;
|
|
2562
|
+
/**
|
|
2563
|
+
* 准确度
|
|
2564
|
+
*/
|
|
2565
|
+
Accuracy?: number;
|
|
2566
|
+
/**
|
|
2567
|
+
* 海拔
|
|
2568
|
+
*/
|
|
2569
|
+
Altitude?: number;
|
|
2570
2570
|
}
|
|
2571
2571
|
/**
|
|
2572
2572
|
* DescribeDevice请求参数结构体
|
|
@@ -2981,7 +2981,7 @@ export interface CreateLoRaGatewayResponse {
|
|
|
2981
2981
|
/**
|
|
2982
2982
|
* LoRa 网关信息
|
|
2983
2983
|
*/
|
|
2984
|
-
Gateway
|
|
2984
|
+
Gateway: LoRaGatewayItem;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2987
2987
|
*/
|
|
@@ -3105,6 +3105,11 @@ export interface DescribeDeviceBindGatewayResponse {
|
|
|
3105
3105
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3106
3106
|
*/
|
|
3107
3107
|
GatewayDeviceName: string;
|
|
3108
|
+
/**
|
|
3109
|
+
* 网关产品名称
|
|
3110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3111
|
+
*/
|
|
3112
|
+
GatewayName: string;
|
|
3108
3113
|
/**
|
|
3109
3114
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3110
3115
|
*/
|
|
@@ -3138,13 +3143,14 @@ export interface ControlDeviceDataResponse {
|
|
|
3138
3143
|
/**
|
|
3139
3144
|
* 返回信息
|
|
3140
3145
|
*/
|
|
3141
|
-
Data
|
|
3146
|
+
Data: string;
|
|
3142
3147
|
/**
|
|
3143
3148
|
* JSON字符串, 返回下发控制的结果信息,
|
|
3144
|
-
Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic
|
|
3149
|
+
Sent = 1 表示设备已经在线并且订阅了控制下发的mqtt topic.
|
|
3150
|
+
pushResult 是表示发送结果,其中 0 表示成功, 23101 表示设备未在线或没有订阅相关的 MQTT Topic。
|
|
3145
3151
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3146
3152
|
*/
|
|
3147
|
-
Result
|
|
3153
|
+
Result: string;
|
|
3148
3154
|
/**
|
|
3149
3155
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3150
3156
|
*/
|
|
@@ -3488,7 +3494,7 @@ export interface ModifyProjectResponse {
|
|
|
3488
3494
|
/**
|
|
3489
3495
|
* 项目详情
|
|
3490
3496
|
*/
|
|
3491
|
-
Project
|
|
3497
|
+
Project: ProjectEntry;
|
|
3492
3498
|
/**
|
|
3493
3499
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3494
3500
|
*/
|
|
@@ -3725,7 +3731,7 @@ export interface DescribeDeviceDataResponse {
|
|
|
3725
3731
|
/**
|
|
3726
3732
|
* 设备数据
|
|
3727
3733
|
*/
|
|
3728
|
-
Data
|
|
3734
|
+
Data: string;
|
|
3729
3735
|
/**
|
|
3730
3736
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3731
3737
|
*/
|
|
@@ -3973,22 +3979,22 @@ export interface ListEventHistoryResponse {
|
|
|
3973
3979
|
* 搜索上下文, 用作查询游标
|
|
3974
3980
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3975
3981
|
*/
|
|
3976
|
-
Context
|
|
3982
|
+
Context: string;
|
|
3977
3983
|
/**
|
|
3978
3984
|
* 搜索结果数量
|
|
3979
3985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3980
3986
|
*/
|
|
3981
|
-
Total
|
|
3987
|
+
Total: number;
|
|
3982
3988
|
/**
|
|
3983
3989
|
* 搜索结果是否已经结束
|
|
3984
3990
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3985
3991
|
*/
|
|
3986
|
-
Listover
|
|
3992
|
+
Listover: boolean;
|
|
3987
3993
|
/**
|
|
3988
3994
|
* 搜集结果集
|
|
3989
3995
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3990
3996
|
*/
|
|
3991
|
-
EventHistory
|
|
3997
|
+
EventHistory: Array<EventHistoryItem>;
|
|
3992
3998
|
/**
|
|
3993
3999
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3994
4000
|
*/
|
|
@@ -4002,11 +4008,11 @@ export interface GetBatchProductionsListResponse {
|
|
|
4002
4008
|
* 返回详情信息。
|
|
4003
4009
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4004
4010
|
*/
|
|
4005
|
-
BatchProductions
|
|
4011
|
+
BatchProductions: Array<BatchProductionInfo>;
|
|
4006
4012
|
/**
|
|
4007
4013
|
* 返回数量。
|
|
4008
4014
|
*/
|
|
4009
|
-
TotalCnt
|
|
4015
|
+
TotalCnt: number;
|
|
4010
4016
|
/**
|
|
4011
4017
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4012
4018
|
*/
|
|
@@ -4019,15 +4025,15 @@ export interface DescribeGatewayBindDevicesResponse {
|
|
|
4019
4025
|
/**
|
|
4020
4026
|
* 子设备信息。
|
|
4021
4027
|
*/
|
|
4022
|
-
Devices
|
|
4028
|
+
Devices: Array<BindDeviceInfo>;
|
|
4023
4029
|
/**
|
|
4024
4030
|
* 子设备总数。
|
|
4025
4031
|
*/
|
|
4026
|
-
Total
|
|
4032
|
+
Total: number;
|
|
4027
4033
|
/**
|
|
4028
4034
|
* 子设备所属的产品名。
|
|
4029
4035
|
*/
|
|
4030
|
-
ProductName
|
|
4036
|
+
ProductName: string;
|
|
4031
4037
|
/**
|
|
4032
4038
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4033
4039
|
*/
|