tencentcloud-sdk-nodejs-iotexplorer 4.0.267 → 4.0.271
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 +868 -0
- package/SERVICE_CHANGELOG.md +855 -169
- package/package.json +1 -1
- package/products.md +41 -40
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +542 -431
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +538 -64
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +179 -143
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +267 -213
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +464 -61
|
@@ -65,6 +65,27 @@ export interface DescribeModelDefinitionResponse {
|
|
|
65
65
|
*/
|
|
66
66
|
RequestId?: string;
|
|
67
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* UnbindDevices请求参数结构体
|
|
70
|
+
*/
|
|
71
|
+
export interface UnbindDevicesRequest {
|
|
72
|
+
/**
|
|
73
|
+
* 网关设备的产品ID
|
|
74
|
+
*/
|
|
75
|
+
GatewayProductId: string;
|
|
76
|
+
/**
|
|
77
|
+
* 网关设备的设备名
|
|
78
|
+
*/
|
|
79
|
+
GatewayDeviceName: string;
|
|
80
|
+
/**
|
|
81
|
+
* 产品ID
|
|
82
|
+
*/
|
|
83
|
+
ProductId: string;
|
|
84
|
+
/**
|
|
85
|
+
* 设备名列表
|
|
86
|
+
*/
|
|
87
|
+
DeviceNames: Array<string>;
|
|
88
|
+
}
|
|
68
89
|
/**
|
|
69
90
|
* DeleteDevices返回参数结构体
|
|
70
91
|
*/
|
|
@@ -97,6 +118,25 @@ export interface ModifyStudioProductResponse {
|
|
|
97
118
|
*/
|
|
98
119
|
RequestId?: string;
|
|
99
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* GetGatewaySubDeviceList返回参数结构体
|
|
123
|
+
*/
|
|
124
|
+
export interface GetGatewaySubDeviceListResponse {
|
|
125
|
+
/**
|
|
126
|
+
* 设备的总数
|
|
127
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
128
|
+
*/
|
|
129
|
+
Total: number;
|
|
130
|
+
/**
|
|
131
|
+
* 设备列表
|
|
132
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
133
|
+
*/
|
|
134
|
+
DeviceList: FamilySubDevice;
|
|
135
|
+
/**
|
|
136
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
137
|
+
*/
|
|
138
|
+
RequestId?: string;
|
|
139
|
+
}
|
|
100
140
|
/**
|
|
101
141
|
* DeleteStudioProduct返回参数结构体
|
|
102
142
|
*/
|
|
@@ -107,21 +147,42 @@ export interface DeleteStudioProductResponse {
|
|
|
107
147
|
RequestId?: string;
|
|
108
148
|
}
|
|
109
149
|
/**
|
|
110
|
-
*
|
|
150
|
+
* BindDevices请求参数结构体
|
|
111
151
|
*/
|
|
112
|
-
export interface
|
|
152
|
+
export interface BindDevicesRequest {
|
|
113
153
|
/**
|
|
114
|
-
*
|
|
154
|
+
* 网关设备的产品ID。
|
|
115
155
|
*/
|
|
116
|
-
|
|
156
|
+
GatewayProductId: string;
|
|
117
157
|
/**
|
|
118
|
-
*
|
|
158
|
+
* 网关设备的设备名。
|
|
119
159
|
*/
|
|
120
|
-
|
|
160
|
+
GatewayDeviceName: string;
|
|
121
161
|
/**
|
|
122
|
-
*
|
|
162
|
+
* 被绑定设备的产品ID。
|
|
123
163
|
*/
|
|
124
|
-
|
|
164
|
+
ProductId: string;
|
|
165
|
+
/**
|
|
166
|
+
* 被绑定的多个设备名。
|
|
167
|
+
*/
|
|
168
|
+
DeviceNames: Array<string>;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* DescribeGatewaySubProducts返回参数结构体
|
|
172
|
+
*/
|
|
173
|
+
export interface DescribeGatewaySubProductsResponse {
|
|
174
|
+
/**
|
|
175
|
+
* 当前分页的可绑定或解绑的产品信息。
|
|
176
|
+
*/
|
|
177
|
+
Products: Array<BindProductInfo>;
|
|
178
|
+
/**
|
|
179
|
+
* 可绑定或解绑的产品总数
|
|
180
|
+
*/
|
|
181
|
+
Total: number;
|
|
182
|
+
/**
|
|
183
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
184
|
+
*/
|
|
185
|
+
RequestId?: string;
|
|
125
186
|
}
|
|
126
187
|
/**
|
|
127
188
|
* GetDeviceList返回参数结构体
|
|
@@ -233,6 +294,49 @@ export interface DescribeTopicPolicyRequest {
|
|
|
233
294
|
*/
|
|
234
295
|
TopicName: string;
|
|
235
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* 绑定、未绑定产品详细信息
|
|
299
|
+
*/
|
|
300
|
+
export interface BindProductInfo {
|
|
301
|
+
/**
|
|
302
|
+
* 产品ID。
|
|
303
|
+
*/
|
|
304
|
+
ProductId: string;
|
|
305
|
+
/**
|
|
306
|
+
* 产品名称。
|
|
307
|
+
*/
|
|
308
|
+
ProductName: string;
|
|
309
|
+
/**
|
|
310
|
+
* 产品所属项目ID。
|
|
311
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
312
|
+
*/
|
|
313
|
+
ProjectId: string;
|
|
314
|
+
/**
|
|
315
|
+
* 物模型类型。
|
|
316
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
317
|
+
*/
|
|
318
|
+
DataProtocol: number;
|
|
319
|
+
/**
|
|
320
|
+
* 产品分组模板ID
|
|
321
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
322
|
+
*/
|
|
323
|
+
CategoryId: number;
|
|
324
|
+
/**
|
|
325
|
+
* 产品类型
|
|
326
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
327
|
+
*/
|
|
328
|
+
ProductType: number;
|
|
329
|
+
/**
|
|
330
|
+
* 连接类型
|
|
331
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
332
|
+
*/
|
|
333
|
+
NetType: string;
|
|
334
|
+
/**
|
|
335
|
+
* 状态
|
|
336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
337
|
+
*/
|
|
338
|
+
DevStatus: string;
|
|
339
|
+
}
|
|
236
340
|
/**
|
|
237
341
|
* ModifyPositionFence请求参数结构体
|
|
238
342
|
*/
|
|
@@ -822,17 +926,21 @@ export interface GetProjectListResponse {
|
|
|
822
926
|
RequestId?: string;
|
|
823
927
|
}
|
|
824
928
|
/**
|
|
825
|
-
*
|
|
929
|
+
* CreateProject请求参数结构体
|
|
826
930
|
*/
|
|
827
|
-
export interface
|
|
931
|
+
export interface CreateProjectRequest {
|
|
828
932
|
/**
|
|
829
|
-
*
|
|
933
|
+
* 项目名称
|
|
830
934
|
*/
|
|
831
|
-
|
|
935
|
+
ProjectName: string;
|
|
832
936
|
/**
|
|
833
|
-
*
|
|
937
|
+
* 项目描述
|
|
834
938
|
*/
|
|
835
|
-
|
|
939
|
+
ProjectDesc: string;
|
|
940
|
+
/**
|
|
941
|
+
* 实例ID,不带实例ID,默认为公共实例
|
|
942
|
+
*/
|
|
943
|
+
InstanceId?: string;
|
|
836
944
|
}
|
|
837
945
|
/**
|
|
838
946
|
* DescribeProject返回参数结构体
|
|
@@ -847,6 +955,19 @@ export interface DescribeProjectResponse {
|
|
|
847
955
|
*/
|
|
848
956
|
RequestId?: string;
|
|
849
957
|
}
|
|
958
|
+
/**
|
|
959
|
+
* UnbindProducts请求参数结构体
|
|
960
|
+
*/
|
|
961
|
+
export interface UnbindProductsRequest {
|
|
962
|
+
/**
|
|
963
|
+
* 网关产品ID
|
|
964
|
+
*/
|
|
965
|
+
GatewayProductId: string;
|
|
966
|
+
/**
|
|
967
|
+
* 待解绑的子产品ID数组
|
|
968
|
+
*/
|
|
969
|
+
ProductIds: Array<string>;
|
|
970
|
+
}
|
|
850
971
|
/**
|
|
851
972
|
* SearchStudioProduct返回参数结构体
|
|
852
973
|
*/
|
|
@@ -950,6 +1071,19 @@ export interface GetFamilyDeviceUserListResponse {
|
|
|
950
1071
|
*/
|
|
951
1072
|
RequestId?: string;
|
|
952
1073
|
}
|
|
1074
|
+
/**
|
|
1075
|
+
* BindDeviceInfo
|
|
1076
|
+
*/
|
|
1077
|
+
export interface BindDeviceInfo {
|
|
1078
|
+
/**
|
|
1079
|
+
* 产品ID。
|
|
1080
|
+
*/
|
|
1081
|
+
ProductId: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* 设备名称。
|
|
1084
|
+
*/
|
|
1085
|
+
DeviceName: string;
|
|
1086
|
+
}
|
|
953
1087
|
/**
|
|
954
1088
|
* 项目详情
|
|
955
1089
|
*/
|
|
@@ -1152,6 +1286,23 @@ export interface DescribeSpaceFenceEventListResponse {
|
|
|
1152
1286
|
*/
|
|
1153
1287
|
RequestId?: string;
|
|
1154
1288
|
}
|
|
1289
|
+
/**
|
|
1290
|
+
* 围栏详细信息(包含创建时间及更新时间)
|
|
1291
|
+
*/
|
|
1292
|
+
export interface PositionFenceInfo {
|
|
1293
|
+
/**
|
|
1294
|
+
* 围栏信息
|
|
1295
|
+
*/
|
|
1296
|
+
GeoFence: PositionFenceItem;
|
|
1297
|
+
/**
|
|
1298
|
+
* 围栏创建时间
|
|
1299
|
+
*/
|
|
1300
|
+
CreateTime: number;
|
|
1301
|
+
/**
|
|
1302
|
+
* 围栏更新时间
|
|
1303
|
+
*/
|
|
1304
|
+
UpdateTime: number;
|
|
1305
|
+
}
|
|
1155
1306
|
/**
|
|
1156
1307
|
* DeleteLoRaGateway请求参数结构体
|
|
1157
1308
|
*/
|
|
@@ -1161,6 +1312,19 @@ export interface DeleteLoRaGatewayRequest {
|
|
|
1161
1312
|
*/
|
|
1162
1313
|
GatewayId: string;
|
|
1163
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
* UnbindProducts返回参数结构体
|
|
1317
|
+
*/
|
|
1318
|
+
export interface UnbindProductsResponse {
|
|
1319
|
+
/**
|
|
1320
|
+
* 绑定了待解绑的LoRa产品下的设备的网关设备列表
|
|
1321
|
+
*/
|
|
1322
|
+
GatewayDeviceNames?: Array<string>;
|
|
1323
|
+
/**
|
|
1324
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1325
|
+
*/
|
|
1326
|
+
RequestId?: string;
|
|
1327
|
+
}
|
|
1164
1328
|
/**
|
|
1165
1329
|
* DescribeTopicPolicy返回参数结构体
|
|
1166
1330
|
*/
|
|
@@ -1257,6 +1421,23 @@ export interface ModifyTopicPolicyResponse {
|
|
|
1257
1421
|
*/
|
|
1258
1422
|
RequestId?: string;
|
|
1259
1423
|
}
|
|
1424
|
+
/**
|
|
1425
|
+
* GetPositionSpaceList请求参数结构体
|
|
1426
|
+
*/
|
|
1427
|
+
export interface GetPositionSpaceListRequest {
|
|
1428
|
+
/**
|
|
1429
|
+
* 项目Id
|
|
1430
|
+
*/
|
|
1431
|
+
ProjectId: string;
|
|
1432
|
+
/**
|
|
1433
|
+
* 翻页偏移量,0起始
|
|
1434
|
+
*/
|
|
1435
|
+
Offset: number;
|
|
1436
|
+
/**
|
|
1437
|
+
* 最大返回结果数
|
|
1438
|
+
*/
|
|
1439
|
+
Limit: number;
|
|
1440
|
+
}
|
|
1260
1441
|
/**
|
|
1261
1442
|
* SearchTopicRule返回参数结构体
|
|
1262
1443
|
*/
|
|
@@ -1699,21 +1880,17 @@ export interface GetCOSURLRequest {
|
|
|
1699
1880
|
FileSize?: number;
|
|
1700
1881
|
}
|
|
1701
1882
|
/**
|
|
1702
|
-
*
|
|
1883
|
+
* DescribeStudioProduct返回参数结构体
|
|
1703
1884
|
*/
|
|
1704
|
-
export interface
|
|
1705
|
-
/**
|
|
1706
|
-
* 项目名称
|
|
1707
|
-
*/
|
|
1708
|
-
ProjectName: string;
|
|
1885
|
+
export interface DescribeStudioProductResponse {
|
|
1709
1886
|
/**
|
|
1710
|
-
*
|
|
1887
|
+
* 产品详情
|
|
1711
1888
|
*/
|
|
1712
|
-
|
|
1889
|
+
Product?: ProductEntry;
|
|
1713
1890
|
/**
|
|
1714
|
-
*
|
|
1891
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1715
1892
|
*/
|
|
1716
|
-
|
|
1893
|
+
RequestId?: string;
|
|
1717
1894
|
}
|
|
1718
1895
|
/**
|
|
1719
1896
|
* CreateFenceBind请求参数结构体
|
|
@@ -1808,6 +1985,55 @@ export interface PublishMessageRequest {
|
|
|
1808
1985
|
*/
|
|
1809
1986
|
PayloadEncoding?: string;
|
|
1810
1987
|
}
|
|
1988
|
+
/**
|
|
1989
|
+
* 子设备详情
|
|
1990
|
+
*/
|
|
1991
|
+
export interface FamilySubDevice {
|
|
1992
|
+
/**
|
|
1993
|
+
* 产品Id
|
|
1994
|
+
*/
|
|
1995
|
+
ProductId: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* 设备名称
|
|
1998
|
+
*/
|
|
1999
|
+
DeviceName: string;
|
|
2000
|
+
/**
|
|
2001
|
+
* 设备ID
|
|
2002
|
+
*/
|
|
2003
|
+
DeviceId: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* 设备别名
|
|
2006
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2007
|
+
*/
|
|
2008
|
+
AliasName: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* 设备绑定的家庭ID
|
|
2011
|
+
*/
|
|
2012
|
+
FamilyId: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* 设备所在的房间ID,默认"0"
|
|
2015
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2016
|
+
*/
|
|
2017
|
+
RoomId: string;
|
|
2018
|
+
/**
|
|
2019
|
+
* 图标
|
|
2020
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2021
|
+
*/
|
|
2022
|
+
IconUrl: string;
|
|
2023
|
+
/**
|
|
2024
|
+
* grid图标
|
|
2025
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2026
|
+
*/
|
|
2027
|
+
IconUrlGrid: string;
|
|
2028
|
+
/**
|
|
2029
|
+
* 设备绑定时间戳
|
|
2030
|
+
*/
|
|
2031
|
+
CreateTime: number;
|
|
2032
|
+
/**
|
|
2033
|
+
* 设备更新时间戳
|
|
2034
|
+
*/
|
|
2035
|
+
UpdateTime: number;
|
|
2036
|
+
}
|
|
1811
2037
|
/**
|
|
1812
2038
|
* ModifyTopicRule请求参数结构体
|
|
1813
2039
|
*/
|
|
@@ -2034,6 +2260,19 @@ export interface ProjectEntry {
|
|
|
2034
2260
|
*/
|
|
2035
2261
|
UpdateTime: number;
|
|
2036
2262
|
}
|
|
2263
|
+
/**
|
|
2264
|
+
* ModifyLoRaGateway返回参数结构体
|
|
2265
|
+
*/
|
|
2266
|
+
export interface ModifyLoRaGatewayResponse {
|
|
2267
|
+
/**
|
|
2268
|
+
* 返回网关数据
|
|
2269
|
+
*/
|
|
2270
|
+
Gateway?: LoRaGatewayItem;
|
|
2271
|
+
/**
|
|
2272
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2273
|
+
*/
|
|
2274
|
+
RequestId?: string;
|
|
2275
|
+
}
|
|
2037
2276
|
/**
|
|
2038
2277
|
* 设备事件的搜索结果项
|
|
2039
2278
|
*/
|
|
@@ -2180,21 +2419,18 @@ export interface CreateFenceBindResponse {
|
|
|
2180
2419
|
RequestId?: string;
|
|
2181
2420
|
}
|
|
2182
2421
|
/**
|
|
2183
|
-
*
|
|
2422
|
+
* DescribeTopicRule返回参数结构体
|
|
2184
2423
|
*/
|
|
2185
|
-
export interface
|
|
2186
|
-
/**
|
|
2187
|
-
* 围栏Id
|
|
2188
|
-
*/
|
|
2189
|
-
FenceId: number;
|
|
2424
|
+
export interface DescribeTopicRuleResponse {
|
|
2190
2425
|
/**
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2426
|
+
* 规则描述。
|
|
2427
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2428
|
+
*/
|
|
2429
|
+
Rule?: TopicRule;
|
|
2194
2430
|
/**
|
|
2195
|
-
*
|
|
2431
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2196
2432
|
*/
|
|
2197
|
-
|
|
2433
|
+
RequestId?: string;
|
|
2198
2434
|
}
|
|
2199
2435
|
/**
|
|
2200
2436
|
* CreatePositionFence返回参数结构体
|
|
@@ -2219,35 +2455,38 @@ export interface TopicItem {
|
|
|
2219
2455
|
Privilege: number;
|
|
2220
2456
|
}
|
|
2221
2457
|
/**
|
|
2222
|
-
*
|
|
2458
|
+
* DescribeFenceBindList请求参数结构体
|
|
2223
2459
|
*/
|
|
2224
|
-
export interface
|
|
2460
|
+
export interface DescribeFenceBindListRequest {
|
|
2225
2461
|
/**
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
Rule?: TopicRule;
|
|
2462
|
+
* 围栏Id
|
|
2463
|
+
*/
|
|
2464
|
+
FenceId: number;
|
|
2230
2465
|
/**
|
|
2231
|
-
*
|
|
2466
|
+
* 翻页偏移量,0起始
|
|
2232
2467
|
*/
|
|
2233
|
-
|
|
2468
|
+
Offset?: number;
|
|
2469
|
+
/**
|
|
2470
|
+
* 最大返回结果数
|
|
2471
|
+
*/
|
|
2472
|
+
Limit?: number;
|
|
2234
2473
|
}
|
|
2235
2474
|
/**
|
|
2236
|
-
*
|
|
2475
|
+
* DescribeBindedProducts返回参数结构体
|
|
2237
2476
|
*/
|
|
2238
|
-
export interface
|
|
2477
|
+
export interface DescribeBindedProductsResponse {
|
|
2239
2478
|
/**
|
|
2240
|
-
*
|
|
2479
|
+
* 当前分页的子产品数组
|
|
2241
2480
|
*/
|
|
2242
|
-
|
|
2481
|
+
Products?: Array<BindProductInfo>;
|
|
2243
2482
|
/**
|
|
2244
|
-
*
|
|
2483
|
+
* 绑定的子产品总数量
|
|
2245
2484
|
*/
|
|
2246
|
-
|
|
2485
|
+
Total?: number;
|
|
2247
2486
|
/**
|
|
2248
|
-
*
|
|
2487
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2249
2488
|
*/
|
|
2250
|
-
|
|
2489
|
+
RequestId?: string;
|
|
2251
2490
|
}
|
|
2252
2491
|
/**
|
|
2253
2492
|
* 设备签名
|
|
@@ -2444,6 +2683,23 @@ export interface GetFamilyDeviceUserListRequest {
|
|
|
2444
2683
|
*/
|
|
2445
2684
|
DeviceName: string;
|
|
2446
2685
|
}
|
|
2686
|
+
/**
|
|
2687
|
+
* DescribeBindedProducts请求参数结构体
|
|
2688
|
+
*/
|
|
2689
|
+
export interface DescribeBindedProductsRequest {
|
|
2690
|
+
/**
|
|
2691
|
+
* 网关产品ID
|
|
2692
|
+
*/
|
|
2693
|
+
GatewayProductId: string;
|
|
2694
|
+
/**
|
|
2695
|
+
* 分页偏移量
|
|
2696
|
+
*/
|
|
2697
|
+
Offset: number;
|
|
2698
|
+
/**
|
|
2699
|
+
* 分页大小
|
|
2700
|
+
*/
|
|
2701
|
+
Limit: number;
|
|
2702
|
+
}
|
|
2447
2703
|
/**
|
|
2448
2704
|
* DescribeLoRaFrequency返回参数结构体
|
|
2449
2705
|
*/
|
|
@@ -2610,6 +2866,15 @@ export interface DescribeProjectRequest {
|
|
|
2610
2866
|
*/
|
|
2611
2867
|
ProjectId: string;
|
|
2612
2868
|
}
|
|
2869
|
+
/**
|
|
2870
|
+
* UnbindDevices返回参数结构体
|
|
2871
|
+
*/
|
|
2872
|
+
export interface UnbindDevicesResponse {
|
|
2873
|
+
/**
|
|
2874
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2875
|
+
*/
|
|
2876
|
+
RequestId?: string;
|
|
2877
|
+
}
|
|
2613
2878
|
/**
|
|
2614
2879
|
* ModifyLoRaFrequency请求参数结构体
|
|
2615
2880
|
*/
|
|
@@ -2807,6 +3072,25 @@ export interface LoRaGatewayItem {
|
|
|
2807
3072
|
*/
|
|
2808
3073
|
FrequencyId?: string;
|
|
2809
3074
|
}
|
|
3075
|
+
/**
|
|
3076
|
+
* DescribeDeviceBindGateway返回参数结构体
|
|
3077
|
+
*/
|
|
3078
|
+
export interface DescribeDeviceBindGatewayResponse {
|
|
3079
|
+
/**
|
|
3080
|
+
* 网关产品ID
|
|
3081
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3082
|
+
*/
|
|
3083
|
+
GatewayProductId: string;
|
|
3084
|
+
/**
|
|
3085
|
+
* 网关设备名
|
|
3086
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3087
|
+
*/
|
|
3088
|
+
GatewayDeviceName: string;
|
|
3089
|
+
/**
|
|
3090
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3091
|
+
*/
|
|
3092
|
+
RequestId?: string;
|
|
3093
|
+
}
|
|
2810
3094
|
/**
|
|
2811
3095
|
* ControlDeviceData返回参数结构体
|
|
2812
3096
|
*/
|
|
@@ -2992,6 +3276,19 @@ export interface DeletePositionSpaceResponse {
|
|
|
2992
3276
|
*/
|
|
2993
3277
|
RequestId?: string;
|
|
2994
3278
|
}
|
|
3279
|
+
/**
|
|
3280
|
+
* DescribeDeviceBindGateway请求参数结构体
|
|
3281
|
+
*/
|
|
3282
|
+
export interface DescribeDeviceBindGatewayRequest {
|
|
3283
|
+
/**
|
|
3284
|
+
* 产品Id
|
|
3285
|
+
*/
|
|
3286
|
+
ProductId: string;
|
|
3287
|
+
/**
|
|
3288
|
+
* 设备名
|
|
3289
|
+
*/
|
|
3290
|
+
DeviceName: string;
|
|
3291
|
+
}
|
|
2995
3292
|
/**
|
|
2996
3293
|
* CreateLoRaFrequency返回参数结构体
|
|
2997
3294
|
*/
|
|
@@ -3014,6 +3311,27 @@ export interface EnableTopicRuleResponse {
|
|
|
3014
3311
|
*/
|
|
3015
3312
|
RequestId?: string;
|
|
3016
3313
|
}
|
|
3314
|
+
/**
|
|
3315
|
+
* GetGatewaySubDeviceList请求参数结构体
|
|
3316
|
+
*/
|
|
3317
|
+
export interface GetGatewaySubDeviceListRequest {
|
|
3318
|
+
/**
|
|
3319
|
+
* 网关产品ID
|
|
3320
|
+
*/
|
|
3321
|
+
GatewayProductId: string;
|
|
3322
|
+
/**
|
|
3323
|
+
* 网关设备名称
|
|
3324
|
+
*/
|
|
3325
|
+
GatewayDeviceName: string;
|
|
3326
|
+
/**
|
|
3327
|
+
* 分页偏移
|
|
3328
|
+
*/
|
|
3329
|
+
Offset: number;
|
|
3330
|
+
/**
|
|
3331
|
+
* 分页的大小
|
|
3332
|
+
*/
|
|
3333
|
+
Limit: number;
|
|
3334
|
+
}
|
|
3017
3335
|
/**
|
|
3018
3336
|
* SearchStudioProduct请求参数结构体
|
|
3019
3337
|
*/
|
|
@@ -3114,6 +3432,15 @@ export interface AppDeviceInfo {
|
|
|
3114
3432
|
*/
|
|
3115
3433
|
UpdateTime: number;
|
|
3116
3434
|
}
|
|
3435
|
+
/**
|
|
3436
|
+
* BindProducts返回参数结构体
|
|
3437
|
+
*/
|
|
3438
|
+
export interface BindProductsResponse {
|
|
3439
|
+
/**
|
|
3440
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3441
|
+
*/
|
|
3442
|
+
RequestId?: string;
|
|
3443
|
+
}
|
|
3117
3444
|
/**
|
|
3118
3445
|
* ModifyProject返回参数结构体
|
|
3119
3446
|
*/
|
|
@@ -3152,6 +3479,52 @@ export interface BatchProductionInfo {
|
|
|
3152
3479
|
*/
|
|
3153
3480
|
ProductName: string;
|
|
3154
3481
|
}
|
|
3482
|
+
/**
|
|
3483
|
+
* DescribeGatewayBindDevices请求参数结构体
|
|
3484
|
+
*/
|
|
3485
|
+
export interface DescribeGatewayBindDevicesRequest {
|
|
3486
|
+
/**
|
|
3487
|
+
* 网关设备的产品ID
|
|
3488
|
+
*/
|
|
3489
|
+
GatewayProductId: string;
|
|
3490
|
+
/**
|
|
3491
|
+
* 网关设备的设备名
|
|
3492
|
+
*/
|
|
3493
|
+
GatewayDeviceName: string;
|
|
3494
|
+
/**
|
|
3495
|
+
* 子产品的ID
|
|
3496
|
+
*/
|
|
3497
|
+
ProductId: string;
|
|
3498
|
+
/**
|
|
3499
|
+
* 分页的偏移
|
|
3500
|
+
*/
|
|
3501
|
+
Offset: number;
|
|
3502
|
+
/**
|
|
3503
|
+
* 分页的页大小
|
|
3504
|
+
*/
|
|
3505
|
+
Limit: number;
|
|
3506
|
+
}
|
|
3507
|
+
/**
|
|
3508
|
+
* DescribeGatewaySubProducts请求参数结构体
|
|
3509
|
+
*/
|
|
3510
|
+
export interface DescribeGatewaySubProductsRequest {
|
|
3511
|
+
/**
|
|
3512
|
+
* 网关产品ID
|
|
3513
|
+
*/
|
|
3514
|
+
GatewayProductId: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* 分页的偏移量
|
|
3517
|
+
*/
|
|
3518
|
+
Offset?: number;
|
|
3519
|
+
/**
|
|
3520
|
+
* 分页的大小
|
|
3521
|
+
*/
|
|
3522
|
+
Limit?: number;
|
|
3523
|
+
/**
|
|
3524
|
+
* 项目Id
|
|
3525
|
+
*/
|
|
3526
|
+
ProjectId?: string;
|
|
3527
|
+
}
|
|
3155
3528
|
/**
|
|
3156
3529
|
* DeleteStudioProduct请求参数结构体
|
|
3157
3530
|
*/
|
|
@@ -3161,6 +3534,19 @@ export interface DeleteStudioProductRequest {
|
|
|
3161
3534
|
*/
|
|
3162
3535
|
ProductId: string;
|
|
3163
3536
|
}
|
|
3537
|
+
/**
|
|
3538
|
+
* BindProducts请求参数结构体
|
|
3539
|
+
*/
|
|
3540
|
+
export interface BindProductsRequest {
|
|
3541
|
+
/**
|
|
3542
|
+
* 网关产品ID。
|
|
3543
|
+
*/
|
|
3544
|
+
GatewayProductId: string;
|
|
3545
|
+
/**
|
|
3546
|
+
* 待绑定的子产品ID数组。
|
|
3547
|
+
*/
|
|
3548
|
+
ProductIds: Array<string>;
|
|
3549
|
+
}
|
|
3164
3550
|
/**
|
|
3165
3551
|
* ModifyProject请求参数结构体
|
|
3166
3552
|
*/
|
|
@@ -3197,13 +3583,9 @@ export interface PublishMessageResponse {
|
|
|
3197
3583
|
RequestId?: string;
|
|
3198
3584
|
}
|
|
3199
3585
|
/**
|
|
3200
|
-
*
|
|
3586
|
+
* BindDevices返回参数结构体
|
|
3201
3587
|
*/
|
|
3202
|
-
export interface
|
|
3203
|
-
/**
|
|
3204
|
-
* 返回网关数据
|
|
3205
|
-
*/
|
|
3206
|
-
Gateway?: LoRaGatewayItem;
|
|
3588
|
+
export interface BindDevicesResponse {
|
|
3207
3589
|
/**
|
|
3208
3590
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3209
3591
|
*/
|
|
@@ -3269,6 +3651,15 @@ export interface DescribeModelDefinitionRequest {
|
|
|
3269
3651
|
*/
|
|
3270
3652
|
ProductId: string;
|
|
3271
3653
|
}
|
|
3654
|
+
/**
|
|
3655
|
+
* EnableTopicRule请求参数结构体
|
|
3656
|
+
*/
|
|
3657
|
+
export interface EnableTopicRuleRequest {
|
|
3658
|
+
/**
|
|
3659
|
+
* 规则名称
|
|
3660
|
+
*/
|
|
3661
|
+
RuleName: string;
|
|
3662
|
+
}
|
|
3272
3663
|
/**
|
|
3273
3664
|
* DisableTopicRule请求参数结构体
|
|
3274
3665
|
*/
|
|
@@ -3582,13 +3973,25 @@ export interface GetBatchProductionsListResponse {
|
|
|
3582
3973
|
RequestId?: string;
|
|
3583
3974
|
}
|
|
3584
3975
|
/**
|
|
3585
|
-
*
|
|
3976
|
+
* DescribeGatewayBindDevices返回参数结构体
|
|
3586
3977
|
*/
|
|
3587
|
-
export interface
|
|
3978
|
+
export interface DescribeGatewayBindDevicesResponse {
|
|
3588
3979
|
/**
|
|
3589
|
-
*
|
|
3980
|
+
* 子设备信息。
|
|
3590
3981
|
*/
|
|
3591
|
-
|
|
3982
|
+
Devices?: Array<BindDeviceInfo>;
|
|
3983
|
+
/**
|
|
3984
|
+
* 子设备总数。
|
|
3985
|
+
*/
|
|
3986
|
+
Total?: number;
|
|
3987
|
+
/**
|
|
3988
|
+
* 子设备所属的产品名。
|
|
3989
|
+
*/
|
|
3990
|
+
ProductName?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3993
|
+
*/
|
|
3994
|
+
RequestId?: string;
|
|
3592
3995
|
}
|
|
3593
3996
|
/**
|
|
3594
3997
|
* DescribeFirmwareTask请求参数结构体
|