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.
@@ -92,6 +92,31 @@ export interface DescribeModelDefinitionResponse {
92
92
  RequestId?: string
93
93
  }
94
94
 
95
+ /**
96
+ * UnbindDevices请求参数结构体
97
+ */
98
+ export interface UnbindDevicesRequest {
99
+ /**
100
+ * 网关设备的产品ID
101
+ */
102
+ GatewayProductId: string
103
+
104
+ /**
105
+ * 网关设备的设备名
106
+ */
107
+ GatewayDeviceName: string
108
+
109
+ /**
110
+ * 产品ID
111
+ */
112
+ ProductId: string
113
+
114
+ /**
115
+ * 设备名列表
116
+ */
117
+ DeviceNames: Array<string>
118
+ }
119
+
95
120
  /**
96
121
  * DeleteDevices返回参数结构体
97
122
  */
@@ -129,6 +154,28 @@ export interface ModifyStudioProductResponse {
129
154
  RequestId?: string
130
155
  }
131
156
 
157
+ /**
158
+ * GetGatewaySubDeviceList返回参数结构体
159
+ */
160
+ export interface GetGatewaySubDeviceListResponse {
161
+ /**
162
+ * 设备的总数
163
+ 注意:此字段可能返回 null,表示取不到有效值。
164
+ */
165
+ Total: number
166
+
167
+ /**
168
+ * 设备列表
169
+ 注意:此字段可能返回 null,表示取不到有效值。
170
+ */
171
+ DeviceList: FamilySubDevice
172
+
173
+ /**
174
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
175
+ */
176
+ RequestId?: string
177
+ }
178
+
132
179
  /**
133
180
  * DeleteStudioProduct返回参数结构体
134
181
  */
@@ -140,23 +187,48 @@ export interface DeleteStudioProductResponse {
140
187
  }
141
188
 
142
189
  /**
143
- * GetPositionSpaceList请求参数结构体
190
+ * BindDevices请求参数结构体
144
191
  */
145
- export interface GetPositionSpaceListRequest {
192
+ export interface BindDevicesRequest {
146
193
  /**
147
- * 项目Id
194
+ * 网关设备的产品ID。
148
195
  */
149
- ProjectId: string
196
+ GatewayProductId: string
150
197
 
151
198
  /**
152
- * 翻页偏移量,0起始
199
+ * 网关设备的设备名。
153
200
  */
154
- Offset: number
201
+ GatewayDeviceName: string
155
202
 
156
203
  /**
157
- * 最大返回结果数
204
+ * 被绑定设备的产品ID。
158
205
  */
159
- Limit: number
206
+ ProductId: string
207
+
208
+ /**
209
+ * 被绑定的多个设备名。
210
+ */
211
+ DeviceNames: Array<string>
212
+ }
213
+
214
+ /**
215
+ * DescribeGatewaySubProducts返回参数结构体
216
+ */
217
+ export interface DescribeGatewaySubProductsResponse {
218
+ /**
219
+ * 当前分页的可绑定或解绑的产品信息。
220
+ */
221
+ Products: Array<BindProductInfo>
222
+
223
+ /**
224
+ * 可绑定或解绑的产品总数
225
+ */
226
+ Total: number
227
+
228
+ /**
229
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
230
+ */
231
+ RequestId?: string
160
232
  }
161
233
 
162
234
  /**
@@ -279,6 +351,57 @@ export interface DescribeTopicPolicyRequest {
279
351
  TopicName: string
280
352
  }
281
353
 
354
+ /**
355
+ * 绑定、未绑定产品详细信息
356
+ */
357
+ export interface BindProductInfo {
358
+ /**
359
+ * 产品ID。
360
+ */
361
+ ProductId: string
362
+
363
+ /**
364
+ * 产品名称。
365
+ */
366
+ ProductName: string
367
+
368
+ /**
369
+ * 产品所属项目ID。
370
+ 注意:此字段可能返回 null,表示取不到有效值。
371
+ */
372
+ ProjectId: string
373
+
374
+ /**
375
+ * 物模型类型。
376
+ 注意:此字段可能返回 null,表示取不到有效值。
377
+ */
378
+ DataProtocol: number
379
+
380
+ /**
381
+ * 产品分组模板ID
382
+ 注意:此字段可能返回 null,表示取不到有效值。
383
+ */
384
+ CategoryId: number
385
+
386
+ /**
387
+ * 产品类型
388
+ 注意:此字段可能返回 null,表示取不到有效值。
389
+ */
390
+ ProductType: number
391
+
392
+ /**
393
+ * 连接类型
394
+ 注意:此字段可能返回 null,表示取不到有效值。
395
+ */
396
+ NetType: string
397
+
398
+ /**
399
+ * 状态
400
+ 注意:此字段可能返回 null,表示取不到有效值。
401
+ */
402
+ DevStatus: string
403
+ }
404
+
282
405
  /**
283
406
  * ModifyPositionFence请求参数结构体
284
407
  */
@@ -973,18 +1096,23 @@ export interface GetProjectListResponse {
973
1096
  }
974
1097
 
975
1098
  /**
976
- * DescribeStudioProduct返回参数结构体
1099
+ * CreateProject请求参数结构体
977
1100
  */
978
- export interface DescribeStudioProductResponse {
1101
+ export interface CreateProjectRequest {
979
1102
  /**
980
- * 产品详情
1103
+ * 项目名称
981
1104
  */
982
- Product?: ProductEntry
1105
+ ProjectName: string
983
1106
 
984
1107
  /**
985
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1108
+ * 项目描述
986
1109
  */
987
- RequestId?: string
1110
+ ProjectDesc: string
1111
+
1112
+ /**
1113
+ * 实例ID,不带实例ID,默认为公共实例
1114
+ */
1115
+ InstanceId?: string
988
1116
  }
989
1117
 
990
1118
  /**
@@ -1002,6 +1130,21 @@ export interface DescribeProjectResponse {
1002
1130
  RequestId?: string
1003
1131
  }
1004
1132
 
1133
+ /**
1134
+ * UnbindProducts请求参数结构体
1135
+ */
1136
+ export interface UnbindProductsRequest {
1137
+ /**
1138
+ * 网关产品ID
1139
+ */
1140
+ GatewayProductId: string
1141
+
1142
+ /**
1143
+ * 待解绑的子产品ID数组
1144
+ */
1145
+ ProductIds: Array<string>
1146
+ }
1147
+
1005
1148
  /**
1006
1149
  * SearchStudioProduct返回参数结构体
1007
1150
  */
@@ -1122,6 +1265,21 @@ export interface GetFamilyDeviceUserListResponse {
1122
1265
  RequestId?: string
1123
1266
  }
1124
1267
 
1268
+ /**
1269
+ * BindDeviceInfo
1270
+ */
1271
+ export interface BindDeviceInfo {
1272
+ /**
1273
+ * 产品ID。
1274
+ */
1275
+ ProductId: string
1276
+
1277
+ /**
1278
+ * 设备名称。
1279
+ */
1280
+ DeviceName: string
1281
+ }
1282
+
1125
1283
  /**
1126
1284
  * 项目详情
1127
1285
  */
@@ -1361,6 +1519,26 @@ export interface DescribeSpaceFenceEventListResponse {
1361
1519
  RequestId?: string
1362
1520
  }
1363
1521
 
1522
+ /**
1523
+ * 围栏详细信息(包含创建时间及更新时间)
1524
+ */
1525
+ export interface PositionFenceInfo {
1526
+ /**
1527
+ * 围栏信息
1528
+ */
1529
+ GeoFence: PositionFenceItem
1530
+
1531
+ /**
1532
+ * 围栏创建时间
1533
+ */
1534
+ CreateTime: number
1535
+
1536
+ /**
1537
+ * 围栏更新时间
1538
+ */
1539
+ UpdateTime: number
1540
+ }
1541
+
1364
1542
  /**
1365
1543
  * DeleteLoRaGateway请求参数结构体
1366
1544
  */
@@ -1371,6 +1549,21 @@ export interface DeleteLoRaGatewayRequest {
1371
1549
  GatewayId: string
1372
1550
  }
1373
1551
 
1552
+ /**
1553
+ * UnbindProducts返回参数结构体
1554
+ */
1555
+ export interface UnbindProductsResponse {
1556
+ /**
1557
+ * 绑定了待解绑的LoRa产品下的设备的网关设备列表
1558
+ */
1559
+ GatewayDeviceNames?: Array<string>
1560
+
1561
+ /**
1562
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1563
+ */
1564
+ RequestId?: string
1565
+ }
1566
+
1374
1567
  /**
1375
1568
  * DescribeTopicPolicy返回参数结构体
1376
1569
  */
@@ -1486,6 +1679,26 @@ export interface ModifyTopicPolicyResponse {
1486
1679
  RequestId?: string
1487
1680
  }
1488
1681
 
1682
+ /**
1683
+ * GetPositionSpaceList请求参数结构体
1684
+ */
1685
+ export interface GetPositionSpaceListRequest {
1686
+ /**
1687
+ * 项目Id
1688
+ */
1689
+ ProjectId: string
1690
+
1691
+ /**
1692
+ * 翻页偏移量,0起始
1693
+ */
1694
+ Offset: number
1695
+
1696
+ /**
1697
+ * 最大返回结果数
1698
+ */
1699
+ Limit: number
1700
+ }
1701
+
1489
1702
  /**
1490
1703
  * SearchTopicRule返回参数结构体
1491
1704
  */
@@ -2007,23 +2220,18 @@ export interface GetCOSURLRequest {
2007
2220
  }
2008
2221
 
2009
2222
  /**
2010
- * CreateProject请求参数结构体
2223
+ * DescribeStudioProduct返回参数结构体
2011
2224
  */
2012
- export interface CreateProjectRequest {
2013
- /**
2014
- * 项目名称
2015
- */
2016
- ProjectName: string
2017
-
2225
+ export interface DescribeStudioProductResponse {
2018
2226
  /**
2019
- * 项目描述
2227
+ * 产品详情
2020
2228
  */
2021
- ProjectDesc: string
2229
+ Product?: ProductEntry
2022
2230
 
2023
2231
  /**
2024
- * 实例ID,不带实例ID,默认为公共实例
2232
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2025
2233
  */
2026
- InstanceId?: string
2234
+ RequestId?: string
2027
2235
  }
2028
2236
 
2029
2237
  /**
@@ -2136,6 +2344,65 @@ export interface PublishMessageRequest {
2136
2344
  PayloadEncoding?: string
2137
2345
  }
2138
2346
 
2347
+ /**
2348
+ * 子设备详情
2349
+ */
2350
+ export interface FamilySubDevice {
2351
+ /**
2352
+ * 产品Id
2353
+ */
2354
+ ProductId: string
2355
+
2356
+ /**
2357
+ * 设备名称
2358
+ */
2359
+ DeviceName: string
2360
+
2361
+ /**
2362
+ * 设备ID
2363
+ */
2364
+ DeviceId: string
2365
+
2366
+ /**
2367
+ * 设备别名
2368
+ 注意:此字段可能返回 null,表示取不到有效值。
2369
+ */
2370
+ AliasName: string
2371
+
2372
+ /**
2373
+ * 设备绑定的家庭ID
2374
+ */
2375
+ FamilyId: string
2376
+
2377
+ /**
2378
+ * 设备所在的房间ID,默认"0"
2379
+ 注意:此字段可能返回 null,表示取不到有效值。
2380
+ */
2381
+ RoomId: string
2382
+
2383
+ /**
2384
+ * 图标
2385
+ 注意:此字段可能返回 null,表示取不到有效值。
2386
+ */
2387
+ IconUrl: string
2388
+
2389
+ /**
2390
+ * grid图标
2391
+ 注意:此字段可能返回 null,表示取不到有效值。
2392
+ */
2393
+ IconUrlGrid: string
2394
+
2395
+ /**
2396
+ * 设备绑定时间戳
2397
+ */
2398
+ CreateTime: number
2399
+
2400
+ /**
2401
+ * 设备更新时间戳
2402
+ */
2403
+ UpdateTime: number
2404
+ }
2405
+
2139
2406
  /**
2140
2407
  * ModifyTopicRule请求参数结构体
2141
2408
  */
@@ -2404,6 +2671,21 @@ export interface ProjectEntry {
2404
2671
  UpdateTime: number
2405
2672
  }
2406
2673
 
2674
+ /**
2675
+ * ModifyLoRaGateway返回参数结构体
2676
+ */
2677
+ export interface ModifyLoRaGatewayResponse {
2678
+ /**
2679
+ * 返回网关数据
2680
+ */
2681
+ Gateway?: LoRaGatewayItem
2682
+
2683
+ /**
2684
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2685
+ */
2686
+ RequestId?: string
2687
+ }
2688
+
2407
2689
  /**
2408
2690
  * 设备事件的搜索结果项
2409
2691
  */
@@ -2574,23 +2856,19 @@ export interface CreateFenceBindResponse {
2574
2856
  }
2575
2857
 
2576
2858
  /**
2577
- * DescribeFenceBindList请求参数结构体
2859
+ * DescribeTopicRule返回参数结构体
2578
2860
  */
2579
- export interface DescribeFenceBindListRequest {
2580
- /**
2581
- * 围栏Id
2582
- */
2583
- FenceId: number
2584
-
2861
+ export interface DescribeTopicRuleResponse {
2585
2862
  /**
2586
- * 翻页偏移量,0起始
2587
- */
2588
- Offset?: number
2863
+ * 规则描述。
2864
+ 注意:此字段可能返回 null,表示取不到有效值。
2865
+ */
2866
+ Rule?: TopicRule
2589
2867
 
2590
2868
  /**
2591
- * 最大返回结果数
2869
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2592
2870
  */
2593
- Limit?: number
2871
+ RequestId?: string
2594
2872
  }
2595
2873
 
2596
2874
  /**
@@ -2619,39 +2897,43 @@ export interface TopicItem {
2619
2897
  }
2620
2898
 
2621
2899
  /**
2622
- * DescribeTopicRule返回参数结构体
2900
+ * DescribeFenceBindList请求参数结构体
2623
2901
  */
2624
- export interface DescribeTopicRuleResponse {
2902
+ export interface DescribeFenceBindListRequest {
2625
2903
  /**
2626
- * 规则描述。
2627
- 注意:此字段可能返回 null,表示取不到有效值。
2628
- */
2629
- Rule?: TopicRule
2904
+ * 围栏Id
2905
+ */
2906
+ FenceId: number
2630
2907
 
2631
2908
  /**
2632
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2909
+ * 翻页偏移量,0起始
2633
2910
  */
2634
- RequestId?: string
2911
+ Offset?: number
2912
+
2913
+ /**
2914
+ * 最大返回结果数
2915
+ */
2916
+ Limit?: number
2635
2917
  }
2636
2918
 
2637
2919
  /**
2638
- * 围栏详细信息(包含创建时间及更新时间)
2920
+ * DescribeBindedProducts返回参数结构体
2639
2921
  */
2640
- export interface PositionFenceInfo {
2922
+ export interface DescribeBindedProductsResponse {
2641
2923
  /**
2642
- * 围栏信息
2924
+ * 当前分页的子产品数组
2643
2925
  */
2644
- GeoFence: PositionFenceItem
2926
+ Products?: Array<BindProductInfo>
2645
2927
 
2646
2928
  /**
2647
- * 围栏创建时间
2929
+ * 绑定的子产品总数量
2648
2930
  */
2649
- CreateTime: number
2931
+ Total?: number
2650
2932
 
2651
2933
  /**
2652
- * 围栏更新时间
2934
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2653
2935
  */
2654
- UpdateTime: number
2936
+ RequestId?: string
2655
2937
  }
2656
2938
 
2657
2939
  /**
@@ -2885,6 +3167,26 @@ export interface GetFamilyDeviceUserListRequest {
2885
3167
  DeviceName: string
2886
3168
  }
2887
3169
 
3170
+ /**
3171
+ * DescribeBindedProducts请求参数结构体
3172
+ */
3173
+ export interface DescribeBindedProductsRequest {
3174
+ /**
3175
+ * 网关产品ID
3176
+ */
3177
+ GatewayProductId: string
3178
+
3179
+ /**
3180
+ * 分页偏移量
3181
+ */
3182
+ Offset: number
3183
+
3184
+ /**
3185
+ * 分页大小
3186
+ */
3187
+ Limit: number
3188
+ }
3189
+
2888
3190
  /**
2889
3191
  * DescribeLoRaFrequency返回参数结构体
2890
3192
  */
@@ -3084,6 +3386,16 @@ export interface DescribeProjectRequest {
3084
3386
  ProjectId: string
3085
3387
  }
3086
3388
 
3389
+ /**
3390
+ * UnbindDevices返回参数结构体
3391
+ */
3392
+ export interface UnbindDevicesResponse {
3393
+ /**
3394
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3395
+ */
3396
+ RequestId?: string
3397
+ }
3398
+
3087
3399
  /**
3088
3400
  * ModifyLoRaFrequency请求参数结构体
3089
3401
  */
@@ -3319,6 +3631,28 @@ export interface LoRaGatewayItem {
3319
3631
  FrequencyId?: string
3320
3632
  }
3321
3633
 
3634
+ /**
3635
+ * DescribeDeviceBindGateway返回参数结构体
3636
+ */
3637
+ export interface DescribeDeviceBindGatewayResponse {
3638
+ /**
3639
+ * 网关产品ID
3640
+ 注意:此字段可能返回 null,表示取不到有效值。
3641
+ */
3642
+ GatewayProductId: string
3643
+
3644
+ /**
3645
+ * 网关设备名
3646
+ 注意:此字段可能返回 null,表示取不到有效值。
3647
+ */
3648
+ GatewayDeviceName: string
3649
+
3650
+ /**
3651
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3652
+ */
3653
+ RequestId?: string
3654
+ }
3655
+
3322
3656
  /**
3323
3657
  * ControlDeviceData返回参数结构体
3324
3658
  */
@@ -3537,6 +3871,21 @@ export interface DeletePositionSpaceResponse {
3537
3871
  RequestId?: string
3538
3872
  }
3539
3873
 
3874
+ /**
3875
+ * DescribeDeviceBindGateway请求参数结构体
3876
+ */
3877
+ export interface DescribeDeviceBindGatewayRequest {
3878
+ /**
3879
+ * 产品Id
3880
+ */
3881
+ ProductId: string
3882
+
3883
+ /**
3884
+ * 设备名
3885
+ */
3886
+ DeviceName: string
3887
+ }
3888
+
3540
3889
  /**
3541
3890
  * CreateLoRaFrequency返回参数结构体
3542
3891
  */
@@ -3562,6 +3911,31 @@ export interface EnableTopicRuleResponse {
3562
3911
  RequestId?: string
3563
3912
  }
3564
3913
 
3914
+ /**
3915
+ * GetGatewaySubDeviceList请求参数结构体
3916
+ */
3917
+ export interface GetGatewaySubDeviceListRequest {
3918
+ /**
3919
+ * 网关产品ID
3920
+ */
3921
+ GatewayProductId: string
3922
+
3923
+ /**
3924
+ * 网关设备名称
3925
+ */
3926
+ GatewayDeviceName: string
3927
+
3928
+ /**
3929
+ * 分页偏移
3930
+ */
3931
+ Offset: number
3932
+
3933
+ /**
3934
+ * 分页的大小
3935
+ */
3936
+ Limit: number
3937
+ }
3938
+
3565
3939
  /**
3566
3940
  * SearchStudioProduct请求参数结构体
3567
3941
  */
@@ -3682,6 +4056,16 @@ export interface AppDeviceInfo {
3682
4056
  UpdateTime: number
3683
4057
  }
3684
4058
 
4059
+ /**
4060
+ * BindProducts返回参数结构体
4061
+ */
4062
+ export interface BindProductsResponse {
4063
+ /**
4064
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4065
+ */
4066
+ RequestId?: string
4067
+ }
4068
+
3685
4069
  /**
3686
4070
  * ModifyProject返回参数结构体
3687
4071
  */
@@ -3727,6 +4111,61 @@ export interface BatchProductionInfo {
3727
4111
  ProductName: string
3728
4112
  }
3729
4113
 
4114
+ /**
4115
+ * DescribeGatewayBindDevices请求参数结构体
4116
+ */
4117
+ export interface DescribeGatewayBindDevicesRequest {
4118
+ /**
4119
+ * 网关设备的产品ID
4120
+ */
4121
+ GatewayProductId: string
4122
+
4123
+ /**
4124
+ * 网关设备的设备名
4125
+ */
4126
+ GatewayDeviceName: string
4127
+
4128
+ /**
4129
+ * 子产品的ID
4130
+ */
4131
+ ProductId: string
4132
+
4133
+ /**
4134
+ * 分页的偏移
4135
+ */
4136
+ Offset: number
4137
+
4138
+ /**
4139
+ * 分页的页大小
4140
+ */
4141
+ Limit: number
4142
+ }
4143
+
4144
+ /**
4145
+ * DescribeGatewaySubProducts请求参数结构体
4146
+ */
4147
+ export interface DescribeGatewaySubProductsRequest {
4148
+ /**
4149
+ * 网关产品ID
4150
+ */
4151
+ GatewayProductId: string
4152
+
4153
+ /**
4154
+ * 分页的偏移量
4155
+ */
4156
+ Offset?: number
4157
+
4158
+ /**
4159
+ * 分页的大小
4160
+ */
4161
+ Limit?: number
4162
+
4163
+ /**
4164
+ * 项目Id
4165
+ */
4166
+ ProjectId?: string
4167
+ }
4168
+
3730
4169
  /**
3731
4170
  * DeleteStudioProduct请求参数结构体
3732
4171
  */
@@ -3737,6 +4176,21 @@ export interface DeleteStudioProductRequest {
3737
4176
  ProductId: string
3738
4177
  }
3739
4178
 
4179
+ /**
4180
+ * BindProducts请求参数结构体
4181
+ */
4182
+ export interface BindProductsRequest {
4183
+ /**
4184
+ * 网关产品ID。
4185
+ */
4186
+ GatewayProductId: string
4187
+
4188
+ /**
4189
+ * 待绑定的子产品ID数组。
4190
+ */
4191
+ ProductIds: Array<string>
4192
+ }
4193
+
3740
4194
  /**
3741
4195
  * ModifyProject请求参数结构体
3742
4196
  */
@@ -3778,14 +4232,9 @@ export interface PublishMessageResponse {
3778
4232
  }
3779
4233
 
3780
4234
  /**
3781
- * ModifyLoRaGateway返回参数结构体
4235
+ * BindDevices返回参数结构体
3782
4236
  */
3783
- export interface ModifyLoRaGatewayResponse {
3784
- /**
3785
- * 返回网关数据
3786
- */
3787
- Gateway?: LoRaGatewayItem
3788
-
4237
+ export interface BindDevicesResponse {
3789
4238
  /**
3790
4239
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3791
4240
  */
@@ -3862,6 +4311,16 @@ export interface DescribeModelDefinitionRequest {
3862
4311
  ProductId: string
3863
4312
  }
3864
4313
 
4314
+ /**
4315
+ * EnableTopicRule请求参数结构体
4316
+ */
4317
+ export interface EnableTopicRuleRequest {
4318
+ /**
4319
+ * 规则名称
4320
+ */
4321
+ RuleName: string
4322
+ }
4323
+
3865
4324
  /**
3866
4325
  * DisableTopicRule请求参数结构体
3867
4326
  */
@@ -4230,13 +4689,28 @@ export interface GetBatchProductionsListResponse {
4230
4689
  }
4231
4690
 
4232
4691
  /**
4233
- * EnableTopicRule请求参数结构体
4692
+ * DescribeGatewayBindDevices返回参数结构体
4234
4693
  */
4235
- export interface EnableTopicRuleRequest {
4694
+ export interface DescribeGatewayBindDevicesResponse {
4236
4695
  /**
4237
- * 规则名称
4696
+ * 子设备信息。
4238
4697
  */
4239
- RuleName: string
4698
+ Devices?: Array<BindDeviceInfo>
4699
+
4700
+ /**
4701
+ * 子设备总数。
4702
+ */
4703
+ Total?: number
4704
+
4705
+ /**
4706
+ * 子设备所属的产品名。
4707
+ */
4708
+ ProductName?: string
4709
+
4710
+ /**
4711
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4712
+ */
4713
+ RequestId?: string
4240
4714
  }
4241
4715
 
4242
4716
  /**