tencentcloud-sdk-nodejs-iotexplorer 4.0.813 → 4.0.823

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.
@@ -35,6 +35,43 @@ export interface UpdateDevicesEnableStateResponse {
35
35
  RequestId?: string
36
36
  }
37
37
 
38
+ /**
39
+ * DescribeCloudStorageDate请求参数结构体
40
+ */
41
+ export interface DescribeCloudStorageDateRequest {
42
+ /**
43
+ * 产品ID
44
+ */
45
+ ProductId: string
46
+ /**
47
+ * 设备名称
48
+ */
49
+ DeviceName: string
50
+ /**
51
+ * 用户ID
52
+ */
53
+ UserId?: string
54
+ /**
55
+ * 通道ID
56
+ */
57
+ ChannelId?: number
58
+ }
59
+
60
+ /**
61
+ * 云存时间轴接口返回数据
62
+ */
63
+ export interface CloudStorageTimeData {
64
+ /**
65
+ * 云存时间轴信息列表
66
+ */
67
+ TimeList?: Array<CloudStorageTimeInfo>
68
+ /**
69
+ * 播放地址
70
+ 注意:此字段可能返回 null,表示取不到有效值。
71
+ */
72
+ VideoURL?: string
73
+ }
74
+
38
75
  /**
39
76
  * DescribeDeviceLocationSolve请求参数结构体
40
77
  */
@@ -71,6 +108,90 @@ export interface DeleteProjectRequest {
71
108
  ProjectId: string
72
109
  }
73
110
 
111
+ /**
112
+ * ListEventHistory返回参数结构体
113
+ */
114
+ export interface ListEventHistoryResponse {
115
+ /**
116
+ * 搜索上下文, 用作查询游标
117
+ 注意:此字段可能返回 null,表示取不到有效值。
118
+ */
119
+ Context: string
120
+ /**
121
+ * 搜索结果数量
122
+ 注意:此字段可能返回 null,表示取不到有效值。
123
+ */
124
+ Total: number
125
+ /**
126
+ * 搜索结果是否已经结束
127
+ 注意:此字段可能返回 null,表示取不到有效值。
128
+ */
129
+ Listover: boolean
130
+ /**
131
+ * 搜集结果集
132
+ 注意:此字段可能返回 null,表示取不到有效值。
133
+ */
134
+ EventHistory: Array<EventHistoryItem>
135
+ /**
136
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
137
+ */
138
+ RequestId?: string
139
+ }
140
+
141
+ /**
142
+ * ModifyLoRaGateway请求参数结构体
143
+ */
144
+ export interface ModifyLoRaGatewayRequest {
145
+ /**
146
+ * 描述信息
147
+ */
148
+ Description: string
149
+ /**
150
+ * LoRa网关Id
151
+ */
152
+ GatewayId: string
153
+ /**
154
+ * LoRa网关位置坐标
155
+ */
156
+ Location: LoRaGatewayLocation
157
+ /**
158
+ * LoRa网关名称
159
+ */
160
+ Name: string
161
+ /**
162
+ * 是否公开可见
163
+ */
164
+ IsPublic?: boolean
165
+ /**
166
+ * 位置信息
167
+ */
168
+ Position?: string
169
+ /**
170
+ * 位置详情
171
+ */
172
+ PositionDetails?: string
173
+ /**
174
+ * 频点ID
175
+ */
176
+ FrequencyId?: string
177
+ }
178
+
179
+ /**
180
+ * 缩略图信息
181
+ */
182
+ export interface ThumbnailURLInfoList {
183
+ /**
184
+ * 缩略图访问地址
185
+ 注意:此字段可能返回 null,表示取不到有效值。
186
+ */
187
+ ThumbnailURL?: string
188
+ /**
189
+ * 缩略图访问地址的过期时间
190
+ 注意:此字段可能返回 null,表示取不到有效值。
191
+ */
192
+ ExpireTime?: number
193
+ }
194
+
74
195
  /**
75
196
  * ProductId -> DeviceName
76
197
  */
@@ -135,6 +256,28 @@ export interface UnbindDevicesRequest {
135
256
  DeviceNames: Array<string>
136
257
  }
137
258
 
259
+ /**
260
+ * PublishBroadcastMessage请求参数结构体
261
+ */
262
+ export interface PublishBroadcastMessageRequest {
263
+ /**
264
+ * 产品ID
265
+ */
266
+ ProductId: string
267
+ /**
268
+ * 消息内容
269
+ */
270
+ Payload: string
271
+ /**
272
+ * 消息质量等级
273
+ */
274
+ Qos: number
275
+ /**
276
+ * ayload内容的编码格式,取值为base64或空。base64表示云端将收到的请求数据进行base64解码后下发到设备,空则直接将原始内容下发到设备
277
+ */
278
+ PayloadEncoding?: string
279
+ }
280
+
138
281
  /**
139
282
  * DeleteDevices返回参数结构体
140
283
  */
@@ -156,13 +299,23 @@ export interface DeleteDevicesResponse {
156
299
  }
157
300
 
158
301
  /**
159
- * ModifyStudioProduct返回参数结构体
302
+ * DeleteCloudStorageEvent返回参数结构体
160
303
  */
161
- export interface ModifyStudioProductResponse {
304
+ export interface DeleteCloudStorageEventResponse {
162
305
  /**
163
- * 产品描述
306
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
164
307
  */
165
- Product?: ProductEntry
308
+ RequestId?: string
309
+ }
310
+
311
+ /**
312
+ * DescribeCloudStorageTime返回参数结构体
313
+ */
314
+ export interface DescribeCloudStorageTimeResponse {
315
+ /**
316
+ * 接口返回数据
317
+ */
318
+ Data?: CloudStorageTimeData
166
319
  /**
167
320
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
168
321
  */
@@ -189,6 +342,24 @@ export interface GetGatewaySubDeviceListResponse {
189
342
  RequestId?: string
190
343
  }
191
344
 
345
+ /**
346
+ * DescribeCloudStorageThumbnailList请求参数结构体
347
+ */
348
+ export interface DescribeCloudStorageThumbnailListRequest {
349
+ /**
350
+ * 产品ID
351
+ */
352
+ ProductId: string
353
+ /**
354
+ * 设备名称
355
+ */
356
+ DeviceName: string
357
+ /**
358
+ * 缩略图文件名列表
359
+ */
360
+ ThumbnailList: Array<string>
361
+ }
362
+
192
363
  /**
193
364
  * DeleteStudioProduct返回参数结构体
194
365
  */
@@ -222,21 +393,33 @@ export interface BindDevicesRequest {
222
393
  }
223
394
 
224
395
  /**
225
- * DescribeGatewaySubProducts返回参数结构体
396
+ * DescribeDevicePackages请求参数结构体
226
397
  */
227
- export interface DescribeGatewaySubProductsResponse {
398
+ export interface DescribeDevicePackagesRequest {
228
399
  /**
229
- * 当前分页的可绑定或解绑的产品信息。
400
+ * 产品ID
230
401
  */
231
- Products: Array<BindProductInfo>
402
+ ProductId: string
232
403
  /**
233
- * 可绑定或解绑的产品总数
404
+ * 设备名称
234
405
  */
235
- Total: number
406
+ DeviceName: string
236
407
  /**
237
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
408
+ * 分页拉取数量
238
409
  */
239
- RequestId?: string
410
+ Limit: number
411
+ /**
412
+ * 分页拉取偏移
413
+ */
414
+ Offset: number
415
+ /**
416
+ * 用户id
417
+ */
418
+ CSUserId?: string
419
+ /**
420
+ * 通道id
421
+ */
422
+ ChannelId?: number
240
423
  }
241
424
 
242
425
  /**
@@ -259,6 +442,24 @@ export interface GetDeviceListResponse {
259
442
  RequestId?: string
260
443
  }
261
444
 
445
+ /**
446
+ * GenerateSignedVideoURL请求参数结构体
447
+ */
448
+ export interface GenerateSignedVideoURLRequest {
449
+ /**
450
+ * 视频播放原始URL地址
451
+ */
452
+ VideoURL: string
453
+ /**
454
+ * 播放链接过期时间
455
+ */
456
+ ExpireTime: number
457
+ /**
458
+ * 通道ID 非NVR设备不填 NVR设备必填 默认为无
459
+ */
460
+ ChannelId?: number
461
+ }
462
+
262
463
  /**
263
464
  * TopicRulePayload结构
264
465
  */
@@ -340,17 +541,13 @@ export interface DeleteLoRaFrequencyResponse {
340
541
  }
341
542
 
342
543
  /**
343
- * DescribeTopicPolicy请求参数结构体
544
+ * DescribeCloudStoragePackageConsumeDetails返回参数结构体
344
545
  */
345
- export interface DescribeTopicPolicyRequest {
546
+ export interface DescribeCloudStoragePackageConsumeDetailsResponse {
346
547
  /**
347
- * 产品ID
348
- */
349
- ProductId: string
350
- /**
351
- * Topic名字
548
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
352
549
  */
353
- TopicName: string
550
+ RequestId?: string
354
551
  }
355
552
 
356
553
  /**
@@ -472,17 +669,35 @@ export interface PositionItem {
472
669
  }
473
670
 
474
671
  /**
475
- * ModifyModelDefinition请求参数结构体
672
+ * InheritCloudStorageUser请求参数结构体
476
673
  */
477
- export interface ModifyModelDefinitionRequest {
674
+ export interface InheritCloudStorageUserRequest {
478
675
  /**
479
676
  * 产品ID
480
677
  */
481
678
  ProductId: string
482
679
  /**
483
- * 数据模板定义
680
+ * 设备名称
484
681
  */
485
- ModelSchema: string
682
+ DeviceName: string
683
+ /**
684
+ * 原始用户ID
685
+ */
686
+ UserId: string
687
+ /**
688
+ * 目标用户ID
689
+ */
690
+ ToUserId: string
691
+ }
692
+
693
+ /**
694
+ * TransferCloudStorage返回参数结构体
695
+ */
696
+ export interface TransferCloudStorageResponse {
697
+ /**
698
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
699
+ */
700
+ RequestId?: string
486
701
  }
487
702
 
488
703
  /**
@@ -539,6 +754,26 @@ export interface ProductDevicesPositionItem {
539
754
  Total: number
540
755
  }
541
756
 
757
+ /**
758
+ * GetProjectList返回参数结构体
759
+ */
760
+ export interface GetProjectListResponse {
761
+ /**
762
+ * 项目列表
763
+ 注意:此字段可能返回 null,表示取不到有效值。
764
+ */
765
+ Projects?: Array<ProjectEntryEx>
766
+ /**
767
+ * 列表项个数
768
+ 注意:此字段可能返回 null,表示取不到有效值。
769
+ */
770
+ Total?: number
771
+ /**
772
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
773
+ */
774
+ RequestId?: string
775
+ }
776
+
542
777
  /**
543
778
  * DescribeDevicePositionList请求参数结构体
544
779
  */
@@ -706,13 +941,13 @@ export interface ProductModelDefinition {
706
941
  }
707
942
 
708
943
  /**
709
- * ModifyFenceBind返回参数结构体
944
+ * DisableTopicRule请求参数结构体
710
945
  */
711
- export interface ModifyFenceBindResponse {
946
+ export interface DisableTopicRuleRequest {
712
947
  /**
713
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
948
+ * 规则名称
714
949
  */
715
- RequestId?: string
950
+ RuleName: string
716
951
  }
717
952
 
718
953
  /**
@@ -760,67 +995,71 @@ export interface DeletePositionFenceResponse {
760
995
  }
761
996
 
762
997
  /**
763
- * 围栏告警位置点
998
+ * ModifyLoRaFrequency请求参数结构体
764
999
  */
765
- export interface FenceAlarmPoint {
1000
+ export interface ModifyLoRaFrequencyRequest {
766
1001
  /**
767
- * 围栏告警时间
1002
+ * 频点唯一ID
768
1003
  */
769
- AlarmTime: number
1004
+ FreqId?: string
770
1005
  /**
771
- * 围栏告警位置的经度
1006
+ * 频点名称
772
1007
  */
773
- Longitude: number
1008
+ FreqName?: string
774
1009
  /**
775
- * 围栏告警位置的纬度
1010
+ * 频点描述
776
1011
  */
777
- Latitude: number
778
- }
779
-
780
- /**
781
- * UploadFirmware请求参数结构体
782
- */
783
- export interface UploadFirmwareRequest {
1012
+ Description?: string
784
1013
  /**
785
- * 产品ID
1014
+ * 数据上行信道
786
1015
  */
787
- ProductID: string
1016
+ ChannelsDataUp?: Array<number | bigint>
788
1017
  /**
789
- * 固件版本号
1018
+ * 数据下行信道RX1
790
1019
  */
791
- FirmwareVersion: string
1020
+ ChannelsDataRX1?: Array<number | bigint>
792
1021
  /**
793
- * 固件的MD5值
1022
+ * 数据下行信道RX2
794
1023
  */
795
- Md5sum: string
1024
+ ChannelsDataRX2?: Array<number | bigint>
796
1025
  /**
797
- * 固件的大小
1026
+ * 入网上行信道
798
1027
  */
799
- FileSize: number
1028
+ ChannelsJoinUp?: Array<number | bigint>
800
1029
  /**
801
- * 固件名称
1030
+ * 入网下行信道RX1
802
1031
  */
803
- FirmwareName?: string
1032
+ ChannelsJoinRX1?: Array<number | bigint>
804
1033
  /**
805
- * 固件描述
1034
+ * 入网下行信道RX2
806
1035
  */
807
- FirmwareDescription?: string
1036
+ ChannelsJoinRX2?: Array<number | bigint>
1037
+ }
1038
+
1039
+ /**
1040
+ * 围栏告警位置点
1041
+ */
1042
+ export interface FenceAlarmPoint {
808
1043
  /**
809
- * 固件升级模块;可选值 mcu|moudule
1044
+ * 围栏告警时间
810
1045
  */
811
- FwType?: string
1046
+ AlarmTime: number
812
1047
  /**
813
- * 固件用户自定义配置信息
1048
+ * 围栏告警位置的经度
814
1049
  */
815
- FirmwareUserDefined?: string
1050
+ Longitude: number
1051
+ /**
1052
+ * 围栏告警位置的纬度
1053
+ */
1054
+ Latitude: number
816
1055
  }
817
1056
 
818
1057
  /**
819
- * ListEventHistory请求参数结构体
1058
+ * 子设备详情
820
1059
  */
821
- export interface ListEventHistoryRequest {
1060
+ export interface FamilySubDevice {
822
1061
  /**
823
- * 产品ID
1062
+ * 产品Id
824
1063
  */
825
1064
  ProductId: string
826
1065
  /**
@@ -828,29 +1067,125 @@ export interface ListEventHistoryRequest {
828
1067
  */
829
1068
  DeviceName: string
830
1069
  /**
831
- * 搜索的事件类型:alert 表示告警,fault 表示故障,info 表示信息,为空则表示查询上述所有类型事件
1070
+ * 设备ID
832
1071
  */
833
- Type?: string
1072
+ DeviceId: string
834
1073
  /**
835
- * 起始时间(Unix 时间戳,秒级), 为0 表示 当前时间 - 24h
1074
+ * 设备别名
1075
+ 注意:此字段可能返回 null,表示取不到有效值。
836
1076
  */
837
- StartTime?: number
1077
+ AliasName: string
838
1078
  /**
839
- * 结束时间(Unix 时间戳,秒级), 为0 表示当前时间
1079
+ * 设备绑定的家庭ID
840
1080
  */
841
- EndTime?: number
1081
+ FamilyId: string
842
1082
  /**
843
- * 搜索上下文, 用作查询游标
1083
+ * 设备所在的房间ID,默认"0"
1084
+ 注意:此字段可能返回 null,表示取不到有效值。
844
1085
  */
845
- Context?: string
1086
+ RoomId: string
846
1087
  /**
847
- * 单次获取的历史数据项目的最大数量, 缺省10
1088
+ * 图标
1089
+ 注意:此字段可能返回 null,表示取不到有效值。
848
1090
  */
849
- Size?: number
1091
+ IconUrl: string
850
1092
  /**
851
- * 事件标识符,可以用来指定查询特定的事件,如果不指定,则查询所有事件。
1093
+ * grid图标
1094
+ 注意:此字段可能返回 null,表示取不到有效值。
852
1095
  */
853
- EventId?: string
1096
+ IconUrlGrid: string
1097
+ /**
1098
+ * 设备绑定时间戳
1099
+ */
1100
+ CreateTime: number
1101
+ /**
1102
+ * 设备更新时间戳
1103
+ */
1104
+ UpdateTime: number
1105
+ }
1106
+
1107
+ /**
1108
+ * DescribeCloudStoragePackageConsumeStats返回参数结构体
1109
+ */
1110
+ export interface DescribeCloudStoragePackageConsumeStatsResponse {
1111
+ /**
1112
+ * 统计列表详情
1113
+ */
1114
+ Stats?: Array<PackageConsumeStat>
1115
+ /**
1116
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1117
+ */
1118
+ RequestId?: string
1119
+ }
1120
+
1121
+ /**
1122
+ * 结构体(PackageInfo)记录了设备拥有的有效套餐信息,包括云存开启状态、云存类型、云存回看时长、云存套餐过期时间
1123
+ */
1124
+ export interface PackageInfo {
1125
+ /**
1126
+ * 云存开启状态,0为未开启,2为正在生效,1为已过期
1127
+ 注:这里只返回状态为0的数据
1128
+ */
1129
+ Status?: number
1130
+ /**
1131
+ * 云存类型,1为全时云存,2为事件云存
1132
+ */
1133
+ CSType?: number
1134
+ /**
1135
+ * 云存回看时长
1136
+ */
1137
+ CSShiftDuration?: number
1138
+ /**
1139
+ * 云存套餐过期时间
1140
+ */
1141
+ CSExpiredTime?: number
1142
+ /**
1143
+ * 云存套餐创建时间
1144
+ 注意:此字段可能返回 null,表示取不到有效值。
1145
+ */
1146
+ CreatedAt?: number
1147
+ /**
1148
+ * 云存套餐更新时间
1149
+ 注意:此字段可能返回 null,表示取不到有效值。
1150
+ */
1151
+ UpdatedAt?: number
1152
+ /**
1153
+ * 套餐id
1154
+ 注意:此字段可能返回 null,表示取不到有效值。
1155
+ */
1156
+ PackageId?: string
1157
+ /**
1158
+ * 订单id
1159
+ 注意:此字段可能返回 null,表示取不到有效值。
1160
+ */
1161
+ OrderId?: string
1162
+ /**
1163
+ * 通道id
1164
+ */
1165
+ ChannelId?: number
1166
+ /**
1167
+ * 用户id
1168
+ 注意:此字段可能返回 null,表示取不到有效值。
1169
+ */
1170
+ CSUserId?: string
1171
+ }
1172
+
1173
+ /**
1174
+ * DescribeCloudStorageUsers返回参数结构体
1175
+ */
1176
+ export interface DescribeCloudStorageUsersResponse {
1177
+ /**
1178
+ * 用户总数
1179
+ */
1180
+ TotalCount?: number
1181
+ /**
1182
+ * 用户信息
1183
+ */
1184
+ Users?: Array<CloudStorageUserInfo>
1185
+ /**
1186
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1187
+ */
1188
+ RequestId?: string
854
1189
  }
855
1190
 
856
1191
  /**
@@ -896,21 +1231,45 @@ export interface FenceBindProductItem {
896
1231
  }
897
1232
 
898
1233
  /**
899
- * PublishRRPCMessage请求参数结构体
1234
+ * GetDeviceSumStatistics返回参数结构体
900
1235
  */
901
- export interface PublishRRPCMessageRequest {
1236
+ export interface GetDeviceSumStatisticsResponse {
902
1237
  /**
903
- * 产品ID
1238
+ * 激活设备总数
904
1239
  */
905
- ProductId: string
1240
+ ActivationCount?: number
906
1241
  /**
907
- * 设备名称
1242
+ * 在线设备总数
908
1243
  */
909
- DeviceName: string
1244
+ OnlineCount?: number
910
1245
  /**
911
- * 消息内容,utf8编码
1246
+ * 前一天激活设备数
912
1247
  */
913
- Payload: string
1248
+ ActivationBeforeDay?: number
1249
+ /**
1250
+ * 前一天活跃设备数
1251
+ */
1252
+ ActiveBeforeDay?: number
1253
+ /**
1254
+ * 前一周激活设备数
1255
+ */
1256
+ ActivationWeekDayCount?: number
1257
+ /**
1258
+ * 前一周活跃设备数
1259
+ */
1260
+ ActiveWeekDayCount?: number
1261
+ /**
1262
+ * 上一周激活设备数
1263
+ */
1264
+ ActivationBeforeWeekDayCount?: number
1265
+ /**
1266
+ * 上一周活跃设备数
1267
+ */
1268
+ ActiveBeforeWeekDayCount?: number
1269
+ /**
1270
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1271
+ */
1272
+ RequestId?: string
914
1273
  }
915
1274
 
916
1275
  /**
@@ -990,31 +1349,31 @@ export interface DescribePositionFenceListResponse {
990
1349
  }
991
1350
 
992
1351
  /**
993
- * GenSingleDeviceSignatureOfPublic返回参数结构体
1352
+ * DescribeCloudStorageMultiThumbnail请求参数结构体
994
1353
  */
995
- export interface GenSingleDeviceSignatureOfPublicResponse {
1354
+ export interface DescribeCloudStorageMultiThumbnailRequest {
996
1355
  /**
997
- * 设备签名
1356
+ * 产品ID
998
1357
  */
999
- DeviceSignature: DeviceSignatureInfo
1358
+ ProductId: string
1000
1359
  /**
1001
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1360
+ * 设备名称
1002
1361
  */
1003
- RequestId?: string
1362
+ DeviceName: string
1363
+ /**
1364
+ * 多个缩略图文件名根据 | 分割
1365
+ */
1366
+ MultiThumbnail: string
1004
1367
  }
1005
1368
 
1006
1369
  /**
1007
- * DescribeDevicePositionList返回参数结构体
1370
+ * GenSingleDeviceSignatureOfPublic返回参数结构体
1008
1371
  */
1009
- export interface DescribeDevicePositionListResponse {
1010
- /**
1011
- * 产品设备位置信息列表
1012
- */
1013
- Positions: Array<ProductDevicesPositionItem>
1372
+ export interface GenSingleDeviceSignatureOfPublicResponse {
1014
1373
  /**
1015
- * 产品设备位置信息的数目
1374
+ * 设备签名
1016
1375
  */
1017
- Total: number
1376
+ DeviceSignature: DeviceSignatureInfo
1018
1377
  /**
1019
1378
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1020
1379
  */
@@ -1022,23 +1381,27 @@ export interface DescribeDevicePositionListResponse {
1022
1381
  }
1023
1382
 
1024
1383
  /**
1025
- * GetProjectList返回参数结构体
1384
+ * DeletePositionSpace请求参数结构体
1026
1385
  */
1027
- export interface GetProjectListResponse {
1386
+ export interface DeletePositionSpaceRequest {
1028
1387
  /**
1029
- * 项目列表
1030
- 注意:此字段可能返回 null,表示取不到有效值。
1388
+ * 位置空间Id
1031
1389
  */
1032
- Projects?: Array<ProjectEntryEx>
1390
+ SpaceId: string
1391
+ }
1392
+
1393
+ /**
1394
+ * DescribePackageConsumeTasks请求参数结构体
1395
+ */
1396
+ export interface DescribePackageConsumeTasksRequest {
1033
1397
  /**
1034
- * 列表项个数
1035
- 注意:此字段可能返回 null,表示取不到有效值。
1398
+ * 分页单页量
1036
1399
  */
1037
- Total?: number
1400
+ Limit: number
1038
1401
  /**
1039
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1402
+ * 分页的偏移量,第一页为0
1040
1403
  */
1041
- RequestId?: string
1404
+ Offset: number
1042
1405
  }
1043
1406
 
1044
1407
  /**
@@ -1224,6 +1587,16 @@ export interface BindDeviceInfo {
1224
1587
  DeviceName: string
1225
1588
  }
1226
1589
 
1590
+ /**
1591
+ * DescribeCloudStorageOrder请求参数结构体
1592
+ */
1593
+ export interface DescribeCloudStorageOrderRequest {
1594
+ /**
1595
+ * 订单id
1596
+ */
1597
+ OrderId: string
1598
+ }
1599
+
1227
1600
  /**
1228
1601
  * ModifyProject请求参数结构体
1229
1602
  */
@@ -1276,6 +1649,24 @@ export interface DescribeBatchProductionResponse {
1276
1649
  RequestId?: string
1277
1650
  }
1278
1651
 
1652
+ /**
1653
+ * PublishRRPCMessage请求参数结构体
1654
+ */
1655
+ export interface PublishRRPCMessageRequest {
1656
+ /**
1657
+ * 产品ID
1658
+ */
1659
+ ProductId: string
1660
+ /**
1661
+ * 设备名称
1662
+ */
1663
+ DeviceName: string
1664
+ /**
1665
+ * 消息内容,utf8编码
1666
+ */
1667
+ Payload: string
1668
+ }
1669
+
1279
1670
  /**
1280
1671
  * ListTopicPolicy请求参数结构体
1281
1672
  */
@@ -1340,6 +1731,20 @@ export interface DeleteLoRaFrequencyRequest {
1340
1731
  FreqId?: string
1341
1732
  }
1342
1733
 
1734
+ /**
1735
+ * ModifyStudioProduct返回参数结构体
1736
+ */
1737
+ export interface ModifyStudioProductResponse {
1738
+ /**
1739
+ * 产品描述
1740
+ */
1741
+ Product?: ProductEntry
1742
+ /**
1743
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1744
+ */
1745
+ RequestId?: string
1746
+ }
1747
+
1343
1748
  /**
1344
1749
  * ControlDeviceData请求参数结构体
1345
1750
  */
@@ -1418,21 +1823,21 @@ export interface DescribeSpaceFenceEventListResponse {
1418
1823
  }
1419
1824
 
1420
1825
  /**
1421
- * 围栏详细信息(包含创建时间及更新时间)
1826
+ * DescribePackageConsumeTasks返回参数结构体
1422
1827
  */
1423
- export interface PositionFenceInfo {
1828
+ export interface DescribePackageConsumeTasksResponse {
1424
1829
  /**
1425
- * 围栏信息
1830
+ * 总数
1426
1831
  */
1427
- GeoFence: PositionFenceItem
1832
+ TotalCount?: number
1428
1833
  /**
1429
- * 围栏创建时间
1834
+ * 任务列表
1430
1835
  */
1431
- CreateTime: number
1836
+ List?: Array<PackageConsumeTask>
1432
1837
  /**
1433
- * 围栏更新时间
1838
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1434
1839
  */
1435
- UpdateTime: number
1840
+ RequestId?: string
1436
1841
  }
1437
1842
 
1438
1843
  /**
@@ -1559,6 +1964,24 @@ export interface ModifyTopicPolicyResponse {
1559
1964
  RequestId?: string
1560
1965
  }
1561
1966
 
1967
+ /**
1968
+ * DescribeCloudStorageStreamData返回参数结构体
1969
+ */
1970
+ export interface DescribeCloudStorageStreamDataResponse {
1971
+ /**
1972
+ * 图片流视频地址
1973
+ */
1974
+ VideoStream?: string
1975
+ /**
1976
+ * 图片流音频地址
1977
+ */
1978
+ AudioStream?: string
1979
+ /**
1980
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1981
+ */
1982
+ RequestId?: string
1983
+ }
1984
+
1562
1985
  /**
1563
1986
  * GetPositionSpaceList请求参数结构体
1564
1987
  */
@@ -1743,6 +2166,24 @@ export interface UpdateDevicesEnableStateRequest {
1743
2166
  Status: number
1744
2167
  }
1745
2168
 
2169
+ /**
2170
+ * BindCloudStorageUser请求参数结构体
2171
+ */
2172
+ export interface BindCloudStorageUserRequest {
2173
+ /**
2174
+ * 产品ID
2175
+ */
2176
+ ProductId: string
2177
+ /**
2178
+ * 设备名称
2179
+ */
2180
+ DeviceName: string
2181
+ /**
2182
+ * 用户ID
2183
+ */
2184
+ UserId: string
2185
+ }
2186
+
1746
2187
  /**
1747
2188
  * DescribeTopicRule请求参数结构体
1748
2189
  */
@@ -1971,13 +2412,31 @@ export interface CreateDeviceRequest {
1971
2412
  }
1972
2413
 
1973
2414
  /**
1974
- * DeletePositionSpace请求参数结构体
2415
+ * DescribeDevicePositionList返回参数结构体
1975
2416
  */
1976
- export interface DeletePositionSpaceRequest {
2417
+ export interface DescribeDevicePositionListResponse {
1977
2418
  /**
1978
- * 位置空间Id
2419
+ * 产品设备位置信息列表
1979
2420
  */
1980
- SpaceId: string
2421
+ Positions: Array<ProductDevicesPositionItem>
2422
+ /**
2423
+ * 产品设备位置信息的数目
2424
+ */
2425
+ Total: number
2426
+ /**
2427
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2428
+ */
2429
+ RequestId?: string
2430
+ }
2431
+
2432
+ /**
2433
+ * InheritCloudStorageUser返回参数结构体
2434
+ */
2435
+ export interface InheritCloudStorageUserResponse {
2436
+ /**
2437
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2438
+ */
2439
+ RequestId?: string
1981
2440
  }
1982
2441
 
1983
2442
  /**
@@ -2104,15 +2563,29 @@ export interface FirmwareInfo {
2104
2563
  */
2105
2564
  FwType: string
2106
2565
  /**
2107
- * 创建者子 uin
2108
- 注意:此字段可能返回 null,表示取不到有效值。
2566
+ * 创建者子 uin
2567
+ 注意:此字段可能返回 null,表示取不到有效值。
2568
+ */
2569
+ CreateUserId: number
2570
+ /**
2571
+ * 创建者昵称
2572
+ 注意:此字段可能返回 null,表示取不到有效值。
2573
+ */
2574
+ CreatorNickName: string
2575
+ }
2576
+
2577
+ /**
2578
+ * DescribeTopicPolicy请求参数结构体
2579
+ */
2580
+ export interface DescribeTopicPolicyRequest {
2581
+ /**
2582
+ * 产品ID
2109
2583
  */
2110
- CreateUserId: number
2584
+ ProductId: string
2111
2585
  /**
2112
- * 创建者昵称
2113
- 注意:此字段可能返回 null,表示取不到有效值。
2586
+ * Topic名字
2114
2587
  */
2115
- CreatorNickName: string
2588
+ TopicName: string
2116
2589
  }
2117
2590
 
2118
2591
  /**
@@ -2147,6 +2620,24 @@ export interface TopicRuleInfo {
2147
2620
  RuleDisabled: boolean
2148
2621
  }
2149
2622
 
2623
+ /**
2624
+ * 围栏详细信息(包含创建时间及更新时间)
2625
+ */
2626
+ export interface PositionFenceInfo {
2627
+ /**
2628
+ * 围栏信息
2629
+ */
2630
+ GeoFence: PositionFenceItem
2631
+ /**
2632
+ * 围栏创建时间
2633
+ */
2634
+ CreateTime: number
2635
+ /**
2636
+ * 围栏更新时间
2637
+ */
2638
+ UpdateTime: number
2639
+ }
2640
+
2150
2641
  /**
2151
2642
  * DescribeDeviceLocationSolve返回参数结构体
2152
2643
  */
@@ -2202,6 +2693,30 @@ export interface CreateFenceBindRequest {
2202
2693
  Items: Array<FenceBindProductItem>
2203
2694
  }
2204
2695
 
2696
+ /**
2697
+ * CreateIotVideoCloudStorage返回参数结构体
2698
+ */
2699
+ export interface CreateIotVideoCloudStorageResponse {
2700
+ /**
2701
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2702
+ */
2703
+ RequestId?: string
2704
+ }
2705
+
2706
+ /**
2707
+ * DescribePackageConsumeTask返回参数结构体
2708
+ */
2709
+ export interface DescribePackageConsumeTaskResponse {
2710
+ /**
2711
+ * 文件下载的url,文件详情是套餐包消耗详情
2712
+ */
2713
+ URL?: string
2714
+ /**
2715
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2716
+ */
2717
+ RequestId?: string
2718
+ }
2719
+
2205
2720
  /**
2206
2721
  * DescribeDevice返回参数结构体
2207
2722
  */
@@ -2217,25 +2732,45 @@ export interface DescribeDeviceResponse {
2217
2732
  }
2218
2733
 
2219
2734
  /**
2220
- * PublishBroadcastMessage请求参数结构体
2735
+ * DescribeCloudStorageEvents请求参数结构体
2221
2736
  */
2222
- export interface PublishBroadcastMessageRequest {
2737
+ export interface DescribeCloudStorageEventsRequest {
2223
2738
  /**
2224
2739
  * 产品ID
2225
2740
  */
2226
2741
  ProductId: string
2227
2742
  /**
2228
- * 消息内容
2743
+ * 设备名称
2229
2744
  */
2230
- Payload: string
2745
+ DeviceName: string
2231
2746
  /**
2232
- * 消息质量等级
2747
+ * 起始时间(Unix 时间戳,秒级), 为0 表示 当前时间 - 24h
2233
2748
  */
2234
- Qos: number
2749
+ StartTime?: number
2235
2750
  /**
2236
- * ayload内容的编码格式,取值为base64或空。base64表示云端将收到的请求数据进行base64解码后下发到设备,空则直接将原始内容下发到设备
2751
+ * 结束时间(Unix 时间戳,秒级), 为0 表示当前时间
2237
2752
  */
2238
- PayloadEncoding?: string
2753
+ EndTime?: number
2754
+ /**
2755
+ * 请求上下文, 用作查询游标
2756
+ */
2757
+ Context?: string
2758
+ /**
2759
+ * 查询数据项目的最大数量, 默认为10。假设传Size=10,返回的实际事件数量为N,则 5 <= N <= 10。
2760
+ */
2761
+ Size?: number
2762
+ /**
2763
+ * 事件标识符,可以用来指定查询特定的事件,如果不指定,则查询所有事件。
2764
+ */
2765
+ EventId?: string
2766
+ /**
2767
+ * 用户ID
2768
+ */
2769
+ UserId?: string
2770
+ /**
2771
+ * 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
2772
+ */
2773
+ ChannelId?: number
2239
2774
  }
2240
2775
 
2241
2776
  /**
@@ -2309,67 +2844,69 @@ export interface PublishMessageRequest {
2309
2844
  }
2310
2845
 
2311
2846
  /**
2312
- * 子设备详情
2847
+ * DescribeCloudStorageMultiThumbnail返回参数结构体
2313
2848
  */
2314
- export interface FamilySubDevice {
2849
+ export interface DescribeCloudStorageMultiThumbnailResponse {
2315
2850
  /**
2316
- * 产品Id
2851
+ * 缩略图访问地址
2317
2852
  */
2318
- ProductId: string
2853
+ ThumbnailURLInfoList?: Array<ThumbnailURLInfoList>
2319
2854
  /**
2320
- * 设备名称
2855
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2321
2856
  */
2322
- DeviceName: string
2857
+ RequestId?: string
2858
+ }
2859
+
2860
+ /**
2861
+ * ModifyTopicRule请求参数结构体
2862
+ */
2863
+ export interface ModifyTopicRuleRequest {
2323
2864
  /**
2324
- * 设备ID
2865
+ * 规则名称
2325
2866
  */
2326
- DeviceId: string
2867
+ RuleName: string
2327
2868
  /**
2328
- * 设备别名
2329
- 注意:此字段可能返回 null,表示取不到有效值。
2869
+ * 替换的规则包体
2330
2870
  */
2331
- AliasName: string
2871
+ TopicRulePayload: TopicRulePayload
2872
+ }
2873
+
2874
+ /**
2875
+ * UploadFirmware请求参数结构体
2876
+ */
2877
+ export interface UploadFirmwareRequest {
2332
2878
  /**
2333
- * 设备绑定的家庭ID
2879
+ * 产品ID
2334
2880
  */
2335
- FamilyId: string
2881
+ ProductID: string
2336
2882
  /**
2337
- * 设备所在的房间ID,默认"0"
2338
- 注意:此字段可能返回 null,表示取不到有效值。
2883
+ * 固件版本号
2339
2884
  */
2340
- RoomId: string
2885
+ FirmwareVersion: string
2341
2886
  /**
2342
- * 图标
2343
- 注意:此字段可能返回 null,表示取不到有效值。
2887
+ * 固件的MD5值
2344
2888
  */
2345
- IconUrl: string
2889
+ Md5sum: string
2346
2890
  /**
2347
- * grid图标
2348
- 注意:此字段可能返回 null,表示取不到有效值。
2891
+ * 固件的大小
2349
2892
  */
2350
- IconUrlGrid: string
2893
+ FileSize: number
2351
2894
  /**
2352
- * 设备绑定时间戳
2895
+ * 固件名称
2353
2896
  */
2354
- CreateTime: number
2897
+ FirmwareName?: string
2355
2898
  /**
2356
- * 设备更新时间戳
2899
+ * 固件描述
2357
2900
  */
2358
- UpdateTime: number
2359
- }
2360
-
2361
- /**
2362
- * ModifyTopicRule请求参数结构体
2363
- */
2364
- export interface ModifyTopicRuleRequest {
2901
+ FirmwareDescription?: string
2365
2902
  /**
2366
- * 规则名称
2903
+ * 固件升级模块;可选值 mcu|moudule
2367
2904
  */
2368
- RuleName: string
2905
+ FwType?: string
2369
2906
  /**
2370
- * 替换的规则包体
2907
+ * 固件用户自定义配置信息
2371
2908
  */
2372
- TopicRulePayload: TopicRulePayload
2909
+ FirmwareUserDefined?: string
2373
2910
  }
2374
2911
 
2375
2912
  /**
@@ -2440,6 +2977,16 @@ export interface GetPositionSpaceListResponse {
2440
2977
  RequestId?: string
2441
2978
  }
2442
2979
 
2980
+ /**
2981
+ * 云存用户信息
2982
+ */
2983
+ export interface CloudStorageUserInfo {
2984
+ /**
2985
+ * 用户ID
2986
+ */
2987
+ UserId?: string
2988
+ }
2989
+
2443
2990
  /**
2444
2991
  * GetCOSURL返回参数结构体
2445
2992
  */
@@ -2486,6 +3033,28 @@ export interface GetTopicRuleListResponse {
2486
3033
  RequestId?: string
2487
3034
  }
2488
3035
 
3036
+ /**
3037
+ * ResetCloudStorageEvent请求参数结构体
3038
+ */
3039
+ export interface ResetCloudStorageEventRequest {
3040
+ /**
3041
+ * 产品ID
3042
+ */
3043
+ ProductId: string
3044
+ /**
3045
+ * 设备名称
3046
+ */
3047
+ DeviceName: string
3048
+ /**
3049
+ * 用户ID
3050
+ */
3051
+ UserId?: string
3052
+ /**
3053
+ * 通道ID
3054
+ */
3055
+ ChannelId?: number
3056
+ }
3057
+
2489
3058
  /**
2490
3059
  * DescribeFenceEventList请求参数结构体
2491
3060
  */
@@ -2520,6 +3089,25 @@ export interface DescribeFenceEventListRequest {
2520
3089
  DeviceName?: string
2521
3090
  }
2522
3091
 
3092
+ /**
3093
+ * GetLoRaGatewayList返回参数结构体
3094
+ */
3095
+ export interface GetLoRaGatewayListResponse {
3096
+ /**
3097
+ * 返回总数
3098
+ */
3099
+ Total: number
3100
+ /**
3101
+ * 返回详情项
3102
+ 注意:此字段可能返回 null,表示取不到有效值。
3103
+ */
3104
+ Gateways: Array<LoRaGatewayItem>
3105
+ /**
3106
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3107
+ */
3108
+ RequestId?: string
3109
+ }
3110
+
2523
3111
  /**
2524
3112
  * ModifyPositionSpace请求参数结构体
2525
3113
  */
@@ -2551,18 +3139,17 @@ export interface ModifyPositionSpaceRequest {
2551
3139
  }
2552
3140
 
2553
3141
  /**
2554
- * GetLoRaGatewayList返回参数结构体
3142
+ * DescribeGatewaySubProducts返回参数结构体
2555
3143
  */
2556
- export interface GetLoRaGatewayListResponse {
3144
+ export interface DescribeGatewaySubProductsResponse {
2557
3145
  /**
2558
- * 返回总数
3146
+ * 当前分页的可绑定或解绑的产品信息。
2559
3147
  */
2560
- Total: number
3148
+ Products: Array<BindProductInfo>
2561
3149
  /**
2562
- * 返回详情项
2563
- 注意:此字段可能返回 null,表示取不到有效值。
3150
+ * 可绑定或解绑的产品总数
2564
3151
  */
2565
- Gateways: Array<LoRaGatewayItem>
3152
+ Total: number
2566
3153
  /**
2567
3154
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2568
3155
  */
@@ -2728,6 +3315,58 @@ export interface CallDeviceActionAsyncResponse {
2728
3315
  RequestId?: string
2729
3316
  }
2730
3317
 
3318
+ /**
3319
+ * DescribeCloudStoragePackageConsumeStats请求参数结构体
3320
+ */
3321
+ export interface DescribeCloudStoragePackageConsumeStatsRequest {
3322
+ /**
3323
+ * 开始日期
3324
+ */
3325
+ StartDate: string
3326
+ /**
3327
+ * 结束日期,开始与结束日期间隔不可超过一年
3328
+ */
3329
+ EndDate: string
3330
+ }
3331
+
3332
+ /**
3333
+ * ListEventHistory请求参数结构体
3334
+ */
3335
+ export interface ListEventHistoryRequest {
3336
+ /**
3337
+ * 产品ID
3338
+ */
3339
+ ProductId: string
3340
+ /**
3341
+ * 设备名称
3342
+ */
3343
+ DeviceName: string
3344
+ /**
3345
+ * 搜索的事件类型:alert 表示告警,fault 表示故障,info 表示信息,为空则表示查询上述所有类型事件
3346
+ */
3347
+ Type?: string
3348
+ /**
3349
+ * 起始时间(Unix 时间戳,秒级), 为0 表示 当前时间 - 24h
3350
+ */
3351
+ StartTime?: number
3352
+ /**
3353
+ * 结束时间(Unix 时间戳,秒级), 为0 表示当前时间
3354
+ */
3355
+ EndTime?: number
3356
+ /**
3357
+ * 搜索上下文, 用作查询游标
3358
+ */
3359
+ Context?: string
3360
+ /**
3361
+ * 单次获取的历史数据项目的最大数量, 缺省10
3362
+ */
3363
+ Size?: number
3364
+ /**
3365
+ * 事件标识符,可以用来指定查询特定的事件,如果不指定,则查询所有事件。
3366
+ */
3367
+ EventId?: string
3368
+ }
3369
+
2731
3370
  /**
2732
3371
  * DeleteFenceBind返回参数结构体
2733
3372
  */
@@ -2782,9 +3421,27 @@ export interface DescribeTopicRuleResponse {
2782
3421
  */
2783
3422
  export interface CreatePositionFenceResponse {
2784
3423
  /**
2785
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3424
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3425
+ */
3426
+ RequestId?: string
3427
+ }
3428
+
3429
+ /**
3430
+ * DescribeCloudStorageThumbnail请求参数结构体
3431
+ */
3432
+ export interface DescribeCloudStorageThumbnailRequest {
3433
+ /**
3434
+ * 产品ID
3435
+ */
3436
+ ProductId: string
3437
+ /**
3438
+ * 设备名称
2786
3439
  */
2787
- RequestId?: string
3440
+ DeviceName: string
3441
+ /**
3442
+ * 缩略图文件名
3443
+ */
3444
+ Thumbnail: string
2788
3445
  }
2789
3446
 
2790
3447
  /**
@@ -2819,6 +3476,28 @@ export interface DescribeFenceBindListRequest {
2819
3476
  Limit?: number
2820
3477
  }
2821
3478
 
3479
+ /**
3480
+ * TransferCloudStorage请求参数结构体
3481
+ */
3482
+ export interface TransferCloudStorageRequest {
3483
+ /**
3484
+ * 产品ID
3485
+ */
3486
+ ProductId: string
3487
+ /**
3488
+ * 已开通云存的设备名称
3489
+ */
3490
+ DeviceName: string
3491
+ /**
3492
+ * 未开通云存的设备名称
3493
+ */
3494
+ ToDeviceName: string
3495
+ /**
3496
+ * 未开通云存的设备产品ID
3497
+ */
3498
+ ToProductId?: string
3499
+ }
3500
+
2822
3501
  /**
2823
3502
  * DescribeBindedProducts返回参数结构体
2824
3503
  */
@@ -2938,6 +3617,20 @@ export interface DescribeDeviceRequest {
2938
3617
  DeviceId?: string
2939
3618
  }
2940
3619
 
3620
+ /**
3621
+ * ModifyModelDefinition请求参数结构体
3622
+ */
3623
+ export interface ModifyModelDefinitionRequest {
3624
+ /**
3625
+ * 产品ID
3626
+ */
3627
+ ProductId: string
3628
+ /**
3629
+ * 数据模板定义
3630
+ */
3631
+ ModelSchema: string
3632
+ }
3633
+
2941
3634
  /**
2942
3635
  * DescribePositionFenceList请求参数结构体
2943
3636
  */
@@ -3029,17 +3722,33 @@ export interface DirectBindDeviceInFamilyRequest {
3029
3722
  }
3030
3723
 
3031
3724
  /**
3032
- * Topic信息, 包括Topic名字和权限
3725
+ * DescribeCloudStorageEvents返回参数结构体
3033
3726
  */
3034
- export interface TopicItem {
3727
+ export interface DescribeCloudStorageEventsResponse {
3035
3728
  /**
3036
- * Topic名称
3729
+ * 云存事件列表
3037
3730
  */
3038
- TopicName: string
3731
+ Events?: Array<CloudStorageEvent>
3039
3732
  /**
3040
- * Topic权限 , 1上报 2下发
3733
+ * 请求上下文, 用作查询游标
3041
3734
  */
3042
- Privilege: number
3735
+ Context?: string
3736
+ /**
3737
+ * 拉取结果是否已经结束
3738
+ */
3739
+ Listover?: boolean
3740
+ /**
3741
+ * 内部结果数量,并不等同于事件总数。
3742
+ */
3743
+ Total?: number
3744
+ /**
3745
+ * 视频播放URL
3746
+ */
3747
+ VideoURL?: string
3748
+ /**
3749
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3750
+ */
3751
+ RequestId?: string
3043
3752
  }
3044
3753
 
3045
3754
  /**
@@ -3079,14 +3788,35 @@ export interface DescribeBindedProductsRequest {
3079
3788
  }
3080
3789
 
3081
3790
  /**
3082
- * DescribeLoRaFrequency返回参数结构体
3791
+ * 云存事件
3083
3792
  */
3084
- export interface DescribeLoRaFrequencyResponse {
3793
+ export interface CloudStorageEvent {
3085
3794
  /**
3086
- * 返回详情项
3087
- 注意:此字段可能返回 null,表示取不到有效值。
3795
+ * 事件起始时间(Unix 时间戳,秒级
3088
3796
  */
3089
- Data: LoRaFrequencyEntry
3797
+ StartTime: number
3798
+ /**
3799
+ * 事件结束时间(Unix 时间戳,秒级
3800
+ */
3801
+ EndTime: number
3802
+ /**
3803
+ * 事件缩略图
3804
+ */
3805
+ Thumbnail: string
3806
+ /**
3807
+ * 事件ID
3808
+ */
3809
+ EventId: string
3810
+ }
3811
+
3812
+ /**
3813
+ * DescribeCloudStorageDate返回参数结构体
3814
+ */
3815
+ export interface DescribeCloudStorageDateResponse {
3816
+ /**
3817
+ * 云存日期数组,["2021-01-05","2021-01-06"]
3818
+ */
3819
+ Data?: Array<string>
3090
3820
  /**
3091
3821
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3092
3822
  */
@@ -3128,6 +3858,20 @@ export interface DescribeGatewaySubDeviceListResponse {
3128
3858
  RequestId?: string
3129
3859
  }
3130
3860
 
3861
+ /**
3862
+ * Topic信息, 包括Topic名字和权限
3863
+ */
3864
+ export interface TopicItem {
3865
+ /**
3866
+ * Topic名称
3867
+ */
3868
+ TopicName: string
3869
+ /**
3870
+ * Topic权限 , 1上报 2下发
3871
+ */
3872
+ Privilege: number
3873
+ }
3874
+
3131
3875
  /**
3132
3876
  * DescribeSpaceFenceEventList请求参数结构体
3133
3877
  */
@@ -3172,6 +3916,20 @@ export interface GetLoRaGatewayListRequest {
3172
3916
  Limit?: number
3173
3917
  }
3174
3918
 
3919
+ /**
3920
+ * 云存时间轴信息
3921
+ */
3922
+ export interface CloudStorageTimeInfo {
3923
+ /**
3924
+ * 开始时间
3925
+ */
3926
+ StartTime?: number
3927
+ /**
3928
+ * 结束时间
3929
+ */
3930
+ EndTime?: number
3931
+ }
3932
+
3175
3933
  /**
3176
3934
  * 围栏事件详情
3177
3935
  */
@@ -3219,45 +3977,61 @@ export interface UnbindDevicesResponse {
3219
3977
  }
3220
3978
 
3221
3979
  /**
3222
- * ModifyLoRaFrequency请求参数结构体
3980
+ * CreateIotVideoCloudStorage请求参数结构体
3223
3981
  */
3224
- export interface ModifyLoRaFrequencyRequest {
3225
- /**
3226
- * 频点唯一ID
3227
- */
3228
- FreqId?: string
3982
+ export interface CreateIotVideoCloudStorageRequest {
3229
3983
  /**
3230
- * 频点名称
3984
+ * 产品ID
3231
3985
  */
3232
- FreqName?: string
3986
+ ProductId: string
3233
3987
  /**
3234
- * 频点描述
3988
+ * 设备名称
3235
3989
  */
3236
- Description?: string
3990
+ DeviceName: string
3237
3991
  /**
3238
- * 数据上行信道
3992
+ * 云存套餐ID:
3993
+ yc1m3d : 全时3天存储月套餐。
3994
+ yc1m7d : 全时7天存储月套餐。
3995
+ yc1m30d :全时30天存储月套餐。
3996
+ yc1y3d :全时3天存储年套餐。
3997
+ yc1y7d :全时7天存储年套餐。
3998
+ yc1y30d :全时30天存储年套餐。
3999
+ ye1m3d :事件3天存储月套餐。
4000
+ ye1m7d :事件7天存储月套餐。
4001
+ ye1m30d :事件30天存储月套餐 。
4002
+ ye1y3d :事件3天存储年套餐。
4003
+ ye1y7d :事件7天存储年套餐。
4004
+ ye1y30d :事件30天存储年套餐。
4005
+ yc1w7d : 全时7天存储周套餐。
4006
+ ye1w7d : 事件7天存储周套餐。
4007
+ lye1m3d:低功耗事件3天月套餐。
4008
+ lye1m7d:低功耗事件7天月套餐。
4009
+ lye1m30d:低功耗事件30天月套餐。
4010
+ lye1y3d:低功耗事件3天年套餐。
4011
+ lye1y7d:低功耗事件7天年套餐。
4012
+ lye1y30d:低功耗事件30天年套餐。
3239
4013
  */
3240
- ChannelsDataUp?: Array<number | bigint>
4014
+ PackageId: string
3241
4015
  /**
3242
- * 数据下行信道RX1
4016
+ * 如果当前设备已开启云存套餐,Override=1会使用新套餐覆盖原有套餐。不传此参数则默认为0。
3243
4017
  */
3244
- ChannelsDataRX1?: Array<number | bigint>
4018
+ Override?: number
3245
4019
  /**
3246
- * 数据下行信道RX2
4020
+ * 套餐列表顺序:PackageQueue=front会立即使用新购买的套餐,新购套餐结束后,列表中下一个未过期的套餐继续生效;PackageQueue=end会等设备当前所有已购买套餐过期后才会生效新购套餐。与Override参数不能同时使用。
3247
4021
  */
3248
- ChannelsDataRX2?: Array<number | bigint>
4022
+ PackageQueue?: string
3249
4023
  /**
3250
- * 入网上行信道
4024
+ * 订单id
3251
4025
  */
3252
- ChannelsJoinUp?: Array<number | bigint>
4026
+ OrderId?: string
3253
4027
  /**
3254
- * 入网下行信道RX1
4028
+ * 通道ID
3255
4029
  */
3256
- ChannelsJoinRX1?: Array<number | bigint>
4030
+ ChannelId?: number
3257
4031
  /**
3258
- * 入网下行信道RX2
4032
+ * 云存视频存储区域,国内默认为ap-guangzhou。海外默认为东南亚ap-singapore,可选美东na-ashburn、欧洲eu-frankfurt。
3259
4033
  */
3260
- ChannelsJoinRX2?: Array<number | bigint>
4034
+ StorageRegion?: string
3261
4035
  }
3262
4036
 
3263
4037
  /**
@@ -3270,6 +4044,20 @@ export interface ModifyModelDefinitionResponse {
3270
4044
  RequestId?: string
3271
4045
  }
3272
4046
 
4047
+ /**
4048
+ * DescribeCloudStoragePackageConsumeDetails请求参数结构体
4049
+ */
4050
+ export interface DescribeCloudStoragePackageConsumeDetailsRequest {
4051
+ /**
4052
+ * 开始日期
4053
+ */
4054
+ StartDate: string
4055
+ /**
4056
+ * 结束日期
4057
+ */
4058
+ EndDate: string
4059
+ }
4060
+
3273
4061
  /**
3274
4062
  * UploadFirmware返回参数结构体
3275
4063
  */
@@ -3281,25 +4069,13 @@ export interface UploadFirmwareResponse {
3281
4069
  }
3282
4070
 
3283
4071
  /**
3284
- * ModifyTopicPolicy请求参数结构体
4072
+ * DescribePackageConsumeTask请求参数结构体
3285
4073
  */
3286
- export interface ModifyTopicPolicyRequest {
3287
- /**
3288
- * 产品ID
3289
- */
3290
- ProductId: string
3291
- /**
3292
- * 更新前Topic名
3293
- */
3294
- TopicName: string
4074
+ export interface DescribePackageConsumeTaskRequest {
3295
4075
  /**
3296
- * 更新后Topic名
3297
- */
3298
- NewTopicName: string
3299
- /**
3300
- * Topic权限
4076
+ * 任务id
3301
4077
  */
3302
- Privilege: number
4078
+ TaskId: number
3303
4079
  }
3304
4080
 
3305
4081
  /**
@@ -3326,6 +4102,16 @@ export interface CreateLoRaGatewayResponse {
3326
4102
  RequestId?: string
3327
4103
  }
3328
4104
 
4105
+ /**
4106
+ * BindCloudStorageUser返回参数结构体
4107
+ */
4108
+ export interface BindCloudStorageUserResponse {
4109
+ /**
4110
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4111
+ */
4112
+ RequestId?: string
4113
+ }
4114
+
3329
4115
  /**
3330
4116
  * DeleteTopicPolicy返回参数结构体
3331
4117
  */
@@ -3582,6 +4368,50 @@ export interface DescribeStudioProductRequest {
3582
4368
  ProductId: string
3583
4369
  }
3584
4370
 
4371
+ /**
4372
+ * 套餐包消耗任务列表
4373
+ */
4374
+ export interface PackageConsumeTask {
4375
+ /**
4376
+ * 任务id
4377
+ */
4378
+ TaskId?: number
4379
+ /**
4380
+ * 任务创始时间
4381
+ */
4382
+ CreateTime?: string
4383
+ /**
4384
+ * 任务状态,1待处理,2处理中,3已完成
4385
+ */
4386
+ State?: number
4387
+ }
4388
+
4389
+ /**
4390
+ * 云存套餐包消耗统计
4391
+ */
4392
+ export interface PackageConsumeStat {
4393
+ /**
4394
+ * 云存套餐包id
4395
+ */
4396
+ PackageId?: string
4397
+ /**
4398
+ * 云存套餐包名称
4399
+ */
4400
+ PackageName?: string
4401
+ /**
4402
+ * 消耗个数
4403
+ */
4404
+ Cnt?: number
4405
+ /**
4406
+ * 套餐包单价,单位分
4407
+ */
4408
+ Price?: number
4409
+ /**
4410
+ * 消耗来源,1预付费
4411
+ */
4412
+ Source?: number
4413
+ }
4414
+
3585
4415
  /**
3586
4416
  * CreatePositionSpace返回参数结构体
3587
4417
  */
@@ -3691,6 +4521,38 @@ export interface ModifyLoRaFrequencyResponse {
3691
4521
  RequestId?: string
3692
4522
  }
3693
4523
 
4524
+ /**
4525
+ * DescribeFenceBindList返回参数结构体
4526
+ */
4527
+ export interface DescribeFenceBindListResponse {
4528
+ /**
4529
+ * 围栏绑定的产品设备列表
4530
+ */
4531
+ List: Array<FenceBindProductItem>
4532
+ /**
4533
+ * 围栏绑定的设备总数
4534
+ */
4535
+ Total: number
4536
+ /**
4537
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4538
+ */
4539
+ RequestId?: string
4540
+ }
4541
+
4542
+ /**
4543
+ * DescribeCloudStorageThumbnailList返回参数结构体
4544
+ */
4545
+ export interface DescribeCloudStorageThumbnailListResponse {
4546
+ /**
4547
+ * 缩略图访问地址
4548
+ */
4549
+ ThumbnailURLInfoList?: Array<ThumbnailURLInfoList>
4550
+ /**
4551
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4552
+ */
4553
+ RequestId?: string
4554
+ }
4555
+
3694
4556
  /**
3695
4557
  * DeletePositionFence请求参数结构体
3696
4558
  */
@@ -3705,6 +4567,26 @@ export interface DeletePositionFenceRequest {
3705
4567
  FenceId: number
3706
4568
  }
3707
4569
 
4570
+ /**
4571
+ * ResetCloudStorage返回参数结构体
4572
+ */
4573
+ export interface ResetCloudStorageResponse {
4574
+ /**
4575
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4576
+ */
4577
+ RequestId?: string
4578
+ }
4579
+
4580
+ /**
4581
+ * ResetCloudStorageEvent返回参数结构体
4582
+ */
4583
+ export interface ResetCloudStorageEventResponse {
4584
+ /**
4585
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4586
+ */
4587
+ RequestId?: string
4588
+ }
4589
+
3708
4590
  /**
3709
4591
  * GetProjectList请求参数结构体
3710
4592
  */
@@ -3934,7 +4816,41 @@ export interface ModifyProjectResponse {
3934
4816
  /**
3935
4817
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3936
4818
  */
3937
- RequestId?: string
4819
+ RequestId?: string
4820
+ }
4821
+
4822
+ /**
4823
+ * DeleteCloudStorageEvent请求参数结构体
4824
+ */
4825
+ export interface DeleteCloudStorageEventRequest {
4826
+ /**
4827
+ * 产品ID
4828
+ */
4829
+ ProductId: string
4830
+ /**
4831
+ * 设备名称
4832
+ */
4833
+ DeviceName: string
4834
+ /**
4835
+ * 事件id
4836
+ */
4837
+ EventId: string
4838
+ /**
4839
+ * 开始时间,unix时间
4840
+ */
4841
+ StartTime: number
4842
+ /**
4843
+ * 结束时间,unix时间
4844
+ */
4845
+ EndTime: number
4846
+ /**
4847
+ * 用户ID
4848
+ */
4849
+ UserId?: string
4850
+ /**
4851
+ * 通道ID
4852
+ */
4853
+ ChannelId?: number
3938
4854
  }
3939
4855
 
3940
4856
  /**
@@ -3966,71 +4882,100 @@ export interface DescribeLoRaFrequencyRequest {
3966
4882
  }
3967
4883
 
3968
4884
  /**
3969
- * DescribeGatewayBindDevices请求参数结构体
4885
+ * DescribeCloudStorage返回参数结构体
3970
4886
  */
3971
- export interface DescribeGatewayBindDevicesRequest {
4887
+ export interface DescribeCloudStorageResponse {
3972
4888
  /**
3973
- * 网关设备的产品ID
4889
+ * 云存开启状态,1为开启,0为未开启或已过期
3974
4890
  */
3975
- GatewayProductId: string
4891
+ Status?: number
3976
4892
  /**
3977
- * 网关设备的设备名
4893
+ * 云存类型,1为全时云存,2为事件云存
3978
4894
  */
3979
- GatewayDeviceName: string
4895
+ Type?: number
3980
4896
  /**
3981
- * 子产品的ID
4897
+ * 云存套餐过期时间
3982
4898
  */
3983
- ProductId: string
4899
+ ExpireTime?: number
3984
4900
  /**
3985
- * 分页的偏移
4901
+ * 云存回看时长
3986
4902
  */
3987
- Offset: number
4903
+ ShiftDuration?: number
3988
4904
  /**
3989
- * 分页的页大小
4905
+ * 云存用户ID
4906
+ 注意:此字段可能返回 null,表示取不到有效值。
3990
4907
  */
3991
- Limit: number
4908
+ UserId?: string
4909
+ /**
4910
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4911
+ */
4912
+ RequestId?: string
3992
4913
  }
3993
4914
 
3994
4915
  /**
3995
- * GetDeviceSumStatistics返回参数结构体
4916
+ * ResetCloudStorage请求参数结构体
3996
4917
  */
3997
- export interface GetDeviceSumStatisticsResponse {
4918
+ export interface ResetCloudStorageRequest {
3998
4919
  /**
3999
- * 激活设备总数
4920
+ * 产品ID
4000
4921
  */
4001
- ActivationCount?: number
4922
+ ProductId: string
4002
4923
  /**
4003
- * 在线设备总数
4924
+ * 设备名称
4004
4925
  */
4005
- OnlineCount?: number
4926
+ DeviceName: string
4006
4927
  /**
4007
- * 前一天激活设备数
4928
+ * 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
4008
4929
  */
4009
- ActivationBeforeDay?: number
4930
+ ChannelId?: number
4010
4931
  /**
4011
- * 前一天活跃设备数
4932
+ * 云存用户Id,为空则为默认云存空间。
4012
4933
  */
4013
- ActiveBeforeDay?: number
4934
+ UserId?: string
4935
+ }
4936
+
4937
+ /**
4938
+ * DescribeGatewayBindDevices请求参数结构体
4939
+ */
4940
+ export interface DescribeGatewayBindDevicesRequest {
4014
4941
  /**
4015
- * 前一周激活设备数
4942
+ * 网关设备的产品ID
4016
4943
  */
4017
- ActivationWeekDayCount?: number
4944
+ GatewayProductId: string
4018
4945
  /**
4019
- * 前一周活跃设备数
4946
+ * 网关设备的设备名
4020
4947
  */
4021
- ActiveWeekDayCount?: number
4948
+ GatewayDeviceName: string
4022
4949
  /**
4023
- * 上一周激活设备数
4950
+ * 子产品的ID
4024
4951
  */
4025
- ActivationBeforeWeekDayCount?: number
4952
+ ProductId: string
4026
4953
  /**
4027
- * 上一周活跃设备数
4954
+ * 分页的偏移
4028
4955
  */
4029
- ActiveBeforeWeekDayCount?: number
4956
+ Offset: number
4030
4957
  /**
4031
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4958
+ * 分页的页大小
4032
4959
  */
4033
- RequestId?: string
4960
+ Limit: number
4961
+ }
4962
+
4963
+ /**
4964
+ * DescribeCloudStorageStreamData请求参数结构体
4965
+ */
4966
+ export interface DescribeCloudStorageStreamDataRequest {
4967
+ /**
4968
+ * 产品ID
4969
+ */
4970
+ ProductId: string
4971
+ /**
4972
+ * 设备名称
4973
+ */
4974
+ DeviceName: string
4975
+ /**
4976
+ * 图片流事件开始时间
4977
+ */
4978
+ StartTime: number
4034
4979
  }
4035
4980
 
4036
4981
  /**
@@ -4117,6 +5062,50 @@ export interface PublishMessageResponse {
4117
5062
  RequestId?: string
4118
5063
  }
4119
5064
 
5065
+ /**
5066
+ * ModifyTopicPolicy请求参数结构体
5067
+ */
5068
+ export interface ModifyTopicPolicyRequest {
5069
+ /**
5070
+ * 产品ID
5071
+ */
5072
+ ProductId: string
5073
+ /**
5074
+ * 更新前Topic名
5075
+ */
5076
+ TopicName: string
5077
+ /**
5078
+ * 更新后Topic名
5079
+ */
5080
+ NewTopicName: string
5081
+ /**
5082
+ * Topic权限
5083
+ */
5084
+ Privilege: number
5085
+ }
5086
+
5087
+ /**
5088
+ * DescribeCloudStorage请求参数结构体
5089
+ */
5090
+ export interface DescribeCloudStorageRequest {
5091
+ /**
5092
+ * 产品ID
5093
+ */
5094
+ ProductId: string
5095
+ /**
5096
+ * 设备名称
5097
+ */
5098
+ DeviceName: string
5099
+ /**
5100
+ * 云存用户ID
5101
+ */
5102
+ UserId?: string
5103
+ /**
5104
+ * 通道ID 非NVR设备不填 NVR设备必填 默认为无
5105
+ */
5106
+ ChannelId?: number
5107
+ }
5108
+
4120
5109
  /**
4121
5110
  * BindDevices返回参数结构体
4122
5111
  */
@@ -4128,17 +5117,31 @@ export interface BindDevicesResponse {
4128
5117
  }
4129
5118
 
4130
5119
  /**
4131
- * DescribeFenceBindList返回参数结构体
5120
+ * GenerateSignedVideoURL返回参数结构体
4132
5121
  */
4133
- export interface DescribeFenceBindListResponse {
5122
+ export interface GenerateSignedVideoURLResponse {
4134
5123
  /**
4135
- * 围栏绑定的产品设备列表
5124
+ * 视频防盗链播放URL
4136
5125
  */
4137
- List: Array<FenceBindProductItem>
5126
+ SignedVideoURL?: string
4138
5127
  /**
4139
- * 围栏绑定的设备总数
5128
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4140
5129
  */
4141
- Total: number
5130
+ RequestId?: string
5131
+ }
5132
+
5133
+ /**
5134
+ * DescribeCloudStorageThumbnail返回参数结构体
5135
+ */
5136
+ export interface DescribeCloudStorageThumbnailResponse {
5137
+ /**
5138
+ * 缩略图访问地址
5139
+ */
5140
+ ThumbnailURL?: string
5141
+ /**
5142
+ * 缩略图访问地址的过期时间
5143
+ */
5144
+ ExpireTime?: number
4142
5145
  /**
4143
5146
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4144
5147
  */
@@ -4202,13 +5205,25 @@ export interface EnableTopicRuleRequest {
4202
5205
  }
4203
5206
 
4204
5207
  /**
4205
- * DisableTopicRule请求参数结构体
5208
+ * DescribeCloudStorageUsers请求参数结构体
4206
5209
  */
4207
- export interface DisableTopicRuleRequest {
5210
+ export interface DescribeCloudStorageUsersRequest {
4208
5211
  /**
4209
- * 规则名称
5212
+ * 产品ID
4210
5213
  */
4211
- RuleName: string
5214
+ ProductId: string
5215
+ /**
5216
+ * 设备名称
5217
+ */
5218
+ DeviceName: string
5219
+ /**
5220
+ * 分页拉取数量
5221
+ */
5222
+ Limit: number
5223
+ /**
5224
+ * 分页拉取偏移
5225
+ */
5226
+ Offset: number
4212
5227
  }
4213
5228
 
4214
5229
  /**
@@ -4235,6 +5250,42 @@ export interface DescribeDeviceDataResponse {
4235
5250
  RequestId?: string
4236
5251
  }
4237
5252
 
5253
+ /**
5254
+ * DescribeCloudStorageOrder返回参数结构体
5255
+ */
5256
+ export interface DescribeCloudStorageOrderResponse {
5257
+ /**
5258
+ * 云存套餐开始时间
5259
+ 注意:此字段可能返回 null,表示取不到有效值。
5260
+ */
5261
+ StartTime?: number
5262
+ /**
5263
+ * 云存套餐过期时间
5264
+ 注意:此字段可能返回 null,表示取不到有效值。
5265
+ */
5266
+ ExpireTime?: number
5267
+ /**
5268
+ * 套餐id
5269
+ 注意:此字段可能返回 null,表示取不到有效值。
5270
+ */
5271
+ PackageId?: string
5272
+ /**
5273
+ * 套餐状态
5274
+ 0:等待生效
5275
+ 1: 已过期
5276
+ 2:生效
5277
+ */
5278
+ Status?: number
5279
+ /**
5280
+ * 通道id
5281
+ */
5282
+ ChannelId?: number
5283
+ /**
5284
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5285
+ */
5286
+ RequestId?: string
5287
+ }
5288
+
4238
5289
  /**
4239
5290
  * CreateTopicRule请求参数结构体
4240
5291
  */
@@ -4293,6 +5344,25 @@ export interface DeviceUser {
4293
5344
  FamilyName?: string
4294
5345
  }
4295
5346
 
5347
+ /**
5348
+ * DescribeDevicePackages返回参数结构体
5349
+ */
5350
+ export interface DescribeDevicePackagesResponse {
5351
+ /**
5352
+ * 有效云存套餐数量
5353
+ */
5354
+ TotalCount?: number
5355
+ /**
5356
+ * 有效云存套餐列表
5357
+ 注意:此字段可能返回 null,表示取不到有效值。
5358
+ */
5359
+ Packages?: Array<PackageInfo>
5360
+ /**
5361
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5362
+ */
5363
+ RequestId?: string
5364
+ }
5365
+
4296
5366
  /**
4297
5367
  * GetBatchProductionsList请求参数结构体
4298
5368
  */
@@ -4440,6 +5510,16 @@ export interface DeviceInfo {
4440
5510
  IsLora: boolean
4441
5511
  }
4442
5512
 
5513
+ /**
5514
+ * ModifyFenceBind返回参数结构体
5515
+ */
5516
+ export interface ModifyFenceBindResponse {
5517
+ /**
5518
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5519
+ */
5520
+ RequestId?: string
5521
+ }
5522
+
4443
5523
  /**
4444
5524
  * DescribeInstance请求参数结构体
4445
5525
  */
@@ -4574,71 +5654,52 @@ export interface InstanceDetail {
4574
5654
  }
4575
5655
 
4576
5656
  /**
4577
- * ModifyLoRaGateway请求参数结构体
5657
+ * DescribeLoRaFrequency返回参数结构体
4578
5658
  */
4579
- export interface ModifyLoRaGatewayRequest {
4580
- /**
4581
- * 描述信息
4582
- */
4583
- Description: string
4584
- /**
4585
- * LoRa网关Id
4586
- */
4587
- GatewayId: string
4588
- /**
4589
- * LoRa网关位置坐标
4590
- */
4591
- Location: LoRaGatewayLocation
4592
- /**
4593
- * LoRa网关名称
4594
- */
4595
- Name: string
4596
- /**
4597
- * 是否公开可见
4598
- */
4599
- IsPublic?: boolean
4600
- /**
4601
- * 位置信息
4602
- */
4603
- Position?: string
5659
+ export interface DescribeLoRaFrequencyResponse {
4604
5660
  /**
4605
- * 位置详情
5661
+ * 返回详情项
5662
+ 注意:此字段可能返回 null,表示取不到有效值。
4606
5663
  */
4607
- PositionDetails?: string
5664
+ Data: LoRaFrequencyEntry
4608
5665
  /**
4609
- * 频点ID
5666
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4610
5667
  */
4611
- FrequencyId?: string
5668
+ RequestId?: string
4612
5669
  }
4613
5670
 
4614
5671
  /**
4615
- * ListEventHistory返回参数结构体
5672
+ * DescribeCloudStorageTime请求参数结构体
4616
5673
  */
4617
- export interface ListEventHistoryResponse {
5674
+ export interface DescribeCloudStorageTimeRequest {
4618
5675
  /**
4619
- * 搜索上下文, 用作查询游标
4620
- 注意:此字段可能返回 null,表示取不到有效值。
5676
+ * 产品ID
4621
5677
  */
4622
- Context: string
5678
+ ProductId: string
4623
5679
  /**
4624
- * 搜索结果数量
4625
- 注意:此字段可能返回 null,表示取不到有效值。
5680
+ * 设备名称
4626
5681
  */
4627
- Total: number
5682
+ DeviceName: string
4628
5683
  /**
4629
- * 搜索结果是否已经结束
4630
- 注意:此字段可能返回 null,表示取不到有效值。
5684
+ * 云存日期,例如"2020-01-05"
4631
5685
  */
4632
- Listover: boolean
5686
+ Date: string
4633
5687
  /**
4634
- * 搜集结果集
4635
- 注意:此字段可能返回 null,表示取不到有效值。
5688
+ * 开始时间,unix时间
4636
5689
  */
4637
- EventHistory: Array<EventHistoryItem>
5690
+ StartTime?: number
4638
5691
  /**
4639
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5692
+ * 结束时间,unix时间
4640
5693
  */
4641
- RequestId?: string
5694
+ EndTime?: number
5695
+ /**
5696
+ * 用户ID
5697
+ */
5698
+ UserId?: string
5699
+ /**
5700
+ * 通道ID
5701
+ */
5702
+ ChannelId?: number
4642
5703
  }
4643
5704
 
4644
5705
  /**