tencentcloud-sdk-nodejs-iotexplorer 4.0.213 → 4.0.217

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.
@@ -39,6 +39,19 @@ export interface DevicesItem {
39
39
  */
40
40
  DeviceName: string;
41
41
  }
42
+ /**
43
+ * DeleteFenceBind请求参数结构体
44
+ */
45
+ export interface DeleteFenceBindRequest {
46
+ /**
47
+ * 围栏Id
48
+ */
49
+ FenceId: number;
50
+ /**
51
+ * 围栏绑定的产品信息
52
+ */
53
+ Items: Array<FenceBindProductItem>;
54
+ }
42
55
  /**
43
56
  * DescribeModelDefinition返回参数结构体
44
57
  */
@@ -93,6 +106,23 @@ export interface DeleteStudioProductResponse {
93
106
  */
94
107
  RequestId?: string;
95
108
  }
109
+ /**
110
+ * GetPositionSpaceList请求参数结构体
111
+ */
112
+ export interface GetPositionSpaceListRequest {
113
+ /**
114
+ * 项目Id
115
+ */
116
+ ProjectId: string;
117
+ /**
118
+ * 翻页偏移量,0起始
119
+ */
120
+ Offset: number;
121
+ /**
122
+ * 最大返回结果数
123
+ */
124
+ Limit: number;
125
+ }
96
126
  /**
97
127
  * GetDeviceList返回参数结构体
98
128
  */
@@ -190,6 +220,48 @@ export interface DeleteLoRaFrequencyResponse {
190
220
  */
191
221
  RequestId?: string;
192
222
  }
223
+ /**
224
+ * DescribeTopicPolicy请求参数结构体
225
+ */
226
+ export interface DescribeTopicPolicyRequest {
227
+ /**
228
+ * 产品ID
229
+ */
230
+ ProductId: string;
231
+ /**
232
+ * Topic名字
233
+ */
234
+ TopicName: string;
235
+ }
236
+ /**
237
+ * ModifyPositionFence请求参数结构体
238
+ */
239
+ export declare type ModifyPositionFenceRequest = null;
240
+ /**
241
+ * 围栏信息
242
+ */
243
+ export interface PositionFenceItem {
244
+ /**
245
+ * 围栏Id
246
+ */
247
+ FenceId: number;
248
+ /**
249
+ * 位置空间Id
250
+ */
251
+ SpaceId: string;
252
+ /**
253
+ * 围栏名称
254
+ */
255
+ FenceName: string;
256
+ /**
257
+ * 围栏描述
258
+ */
259
+ FenceDesc: string;
260
+ /**
261
+ * 围栏区域信息,采用 GeoJSON 格式
262
+ */
263
+ FenceArea: string;
264
+ }
193
265
  /**
194
266
  * DeleteTopicRule返回参数结构体
195
267
  */
@@ -199,6 +271,23 @@ export interface DeleteTopicRuleResponse {
199
271
  */
200
272
  RequestId?: string;
201
273
  }
274
+ /**
275
+ * 位置点
276
+ */
277
+ export interface PositionItem {
278
+ /**
279
+ * 位置点的时间
280
+ */
281
+ CreateTime: number;
282
+ /**
283
+ * 位置点的经度
284
+ */
285
+ Longitude: number;
286
+ /**
287
+ * 位置点的纬度
288
+ */
289
+ Latitude: number;
290
+ }
202
291
  /**
203
292
  * ModifyModelDefinition请求参数结构体
204
293
  */
@@ -247,9 +336,17 @@ export interface CallDeviceActionSyncRequest {
247
336
  InputParams?: string;
248
337
  }
249
338
  /**
250
- * EnableTopicRule返回参数结构体
339
+ * DescribeDevicePositionList请求参数结构体
251
340
  */
252
- export interface EnableTopicRuleResponse {
341
+ export declare type DescribeDevicePositionListRequest = null;
342
+ /**
343
+ * GetDeviceLocationHistory返回参数结构体
344
+ */
345
+ export interface GetDeviceLocationHistoryResponse {
346
+ /**
347
+ * 历史位置列表
348
+ */
349
+ Positions: Array<PositionItem>;
253
350
  /**
254
351
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
255
352
  */
@@ -264,6 +361,15 @@ export interface UpdateFirmwareResponse {
264
361
  */
265
362
  RequestId?: string;
266
363
  }
364
+ /**
365
+ * ModifyPositionFence返回参数结构体
366
+ */
367
+ export interface ModifyPositionFenceResponse {
368
+ /**
369
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
370
+ */
371
+ RequestId?: string;
372
+ }
267
373
  /**
268
374
  * ModifyStudioProduct请求参数结构体
269
375
  */
@@ -289,6 +395,15 @@ export interface ModifyStudioProductRequest {
289
395
  */
290
396
  EnableProductScript?: string;
291
397
  }
398
+ /**
399
+ * ModifyPositionSpace返回参数结构体
400
+ */
401
+ export interface ModifyPositionSpaceResponse {
402
+ /**
403
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
404
+ */
405
+ RequestId?: string;
406
+ }
292
407
  /**
293
408
  * CreateStudioProduct请求参数结构体
294
409
  */
@@ -358,17 +473,72 @@ export interface ProductModelDefinition {
358
473
  NetTypeModel: string;
359
474
  }
360
475
  /**
361
- * ReleaseStudioProduct请求参数结构体
476
+ * ModifyFenceBind返回参数结构体
362
477
  */
363
- export interface ReleaseStudioProductRequest {
478
+ export interface ModifyFenceBindResponse {
479
+ /**
480
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
481
+ */
482
+ RequestId?: string;
483
+ }
484
+ /**
485
+ * DeletePositionFence返回参数结构体
486
+ */
487
+ export interface DeletePositionFenceResponse {
488
+ /**
489
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
490
+ */
491
+ RequestId?: string;
492
+ }
493
+ /**
494
+ * 围栏告警位置点
495
+ */
496
+ export interface FenceAlarmPoint {
497
+ /**
498
+ * 围栏告警时间
499
+ */
500
+ AlarmTime: number;
501
+ /**
502
+ * 围栏告警位置的经度
503
+ */
504
+ Longitude: number;
505
+ /**
506
+ * 围栏告警位置的纬度
507
+ */
508
+ Latitude: number;
509
+ }
510
+ /**
511
+ * UploadFirmware请求参数结构体
512
+ */
513
+ export interface UploadFirmwareRequest {
364
514
  /**
365
515
  * 产品ID
366
516
  */
367
- ProductId: string;
517
+ ProductID: string;
368
518
  /**
369
- * 产品DevStatus
519
+ * 固件版本号
370
520
  */
371
- DevStatus: string;
521
+ FirmwareVersion: string;
522
+ /**
523
+ * 固件的MD5值
524
+ */
525
+ Md5sum: string;
526
+ /**
527
+ * 固件的大小
528
+ */
529
+ FileSize: number;
530
+ /**
531
+ * 固件名称
532
+ */
533
+ FirmwareName?: string;
534
+ /**
535
+ * 固件描述
536
+ */
537
+ FirmwareDescription?: string;
538
+ /**
539
+ * 固件升级模块;可选值 mcu|moudule
540
+ */
541
+ FwType?: string;
372
542
  }
373
543
  /**
374
544
  * ListEventHistory请求参数结构体
@@ -433,6 +603,123 @@ export interface DescribeDeviceDataRequest {
433
603
  */
434
604
  DeviceId?: string;
435
605
  }
606
+ /**
607
+ * 围栏绑定的产品信息
608
+ */
609
+ export interface FenceBindProductItem {
610
+ /**
611
+ * 围栏绑定的设备信息
612
+ */
613
+ Devices: Array<FenceBindDeviceItem>;
614
+ /**
615
+ * 围栏绑定的产品Id
616
+ */
617
+ ProductId: string;
618
+ }
619
+ /**
620
+ * ListTopicPolicy返回参数结构体
621
+ */
622
+ export interface ListTopicPolicyResponse {
623
+ /**
624
+ * Topic列表
625
+ */
626
+ Topics?: Array<TopicItem>;
627
+ /**
628
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
629
+ */
630
+ RequestId?: string;
631
+ }
632
+ /**
633
+ * SearchPositionSpace返回参数结构体
634
+ */
635
+ export interface SearchPositionSpaceResponse {
636
+ /**
637
+ * 位置空间列表
638
+ 注意:此字段可能返回 null,表示取不到有效值。
639
+ */
640
+ List: Array<PositionSpaceInfo>;
641
+ /**
642
+ * 符合条件的位置空间个数
643
+ 注意:此字段可能返回 null,表示取不到有效值。
644
+ */
645
+ Total: number;
646
+ /**
647
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
648
+ */
649
+ RequestId?: string;
650
+ }
651
+ /**
652
+ * DescribePositionFenceList返回参数结构体
653
+ */
654
+ export interface DescribePositionFenceListResponse {
655
+ /**
656
+ * 围栏列表
657
+ 注意:此字段可能返回 null,表示取不到有效值。
658
+ */
659
+ List: Array<PositionFenceInfo>;
660
+ /**
661
+ * 围栏数量
662
+ 注意:此字段可能返回 null,表示取不到有效值。
663
+ */
664
+ Total: number;
665
+ /**
666
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
667
+ */
668
+ RequestId?: string;
669
+ }
670
+ /**
671
+ * GetDeviceLocationHistory请求参数结构体
672
+ */
673
+ export interface GetDeviceLocationHistoryRequest {
674
+ /**
675
+ * 产品Id
676
+ */
677
+ ProductId: string;
678
+ /**
679
+ * 设备名
680
+ */
681
+ DeviceName: string;
682
+ /**
683
+ * 查询起始时间,Unix时间,单位为毫秒
684
+ */
685
+ StartTime: number;
686
+ /**
687
+ * 查询结束时间,Unix时间,单位为毫秒
688
+ */
689
+ EndTime: number;
690
+ /**
691
+ * 坐标类型
692
+ */
693
+ CoordinateType?: number;
694
+ }
695
+ /**
696
+ * DescribeDevicePositionList返回参数结构体
697
+ */
698
+ export interface DescribeDevicePositionListResponse {
699
+ /**
700
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
701
+ */
702
+ RequestId?: string;
703
+ }
704
+ /**
705
+ * GetProjectList返回参数结构体
706
+ */
707
+ export interface GetProjectListResponse {
708
+ /**
709
+ * 项目列表
710
+ 注意:此字段可能返回 null,表示取不到有效值。
711
+ */
712
+ Projects: Array<ProjectEntryEx>;
713
+ /**
714
+ * 列表项个数
715
+ 注意:此字段可能返回 null,表示取不到有效值。
716
+ */
717
+ Total: number;
718
+ /**
719
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
720
+ */
721
+ RequestId?: string;
722
+ }
436
723
  /**
437
724
  * DescribeStudioProduct返回参数结构体
438
725
  */
@@ -459,6 +746,23 @@ export interface DescribeProjectResponse {
459
746
  */
460
747
  RequestId?: string;
461
748
  }
749
+ /**
750
+ * SearchStudioProduct返回参数结构体
751
+ */
752
+ export interface SearchStudioProductResponse {
753
+ /**
754
+ * 产品列表
755
+ */
756
+ Products: Array<ProductEntry>;
757
+ /**
758
+ * 产品数量
759
+ */
760
+ Total: number;
761
+ /**
762
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
763
+ */
764
+ RequestId?: string;
765
+ }
462
766
  /**
463
767
  * DeviceData
464
768
  */
@@ -484,6 +788,40 @@ export interface DeviceData {
484
788
  */
485
789
  DevicePsk: string;
486
790
  }
791
+ /**
792
+ * GetTopicRuleList请求参数结构体
793
+ */
794
+ export interface GetTopicRuleListRequest {
795
+ /**
796
+ * 请求的页数
797
+ */
798
+ PageNum: number;
799
+ /**
800
+ * 分页的大小
801
+ */
802
+ PageSize: number;
803
+ }
804
+ /**
805
+ * 围栏绑定的设备信息
806
+ */
807
+ export interface FenceBindDeviceItem {
808
+ /**
809
+ * 设备名称
810
+ */
811
+ DeviceName: string;
812
+ /**
813
+ * 告警条件(In,进围栏报警;Out,出围栏报警;InOrOut,进围栏或者出围栏均报警)
814
+ */
815
+ AlertCondition: string;
816
+ /**
817
+ * 是否使能围栏(true,使能;false,禁用)
818
+ */
819
+ FenceEnable: boolean;
820
+ /**
821
+ * 告警处理方法
822
+ */
823
+ Method: string;
824
+ }
487
825
  /**
488
826
  * 设备历史数据结构
489
827
  */
@@ -625,6 +963,15 @@ export interface ProjectEntryEx {
625
963
  */
626
964
  DeviceCount: number;
627
965
  }
966
+ /**
967
+ * ListTopicPolicy请求参数结构体
968
+ */
969
+ export interface ListTopicPolicyRequest {
970
+ /**
971
+ * 产品ID
972
+ */
973
+ ProductId: string;
974
+ }
628
975
  /**
629
976
  * DescribeLoRaFrequency请求参数结构体
630
977
  */
@@ -715,6 +1062,24 @@ export interface ReleaseStudioProductResponse {
715
1062
  */
716
1063
  RequestId?: string;
717
1064
  }
1065
+ /**
1066
+ * DescribeSpaceFenceEventList返回参数结构体
1067
+ */
1068
+ export interface DescribeSpaceFenceEventListResponse {
1069
+ /**
1070
+ * 围栏告警事件列表
1071
+ 注意:此字段可能返回 null,表示取不到有效值。
1072
+ */
1073
+ List: Array<FenceEventItem>;
1074
+ /**
1075
+ * 围栏告警事件总数
1076
+ */
1077
+ Total: number;
1078
+ /**
1079
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1080
+ */
1081
+ RequestId?: string;
1082
+ }
718
1083
  /**
719
1084
  * DeleteLoRaGateway请求参数结构体
720
1085
  */
@@ -724,6 +1089,48 @@ export interface DeleteLoRaGatewayRequest {
724
1089
  */
725
1090
  GatewayId: string;
726
1091
  }
1092
+ /**
1093
+ * DescribeTopicPolicy返回参数结构体
1094
+ */
1095
+ export interface DescribeTopicPolicyResponse {
1096
+ /**
1097
+ * 产品ID
1098
+ */
1099
+ ProductId?: string;
1100
+ /**
1101
+ * Topic名称
1102
+ */
1103
+ TopicName?: string;
1104
+ /**
1105
+ * Topic权限
1106
+ */
1107
+ Privilege?: number;
1108
+ /**
1109
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1110
+ */
1111
+ RequestId?: string;
1112
+ }
1113
+ /**
1114
+ * SearchPositionSpace请求参数结构体
1115
+ */
1116
+ export interface SearchPositionSpaceRequest {
1117
+ /**
1118
+ * 项目Id
1119
+ */
1120
+ ProjectId: string;
1121
+ /**
1122
+ * 位置空间名字
1123
+ */
1124
+ SpaceName: string;
1125
+ /**
1126
+ * 偏移量,从0开始
1127
+ */
1128
+ Offset: number;
1129
+ /**
1130
+ * 最大获取数量
1131
+ */
1132
+ Limit: number;
1133
+ }
727
1134
  /**
728
1135
  * LoRa自定义频点信息
729
1136
  */
@@ -769,6 +1176,15 @@ export interface LoRaFrequencyEntry {
769
1176
  */
770
1177
  CreateTime: number;
771
1178
  }
1179
+ /**
1180
+ * ModifyTopicPolicy返回参数结构体
1181
+ */
1182
+ export interface ModifyTopicPolicyResponse {
1183
+ /**
1184
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1185
+ */
1186
+ RequestId?: string;
1187
+ }
772
1188
  /**
773
1189
  * SearchTopicRule返回参数结构体
774
1190
  */
@@ -786,6 +1202,36 @@ export interface SearchTopicRuleResponse {
786
1202
  */
787
1203
  RequestId?: string;
788
1204
  }
1205
+ /**
1206
+ * DescribeFenceEventList返回参数结构体
1207
+ */
1208
+ export interface DescribeFenceEventListResponse {
1209
+ /**
1210
+ * 围栏告警事件列表
1211
+ */
1212
+ List: Array<FenceEventItem>;
1213
+ /**
1214
+ * 围栏告警事件总数
1215
+ */
1216
+ Total: number;
1217
+ /**
1218
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1219
+ */
1220
+ RequestId?: string;
1221
+ }
1222
+ /**
1223
+ * UpdateDevicesEnableState请求参数结构体
1224
+ */
1225
+ export interface UpdateDevicesEnableStateRequest {
1226
+ /**
1227
+ * 多个设备标识
1228
+ */
1229
+ DevicesItems: Array<DevicesItem>;
1230
+ /**
1231
+ * 1:启用;0:禁用
1232
+ */
1233
+ Status: number;
1234
+ }
789
1235
  /**
790
1236
  * DescribeTopicRule请求参数结构体
791
1237
  */
@@ -848,11 +1294,24 @@ export interface CreateLoRaGatewayRequest {
848
1294
  /**
849
1295
  * 是否公开
850
1296
  */
851
- IsPublic?: boolean;
1297
+ IsPublic?: boolean;
1298
+ /**
1299
+ * 频点ID
1300
+ */
1301
+ FrequencyId?: string;
1302
+ }
1303
+ /**
1304
+ * ReleaseStudioProduct请求参数结构体
1305
+ */
1306
+ export interface ReleaseStudioProductRequest {
1307
+ /**
1308
+ * 产品ID
1309
+ */
1310
+ ProductId: string;
852
1311
  /**
853
- * 频点ID
1312
+ * 产品DevStatus
854
1313
  */
855
- FrequencyId?: string;
1314
+ DevStatus: string;
856
1315
  }
857
1316
  /**
858
1317
  * CreateProject返回参数结构体
@@ -868,17 +1327,33 @@ export interface CreateProjectResponse {
868
1327
  RequestId?: string;
869
1328
  }
870
1329
  /**
871
- * ModifyTopicRule请求参数结构体
1330
+ * DescribeDeviceDataHistory返回参数结构体
872
1331
  */
873
- export interface ModifyTopicRuleRequest {
1332
+ export interface DescribeDeviceDataHistoryResponse {
874
1333
  /**
875
- * 规则名称
876
- */
877
- RuleName: string;
1334
+ * 属性字段名称,对应数据模板中功能属性的标识符
1335
+ 注意:此字段可能返回 null,表示取不到有效值。
1336
+ */
1337
+ FieldName?: string;
878
1338
  /**
879
- * 替换的规则包体
1339
+ * 数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
1340
+ 注意:此字段可能返回 null,表示取不到有效值。
1341
+ */
1342
+ Listover?: boolean;
1343
+ /**
1344
+ * 检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
1345
+ 注意:此字段可能返回 null,表示取不到有效值。
1346
+ */
1347
+ Context?: string;
1348
+ /**
1349
+ * 历史数据结果数组,返回对应时间点及取值。
1350
+ 注意:此字段可能返回 null,表示取不到有效值。
1351
+ */
1352
+ Results?: Array<DeviceDataHistoryItem>;
1353
+ /**
1354
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
880
1355
  */
881
- TopicRulePayload: TopicRulePayload;
1356
+ RequestId?: string;
882
1357
  }
883
1358
  /**
884
1359
  * DeleteProject返回参数结构体
@@ -890,34 +1365,13 @@ export interface DeleteProjectResponse {
890
1365
  RequestId?: string;
891
1366
  }
892
1367
  /**
893
- * DeleteDevices请求参数结构体
894
- */
895
- export interface DeleteDevicesRequest {
896
- /**
897
- * 多个设备标识
898
- */
899
- DevicesItems: Array<DevicesItem>;
900
- }
901
- /**
902
- * CallDeviceActionAsync请求参数结构体
1368
+ * CreateTopicPolicy返回参数结构体
903
1369
  */
904
- export interface CallDeviceActionAsyncRequest {
905
- /**
906
- * 产品Id
907
- */
908
- ProductId: string;
909
- /**
910
- * 设备名称
911
- */
912
- DeviceName: string;
913
- /**
914
- * 产品数据模板中行为功能的标识符,由开发者自行根据设备的应用场景定义
915
- */
916
- ActionId: string;
1370
+ export interface CreateTopicPolicyResponse {
917
1371
  /**
918
- * 输入参数
1372
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
919
1373
  */
920
- InputParams?: string;
1374
+ RequestId?: string;
921
1375
  }
922
1376
  /**
923
1377
  * CreateDevice返回参数结构体
@@ -970,23 +1424,13 @@ export interface CreateDeviceRequest {
970
1424
  DefinedPsk?: string;
971
1425
  }
972
1426
  /**
973
- * GetProjectList返回参数结构体
1427
+ * DeletePositionSpace请求参数结构体
974
1428
  */
975
- export interface GetProjectListResponse {
976
- /**
977
- * 项目列表
978
- 注意:此字段可能返回 null,表示取不到有效值。
979
- */
980
- Projects: Array<ProjectEntryEx>;
1429
+ export interface DeletePositionSpaceRequest {
981
1430
  /**
982
- * 列表项个数
983
- 注意:此字段可能返回 null,表示取不到有效值。
984
- */
985
- Total: number;
986
- /**
987
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1431
+ * 位置空间Id
988
1432
  */
989
- RequestId?: string;
1433
+ SpaceId: string;
990
1434
  }
991
1435
  /**
992
1436
  * GetStudioProductList请求参数结构体
@@ -1174,6 +1618,19 @@ export interface CreateProjectRequest {
1174
1618
  */
1175
1619
  InstanceId?: string;
1176
1620
  }
1621
+ /**
1622
+ * CreateFenceBind请求参数结构体
1623
+ */
1624
+ export interface CreateFenceBindRequest {
1625
+ /**
1626
+ * 围栏Id
1627
+ */
1628
+ FenceId: number;
1629
+ /**
1630
+ * 围栏绑定的产品列表
1631
+ */
1632
+ Items: Array<FenceBindProductItem>;
1633
+ }
1177
1634
  /**
1178
1635
  * DescribeDevice返回参数结构体
1179
1636
  */
@@ -1255,37 +1712,17 @@ export interface PublishMessageRequest {
1255
1712
  PayloadEncoding?: string;
1256
1713
  }
1257
1714
  /**
1258
- * UploadFirmware请求参数结构体
1715
+ * ModifyTopicRule请求参数结构体
1259
1716
  */
1260
- export interface UploadFirmwareRequest {
1261
- /**
1262
- * 产品ID
1263
- */
1264
- ProductID: string;
1265
- /**
1266
- * 固件版本号
1267
- */
1268
- FirmwareVersion: string;
1269
- /**
1270
- * 固件的MD5值
1271
- */
1272
- Md5sum: string;
1273
- /**
1274
- * 固件的大小
1275
- */
1276
- FileSize: number;
1277
- /**
1278
- * 固件名称
1279
- */
1280
- FirmwareName?: string;
1717
+ export interface ModifyTopicRuleRequest {
1281
1718
  /**
1282
- * 固件描述
1719
+ * 规则名称
1283
1720
  */
1284
- FirmwareDescription?: string;
1721
+ RuleName: string;
1285
1722
  /**
1286
- * 固件升级模块;可选值 mcu|moudule
1723
+ * 替换的规则包体
1287
1724
  */
1288
- FwType?: string;
1725
+ TopicRulePayload: TopicRulePayload;
1289
1726
  }
1290
1727
  /**
1291
1728
  * GetDeviceList请求参数结构体
@@ -1316,6 +1753,42 @@ export interface GetDeviceListRequest {
1316
1753
  */
1317
1754
  ProjectId?: string;
1318
1755
  }
1756
+ /**
1757
+ * ModifySpaceProperty请求参数结构体
1758
+ */
1759
+ export interface ModifySpacePropertyRequest {
1760
+ /**
1761
+ * 位置空间Id
1762
+ */
1763
+ SpaceId: string;
1764
+ /**
1765
+ * 产品Id
1766
+ */
1767
+ ProductId: string;
1768
+ /**
1769
+ * 产品属性
1770
+ */
1771
+ Data: string;
1772
+ }
1773
+ /**
1774
+ * GetPositionSpaceList返回参数结构体
1775
+ */
1776
+ export interface GetPositionSpaceListResponse {
1777
+ /**
1778
+ * 位置空间列表
1779
+ 注意:此字段可能返回 null,表示取不到有效值。
1780
+ */
1781
+ List: Array<PositionSpaceInfo>;
1782
+ /**
1783
+ * 位置空间数量
1784
+ 注意:此字段可能返回 null,表示取不到有效值。
1785
+ */
1786
+ Total: number;
1787
+ /**
1788
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1789
+ */
1790
+ RequestId?: string;
1791
+ }
1319
1792
  /**
1320
1793
  * GetCOSURL返回参数结构体
1321
1794
  */
@@ -1329,6 +1802,19 @@ export interface GetCOSURLResponse {
1329
1802
  */
1330
1803
  RequestId?: string;
1331
1804
  }
1805
+ /**
1806
+ * ModifyFenceBind请求参数结构体
1807
+ */
1808
+ export interface ModifyFenceBindRequest {
1809
+ /**
1810
+ * 围栏Id
1811
+ */
1812
+ FenceId: number;
1813
+ /**
1814
+ * 围栏绑定的产品列表
1815
+ */
1816
+ Items: Array<FenceBindProductItem>;
1817
+ }
1332
1818
  /**
1333
1819
  * GetTopicRuleList返回参数结构体
1334
1820
  */
@@ -1347,13 +1833,84 @@ export interface GetTopicRuleListResponse {
1347
1833
  RequestId?: string;
1348
1834
  }
1349
1835
  /**
1350
- * DisableTopicRule请求参数结构体
1836
+ * DescribeFenceEventList请求参数结构体
1351
1837
  */
1352
- export interface DisableTopicRuleRequest {
1838
+ export interface DescribeFenceEventListRequest {
1353
1839
  /**
1354
- * 规则名称
1840
+ * 围栏告警信息的查询起始时间,Unix时间,单位为毫秒
1355
1841
  */
1356
- RuleName: string;
1842
+ StartTime: number;
1843
+ /**
1844
+ * 围栏告警信息的查询结束时间,Unix时间,单位为毫秒
1845
+ */
1846
+ EndTime: number;
1847
+ /**
1848
+ * 围栏Id
1849
+ */
1850
+ FenceId?: number;
1851
+ /**
1852
+ * 翻页偏移量,0起始
1853
+ */
1854
+ Offset?: number;
1855
+ /**
1856
+ * 最大返回结果数
1857
+ */
1858
+ Limit?: number;
1859
+ /**
1860
+ * 告警对应的产品Id
1861
+ */
1862
+ ProductId?: string;
1863
+ /**
1864
+ * 告警对应的设备名称
1865
+ */
1866
+ DeviceName?: string;
1867
+ }
1868
+ /**
1869
+ * ModifyPositionSpace请求参数结构体
1870
+ */
1871
+ export interface ModifyPositionSpaceRequest {
1872
+ /**
1873
+ * 位置空间Id
1874
+ */
1875
+ SpaceId: string;
1876
+ /**
1877
+ * 位置空间名称
1878
+ */
1879
+ SpaceName: string;
1880
+ /**
1881
+ * 授权类型
1882
+ */
1883
+ AuthorizeType: number;
1884
+ /**
1885
+ * 产品列表
1886
+ */
1887
+ ProductIdList: Array<string>;
1888
+ /**
1889
+ * 位置空间描述
1890
+ */
1891
+ Description?: string;
1892
+ /**
1893
+ * 缩略图
1894
+ */
1895
+ Icon?: string;
1896
+ }
1897
+ /**
1898
+ * GetLoRaGatewayList返回参数结构体
1899
+ */
1900
+ export interface GetLoRaGatewayListResponse {
1901
+ /**
1902
+ * 返回总数
1903
+ */
1904
+ Total?: number;
1905
+ /**
1906
+ * 返回详情项
1907
+ 注意:此字段可能返回 null,表示取不到有效值。
1908
+ */
1909
+ Gateways?: Array<LoRaGatewayItem>;
1910
+ /**
1911
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1912
+ */
1913
+ RequestId?: string;
1357
1914
  }
1358
1915
  /**
1359
1916
  * 项目详情
@@ -1457,31 +2014,113 @@ export interface TopicRule {
1457
2014
  RuleDisabled: boolean;
1458
2015
  }
1459
2016
  /**
1460
- * CreateTopicPolicy返回参数结构体
2017
+ * CallDeviceActionAsync请求参数结构体
2018
+ */
2019
+ export interface CallDeviceActionAsyncRequest {
2020
+ /**
2021
+ * 产品Id
2022
+ */
2023
+ ProductId: string;
2024
+ /**
2025
+ * 设备名称
2026
+ */
2027
+ DeviceName: string;
2028
+ /**
2029
+ * 产品数据模板中行为功能的标识符,由开发者自行根据设备的应用场景定义
2030
+ */
2031
+ ActionId: string;
2032
+ /**
2033
+ * 输入参数
2034
+ */
2035
+ InputParams?: string;
2036
+ }
2037
+ /**
2038
+ * CallDeviceActionAsync返回参数结构体
2039
+ */
2040
+ export interface CallDeviceActionAsyncResponse {
2041
+ /**
2042
+ * 调用Id
2043
+ */
2044
+ ClientToken?: string;
2045
+ /**
2046
+ * 异步调用状态
2047
+ */
2048
+ Status?: string;
2049
+ /**
2050
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2051
+ */
2052
+ RequestId?: string;
2053
+ }
2054
+ /**
2055
+ * DeleteFenceBind返回参数结构体
2056
+ */
2057
+ export interface DeleteFenceBindResponse {
2058
+ /**
2059
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2060
+ */
2061
+ RequestId?: string;
2062
+ }
2063
+ /**
2064
+ * DeleteTopicPolicy请求参数结构体
2065
+ */
2066
+ export interface DeleteTopicPolicyRequest {
2067
+ /**
2068
+ * 产品ID
2069
+ */
2070
+ ProductId: string;
2071
+ /**
2072
+ * Topic名称
2073
+ */
2074
+ TopicName: string;
2075
+ }
2076
+ /**
2077
+ * CreateFenceBind返回参数结构体
1461
2078
  */
1462
- export interface CreateTopicPolicyResponse {
2079
+ export interface CreateFenceBindResponse {
1463
2080
  /**
1464
2081
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1465
2082
  */
1466
2083
  RequestId?: string;
1467
2084
  }
1468
2085
  /**
1469
- * CallDeviceActionAsync返回参数结构体
2086
+ * DescribeFenceBindList请求参数结构体
1470
2087
  */
1471
- export interface CallDeviceActionAsyncResponse {
2088
+ export interface DescribeFenceBindListRequest {
1472
2089
  /**
1473
- * 调用Id
2090
+ * 围栏Id
1474
2091
  */
1475
- ClientToken?: string;
2092
+ FenceId: number;
1476
2093
  /**
1477
- * 异步调用状态
2094
+ * 翻页偏移量,0起始
1478
2095
  */
1479
- Status?: string;
2096
+ Offset?: number;
2097
+ /**
2098
+ * 最大返回结果数
2099
+ */
2100
+ Limit?: number;
2101
+ }
2102
+ /**
2103
+ * CreatePositionFence返回参数结构体
2104
+ */
2105
+ export interface CreatePositionFenceResponse {
1480
2106
  /**
1481
2107
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1482
2108
  */
1483
2109
  RequestId?: string;
1484
2110
  }
2111
+ /**
2112
+ * Topic信息, 包括Topic名字和权限
2113
+ */
2114
+ export interface TopicItem {
2115
+ /**
2116
+ * Topic名称
2117
+ */
2118
+ TopicName: string;
2119
+ /**
2120
+ * Topic权限 , 1上报 2下发
2121
+ */
2122
+ Privilege: number;
2123
+ }
1485
2124
  /**
1486
2125
  * DescribeTopicRule返回参数结构体
1487
2126
  */
@@ -1521,6 +2160,52 @@ export interface UpdateFirmwareRequest {
1521
2160
  */
1522
2161
  UpgradeMethod?: number;
1523
2162
  }
2163
+ /**
2164
+ * 位置空间详情
2165
+ */
2166
+ export interface PositionSpaceInfo {
2167
+ /**
2168
+ * 项目Id
2169
+ */
2170
+ ProjectId: string;
2171
+ /**
2172
+ * 位置空间Id
2173
+ */
2174
+ SpaceId: string;
2175
+ /**
2176
+ * 位置空间名称
2177
+ */
2178
+ SpaceName: string;
2179
+ /**
2180
+ * 授权类型
2181
+ */
2182
+ AuthorizeType: number;
2183
+ /**
2184
+ * 描述备注
2185
+ 注意:此字段可能返回 null,表示取不到有效值。
2186
+ */
2187
+ Description: string;
2188
+ /**
2189
+ * 产品列表
2190
+ */
2191
+ ProductIdList: Array<string>;
2192
+ /**
2193
+ * 缩略图
2194
+ */
2195
+ Icon: string;
2196
+ /**
2197
+ * 创建时间
2198
+ */
2199
+ CreateTime: number;
2200
+ /**
2201
+ * 更新时间
2202
+ */
2203
+ UpdateTime: number;
2204
+ /**
2205
+ * 用户自定义地图缩放
2206
+ */
2207
+ Zoom: number;
2208
+ }
1524
2209
  /**
1525
2210
  * 网关坐标
1526
2211
  */
@@ -1560,17 +2245,21 @@ export interface DescribeDeviceRequest {
1560
2245
  DeviceId?: string;
1561
2246
  }
1562
2247
  /**
1563
- * UpdateDevicesEnableState请求参数结构体
2248
+ * DescribePositionFenceList请求参数结构体
1564
2249
  */
1565
- export interface UpdateDevicesEnableStateRequest {
2250
+ export interface DescribePositionFenceListRequest {
1566
2251
  /**
1567
- * 多个设备标识
2252
+ * 位置空间Id
1568
2253
  */
1569
- DevicesItems: Array<DevicesItem>;
2254
+ SpaceId: string;
1570
2255
  /**
1571
- * 1:启用;0:禁用
2256
+ * 翻页偏移量,0起始
1572
2257
  */
1573
- Status: number;
2258
+ Offset?: number;
2259
+ /**
2260
+ * 最大返回结果数
2261
+ */
2262
+ Limit?: number;
1574
2263
  }
1575
2264
  /**
1576
2265
  * ModifyTopicRule返回参数结构体
@@ -1642,21 +2331,29 @@ export interface DescribeLoRaFrequencyResponse {
1642
2331
  RequestId?: string;
1643
2332
  }
1644
2333
  /**
1645
- * SearchStudioProduct返回参数结构体
2334
+ * DescribeSpaceFenceEventList请求参数结构体
1646
2335
  */
1647
- export interface SearchStudioProductResponse {
2336
+ export interface DescribeSpaceFenceEventListRequest {
1648
2337
  /**
1649
- * 产品列表
2338
+ * 位置空间Id
1650
2339
  */
1651
- Products: Array<ProductEntry>;
2340
+ SpaceId: string;
1652
2341
  /**
1653
- * 产品数量
2342
+ * 围栏告警信息的查询起始时间,Unix时间,单位为毫秒
1654
2343
  */
1655
- Total: number;
2344
+ StartTime: number;
1656
2345
  /**
1657
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2346
+ * 围栏告警信息的查询结束时间,Unix时间,单位为毫秒
1658
2347
  */
1659
- RequestId?: string;
2348
+ EndTime: number;
2349
+ /**
2350
+ * 翻页偏移量,0起始
2351
+ */
2352
+ Offset?: number;
2353
+ /**
2354
+ * 最大返回结果数
2355
+ */
2356
+ Limit?: number;
1660
2357
  }
1661
2358
  /**
1662
2359
  * GetLoRaGatewayList请求参数结构体
@@ -1675,6 +2372,31 @@ export interface GetLoRaGatewayListRequest {
1675
2372
  */
1676
2373
  Limit?: number;
1677
2374
  }
2375
+ /**
2376
+ * 围栏事件详情
2377
+ */
2378
+ export interface FenceEventItem {
2379
+ /**
2380
+ * 围栏事件的产品Id
2381
+ */
2382
+ ProductId: string;
2383
+ /**
2384
+ * 围栏事件的设备名称
2385
+ */
2386
+ DeviceName: string;
2387
+ /**
2388
+ * 围栏Id
2389
+ */
2390
+ FenceId: number;
2391
+ /**
2392
+ * 围栏事件的告警类型(In,进围栏报警;Out,出围栏报警;InOrOut,进围栏或者出围栏均报警)
2393
+ */
2394
+ AlertType: string;
2395
+ /**
2396
+ * 围栏事件的设备位置信息
2397
+ */
2398
+ Data: FenceAlarmPoint;
2399
+ }
1678
2400
  /**
1679
2401
  * DescribeProject请求参数结构体
1680
2402
  */
@@ -1693,6 +2415,27 @@ export interface UploadFirmwareResponse {
1693
2415
  */
1694
2416
  RequestId?: string;
1695
2417
  }
2418
+ /**
2419
+ * ModifyTopicPolicy请求参数结构体
2420
+ */
2421
+ export interface ModifyTopicPolicyRequest {
2422
+ /**
2423
+ * 产品ID
2424
+ */
2425
+ ProductId: string;
2426
+ /**
2427
+ * 更新前Topic名
2428
+ */
2429
+ TopicName: string;
2430
+ /**
2431
+ * 更新后Topic名
2432
+ */
2433
+ NewTopicName: string;
2434
+ /**
2435
+ * Topic权限
2436
+ */
2437
+ Privilege: number;
2438
+ }
1696
2439
  /**
1697
2440
  * DeleteTopicRule请求参数结构体
1698
2441
  */
@@ -1715,6 +2458,15 @@ export interface CreateLoRaGatewayResponse {
1715
2458
  */
1716
2459
  RequestId?: string;
1717
2460
  }
2461
+ /**
2462
+ * DeleteTopicPolicy返回参数结构体
2463
+ */
2464
+ export interface DeleteTopicPolicyResponse {
2465
+ /**
2466
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2467
+ */
2468
+ RequestId?: string;
2469
+ }
1718
2470
  /**
1719
2471
  * DeleteLoRaGateway返回参数结构体
1720
2472
  */
@@ -1871,6 +2623,20 @@ export interface DescribeStudioProductRequest {
1871
2623
  */
1872
2624
  ProductId: string;
1873
2625
  }
2626
+ /**
2627
+ * CreatePositionSpace返回参数结构体
2628
+ */
2629
+ export interface CreatePositionSpaceResponse {
2630
+ /**
2631
+ * 空间Id
2632
+ 注意:此字段可能返回 null,表示取不到有效值。
2633
+ */
2634
+ SpaceId: string;
2635
+ /**
2636
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2637
+ */
2638
+ RequestId?: string;
2639
+ }
1874
2640
  /**
1875
2641
  * ModifyLoRaFrequency请求参数结构体
1876
2642
  */
@@ -1921,6 +2687,19 @@ export interface ModifyModelDefinitionResponse {
1921
2687
  */
1922
2688
  RequestId?: string;
1923
2689
  }
2690
+ /**
2691
+ * DeletePositionFence请求参数结构体
2692
+ */
2693
+ export interface DeletePositionFenceRequest {
2694
+ /**
2695
+ * 位置空间Id
2696
+ */
2697
+ SpaceId: string;
2698
+ /**
2699
+ * 围栏Id
2700
+ */
2701
+ FenceId: number;
2702
+ }
1924
2703
  /**
1925
2704
  * GetProjectList请求参数结构体
1926
2705
  */
@@ -1954,6 +2733,15 @@ export interface GetProjectListRequest {
1954
2733
  */
1955
2734
  ProjectName?: string;
1956
2735
  }
2736
+ /**
2737
+ * DeletePositionSpace返回参数结构体
2738
+ */
2739
+ export interface DeletePositionSpaceResponse {
2740
+ /**
2741
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2742
+ */
2743
+ RequestId?: string;
2744
+ }
1957
2745
  /**
1958
2746
  * CreateLoRaFrequency返回参数结构体
1959
2747
  */
@@ -1967,6 +2755,15 @@ export interface CreateLoRaFrequencyResponse {
1967
2755
  */
1968
2756
  RequestId?: string;
1969
2757
  }
2758
+ /**
2759
+ * EnableTopicRule返回参数结构体
2760
+ */
2761
+ export interface EnableTopicRuleResponse {
2762
+ /**
2763
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2764
+ */
2765
+ RequestId?: string;
2766
+ }
1970
2767
  /**
1971
2768
  * SearchStudioProduct请求参数结构体
1972
2769
  */
@@ -1997,17 +2794,13 @@ export interface SearchStudioProductRequest {
1997
2794
  ProductId?: string;
1998
2795
  }
1999
2796
  /**
2000
- * GetTopicRuleList请求参数结构体
2797
+ * DeleteDevices请求参数结构体
2001
2798
  */
2002
- export interface GetTopicRuleListRequest {
2003
- /**
2004
- * 请求的页数
2005
- */
2006
- PageNum: number;
2799
+ export interface DeleteDevicesRequest {
2007
2800
  /**
2008
- * 分页的大小
2801
+ * 多个设备标识
2009
2802
  */
2010
- PageSize: number;
2803
+ DevicesItems: Array<DevicesItem>;
2011
2804
  }
2012
2805
  /**
2013
2806
  * 云api直接绑定设备出参
@@ -2093,6 +2886,15 @@ export interface ModifyProjectRequest {
2093
2886
  */
2094
2887
  ProjectDesc: string;
2095
2888
  }
2889
+ /**
2890
+ * ModifySpaceProperty返回参数结构体
2891
+ */
2892
+ export interface ModifySpacePropertyResponse {
2893
+ /**
2894
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2895
+ */
2896
+ RequestId?: string;
2897
+ }
2096
2898
  /**
2097
2899
  * PublishMessage返回参数结构体
2098
2900
  */
@@ -2116,29 +2918,17 @@ export interface ModifyLoRaGatewayResponse {
2116
2918
  RequestId?: string;
2117
2919
  }
2118
2920
  /**
2119
- * DescribeDeviceDataHistory返回参数结构体
2921
+ * DescribeFenceBindList返回参数结构体
2120
2922
  */
2121
- export interface DescribeDeviceDataHistoryResponse {
2122
- /**
2123
- * 属性字段名称,对应数据模板中功能属性的标识符
2124
- 注意:此字段可能返回 null,表示取不到有效值。
2125
- */
2126
- FieldName?: string;
2127
- /**
2128
- * 数据是否已全部返回,true 表示数据全部返回,false 表示还有数据待返回,可将 Context 作为入参,继续查询返回结果。
2129
- 注意:此字段可能返回 null,表示取不到有效值。
2130
- */
2131
- Listover?: boolean;
2923
+ export interface DescribeFenceBindListResponse {
2132
2924
  /**
2133
- * 检索上下文,当 ListOver 为false时,可以用此上下文,继续读取后续数据
2134
- 注意:此字段可能返回 null,表示取不到有效值。
2135
- */
2136
- Context?: string;
2925
+ * 围栏绑定的产品设备列表
2926
+ */
2927
+ List: Array<FenceBindProductItem>;
2137
2928
  /**
2138
- * 历史数据结果数组,返回对应时间点及取值。
2139
- 注意:此字段可能返回 null,表示取不到有效值。
2140
- */
2141
- Results?: Array<DeviceDataHistoryItem>;
2929
+ * 围栏绑定的设备总数
2930
+ */
2931
+ Total: number;
2142
2932
  /**
2143
2933
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2144
2934
  */
@@ -2157,6 +2947,27 @@ export interface SearchKeyword {
2157
2947
  */
2158
2948
  Value?: string;
2159
2949
  }
2950
+ /**
2951
+ * CreatePositionFence请求参数结构体
2952
+ */
2953
+ export interface CreatePositionFenceRequest {
2954
+ /**
2955
+ * 位置空间Id
2956
+ */
2957
+ SpaceId: string;
2958
+ /**
2959
+ * 围栏名称
2960
+ */
2961
+ FenceName: string;
2962
+ /**
2963
+ * 围栏区域信息,采用 GeoJSON 格式
2964
+ */
2965
+ FenceArea: string;
2966
+ /**
2967
+ * 围栏描述
2968
+ */
2969
+ FenceDesc?: string;
2970
+ }
2160
2971
  /**
2161
2972
  * DescribeModelDefinition请求参数结构体
2162
2973
  */
@@ -2167,22 +2978,13 @@ export interface DescribeModelDefinitionRequest {
2167
2978
  ProductId: string;
2168
2979
  }
2169
2980
  /**
2170
- * GetLoRaGatewayList返回参数结构体
2981
+ * DisableTopicRule请求参数结构体
2171
2982
  */
2172
- export interface GetLoRaGatewayListResponse {
2173
- /**
2174
- * 返回总数
2175
- */
2176
- Total?: number;
2177
- /**
2178
- * 返回详情项
2179
- 注意:此字段可能返回 null,表示取不到有效值。
2180
- */
2181
- Gateways?: Array<LoRaGatewayItem>;
2983
+ export interface DisableTopicRuleRequest {
2182
2984
  /**
2183
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2985
+ * 规则名称
2184
2986
  */
2185
- RequestId?: string;
2987
+ RuleName: string;
2186
2988
  }
2187
2989
  /**
2188
2990
  * CreateTopicRule返回参数结构体
@@ -2219,6 +3021,23 @@ export interface CreateTopicRuleRequest {
2219
3021
  */
2220
3022
  TopicRulePayload: TopicRulePayload;
2221
3023
  }
3024
+ /**
3025
+ * 围栏详细信息(包含创建时间及更新时间)
3026
+ */
3027
+ export interface PositionFenceInfo {
3028
+ /**
3029
+ * 围栏信息
3030
+ */
3031
+ GeoFence: PositionFenceItem;
3032
+ /**
3033
+ * 围栏创建时间
3034
+ */
3035
+ CreateTime: number;
3036
+ /**
3037
+ * 围栏更新时间
3038
+ */
3039
+ UpdateTime: number;
3040
+ }
2222
3041
  /**
2223
3042
  * DeleteDevice返回参数结构体
2224
3043
  */
@@ -2426,3 +3245,32 @@ export interface DescribeFirmwareTaskRequest {
2426
3245
  */
2427
3246
  TaskId: number;
2428
3247
  }
3248
+ /**
3249
+ * CreatePositionSpace请求参数结构体
3250
+ */
3251
+ export interface CreatePositionSpaceRequest {
3252
+ /**
3253
+ * 项目ID
3254
+ */
3255
+ ProjectId: string;
3256
+ /**
3257
+ * 空间名称
3258
+ */
3259
+ SpaceName: string;
3260
+ /**
3261
+ * 授权类型,0:只读 1:读写
3262
+ */
3263
+ AuthorizeType: number;
3264
+ /**
3265
+ * 产品列表
3266
+ */
3267
+ ProductIdList: Array<string>;
3268
+ /**
3269
+ * 描述
3270
+ */
3271
+ Description?: string;
3272
+ /**
3273
+ * 缩略图
3274
+ */
3275
+ Icon?: string;
3276
+ }