tencentcloud-sdk-nodejs-iotexplorer 4.0.705 → 4.0.707

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.
@@ -1142,9 +1142,9 @@ export interface BindDeviceInfo {
1142
1142
  DeviceName: string;
1143
1143
  }
1144
1144
  /**
1145
- * 项目详情
1145
+ * ModifyProject请求参数结构体
1146
1146
  */
1147
- export interface ProjectEntryEx {
1147
+ export interface ModifyProjectRequest {
1148
1148
  /**
1149
1149
  * 项目ID
1150
1150
  */
@@ -1157,46 +1157,6 @@ export interface ProjectEntryEx {
1157
1157
  * 项目描述
1158
1158
  */
1159
1159
  ProjectDesc: string;
1160
- /**
1161
- * 项目创建时间,unix时间戳
1162
- */
1163
- CreateTime: number;
1164
- /**
1165
- * 项目更新时间,unix时间戳
1166
- */
1167
- UpdateTime: number;
1168
- /**
1169
- * 产品数量
1170
- */
1171
- ProductCount: number;
1172
- /**
1173
- * NativeApp数量
1174
- */
1175
- NativeAppCount: number;
1176
- /**
1177
- * WebApp数量
1178
- */
1179
- WebAppCount: number;
1180
- /**
1181
- * 实例ID
1182
- 注意:此字段可能返回 null,表示取不到有效值。
1183
- */
1184
- InstanceId: string;
1185
- /**
1186
- * 应用数量
1187
- 注意:此字段可能返回 null,表示取不到有效值。
1188
- */
1189
- ApplicationCount: number;
1190
- /**
1191
- * 设备注册总数
1192
- 注意:此字段可能返回 null,表示取不到有效值。
1193
- */
1194
- DeviceCount: number;
1195
- /**
1196
- * 是否开通物联使能
1197
- 注意:此字段可能返回 null,表示取不到有效值。
1198
- */
1199
- EnableOpenState: number;
1200
1160
  }
1201
1161
  /**
1202
1162
  * DescribeBatchProduction返回参数结构体
@@ -3411,6 +3371,63 @@ export interface CreatePositionSpaceResponse {
3411
3371
  */
3412
3372
  RequestId?: string;
3413
3373
  }
3374
+ /**
3375
+ * 项目详情
3376
+ */
3377
+ export interface ProjectEntryEx {
3378
+ /**
3379
+ * 项目ID
3380
+ */
3381
+ ProjectId: string;
3382
+ /**
3383
+ * 项目名称
3384
+ */
3385
+ ProjectName: string;
3386
+ /**
3387
+ * 项目描述
3388
+ */
3389
+ ProjectDesc: string;
3390
+ /**
3391
+ * 项目创建时间,unix时间戳
3392
+ */
3393
+ CreateTime: number;
3394
+ /**
3395
+ * 项目更新时间,unix时间戳
3396
+ */
3397
+ UpdateTime: number;
3398
+ /**
3399
+ * 产品数量
3400
+ */
3401
+ ProductCount: number;
3402
+ /**
3403
+ * NativeApp数量
3404
+ */
3405
+ NativeAppCount: number;
3406
+ /**
3407
+ * WebApp数量
3408
+ */
3409
+ WebAppCount: number;
3410
+ /**
3411
+ * 实例ID
3412
+ 注意:此字段可能返回 null,表示取不到有效值。
3413
+ */
3414
+ InstanceId: string;
3415
+ /**
3416
+ * 应用数量
3417
+ 注意:此字段可能返回 null,表示取不到有效值。
3418
+ */
3419
+ ApplicationCount: number;
3420
+ /**
3421
+ * 设备注册总数
3422
+ 注意:此字段可能返回 null,表示取不到有效值。
3423
+ */
3424
+ DeviceCount: number;
3425
+ /**
3426
+ * 是否开通物联使能
3427
+ 注意:此字段可能返回 null,表示取不到有效值。
3428
+ */
3429
+ EnableOpenState: number;
3430
+ }
3414
3431
  /**
3415
3432
  * CreateBatchProduction返回参数结构体
3416
3433
  */
@@ -3729,6 +3746,47 @@ export interface DescribeGatewayBindDevicesRequest {
3729
3746
  */
3730
3747
  Limit: number;
3731
3748
  }
3749
+ /**
3750
+ * GetDeviceSumStatistics返回参数结构体
3751
+ */
3752
+ export interface GetDeviceSumStatisticsResponse {
3753
+ /**
3754
+ * 激活设备总数
3755
+ */
3756
+ ActivationCount?: number;
3757
+ /**
3758
+ * 在线设备总数
3759
+ */
3760
+ OnlineCount?: number;
3761
+ /**
3762
+ * 前一天激活设备数
3763
+ */
3764
+ ActivationBeforeDay?: number;
3765
+ /**
3766
+ * 前一天活跃设备数
3767
+ */
3768
+ ActiveBeforeDay?: number;
3769
+ /**
3770
+ * 前一周激活设备数
3771
+ */
3772
+ ActivationWeekDayCount?: number;
3773
+ /**
3774
+ * 前一周活跃设备数
3775
+ */
3776
+ ActiveWeekDayCount?: number;
3777
+ /**
3778
+ * 上一周激活设备数
3779
+ */
3780
+ ActivationBeforeWeekDayCount?: number;
3781
+ /**
3782
+ * 上一周活跃设备数
3783
+ */
3784
+ ActiveBeforeWeekDayCount?: number;
3785
+ /**
3786
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3787
+ */
3788
+ RequestId?: string;
3789
+ }
3732
3790
  /**
3733
3791
  * DescribeGatewaySubProducts请求参数结构体
3734
3792
  */
@@ -3777,21 +3835,17 @@ export interface BindProductsRequest {
3777
3835
  ProductIds: Array<string>;
3778
3836
  }
3779
3837
  /**
3780
- * ModifyProject请求参数结构体
3838
+ * GetDeviceSumStatistics请求参数结构体
3781
3839
  */
3782
- export interface ModifyProjectRequest {
3840
+ export interface GetDeviceSumStatisticsRequest {
3783
3841
  /**
3784
- * 项目ID
3842
+ * 项目id
3785
3843
  */
3786
3844
  ProjectId: string;
3787
3845
  /**
3788
- * 项目名称
3789
- */
3790
- ProjectName: string;
3791
- /**
3792
- * 项目描述
3846
+ * 产品id列表,长度为0则拉取项目内全部产品
3793
3847
  */
3794
- ProjectDesc: string;
3848
+ ProductIds?: Array<string>;
3795
3849
  }
3796
3850
  /**
3797
3851
  * ModifySpaceProperty返回参数结构体