tencentcloud-sdk-nodejs-iotexplorer 4.0.232 → 4.0.242

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.
@@ -515,6 +515,39 @@ export interface ModifyFenceBindResponse {
515
515
  */
516
516
  RequestId?: string;
517
517
  }
518
+ /**
519
+ * CreateBatchProduction请求参数结构体
520
+ */
521
+ export interface CreateBatchProductionRequest {
522
+ /**
523
+ * 项目ID
524
+ */
525
+ ProjectId: string;
526
+ /**
527
+ * 产品ID
528
+ */
529
+ ProductId: string;
530
+ /**
531
+ * 烧录方式,0为直接烧录,1为动态注册。
532
+ */
533
+ BurnMethod: number;
534
+ /**
535
+ * 生成方式,0为系统生成,1为文件上传。
536
+ */
537
+ GenerationMethod: number;
538
+ /**
539
+ * 文件上传URL,用于文件上传时填写。
540
+ */
541
+ UploadUrl?: string;
542
+ /**
543
+ * 量产数量,用于系统生成时填写。
544
+ */
545
+ BatchCnt?: number;
546
+ /**
547
+ * 是否生成二维码,0为不生成,1为生成。
548
+ */
549
+ GenerationQRCode?: number;
550
+ }
518
551
  /**
519
552
  * DeletePositionFence返回参数结构体
520
553
  */
@@ -1026,6 +1059,39 @@ export interface ProjectEntryEx {
1026
1059
  */
1027
1060
  DeviceCount: number;
1028
1061
  }
1062
+ /**
1063
+ * DescribeBatchProduction返回参数结构体
1064
+ */
1065
+ export interface DescribeBatchProductionResponse {
1066
+ /**
1067
+ * 量产数量。
1068
+ */
1069
+ BatchCnt?: number;
1070
+ /**
1071
+ * 烧录方式。
1072
+ */
1073
+ BurnMethod?: number;
1074
+ /**
1075
+ * 创建时间。
1076
+ */
1077
+ CreateTime?: number;
1078
+ /**
1079
+ * 下载URL。
1080
+ */
1081
+ DownloadUrl?: string;
1082
+ /**
1083
+ * 生成方式。
1084
+ */
1085
+ GenerationMethod?: number;
1086
+ /**
1087
+ * 上传URL。
1088
+ */
1089
+ UploadUrl?: string;
1090
+ /**
1091
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1092
+ */
1093
+ RequestId?: string;
1094
+ }
1029
1095
  /**
1030
1096
  * ListTopicPolicy请求参数结构体
1031
1097
  */
@@ -2199,29 +2265,21 @@ export interface DescribeTopicRuleResponse {
2199
2265
  RequestId?: string;
2200
2266
  }
2201
2267
  /**
2202
- * UpdateFirmware请求参数结构体
2268
+ * 围栏详细信息(包含创建时间及更新时间)
2203
2269
  */
2204
- export interface UpdateFirmwareRequest {
2205
- /**
2206
- * 产品ID
2207
- */
2208
- ProductID: string;
2209
- /**
2210
- * 设备名
2211
- */
2212
- DeviceName: string;
2270
+ export interface PositionFenceInfo {
2213
2271
  /**
2214
- * 固件新的版本号
2272
+ * 围栏信息
2215
2273
  */
2216
- FirmwareVersion: string;
2274
+ GeoFence: PositionFenceItem;
2217
2275
  /**
2218
- * 固件原版本号
2276
+ * 围栏创建时间
2219
2277
  */
2220
- FirmwareOriVersion: string;
2278
+ CreateTime: number;
2221
2279
  /**
2222
- * 固件升级方式;0 静默升级 1 用户确认升级 不填默认静默升级
2280
+ * 围栏更新时间
2223
2281
  */
2224
- UpgradeMethod?: number;
2282
+ UpdateTime: number;
2225
2283
  }
2226
2284
  /**
2227
2285
  * 位置空间详情
@@ -2333,6 +2391,19 @@ export interface ModifyTopicRuleResponse {
2333
2391
  */
2334
2392
  RequestId?: string;
2335
2393
  }
2394
+ /**
2395
+ * DescribeBatchProduction请求参数结构体
2396
+ */
2397
+ export interface DescribeBatchProductionRequest {
2398
+ /**
2399
+ * 产品ID
2400
+ */
2401
+ ProductId: string;
2402
+ /**
2403
+ * 量产ID
2404
+ */
2405
+ BatchProductionId: string;
2406
+ }
2336
2407
  /**
2337
2408
  * CreateTopicPolicy请求参数结构体
2338
2409
  */
@@ -2469,6 +2540,47 @@ export interface DescribeProjectRequest {
2469
2540
  */
2470
2541
  ProjectId: string;
2471
2542
  }
2543
+ /**
2544
+ * ModifyLoRaFrequency请求参数结构体
2545
+ */
2546
+ export interface ModifyLoRaFrequencyRequest {
2547
+ /**
2548
+ * 频点唯一ID
2549
+ */
2550
+ FreqId?: string;
2551
+ /**
2552
+ * 频点名称
2553
+ */
2554
+ FreqName?: string;
2555
+ /**
2556
+ * 频点描述
2557
+ */
2558
+ Description?: string;
2559
+ /**
2560
+ * 数据上行信道
2561
+ */
2562
+ ChannelsDataUp?: Array<number>;
2563
+ /**
2564
+ * 数据下行信道RX1
2565
+ */
2566
+ ChannelsDataRX1?: Array<number>;
2567
+ /**
2568
+ * 数据下行信道RX2
2569
+ */
2570
+ ChannelsDataRX2?: Array<number>;
2571
+ /**
2572
+ * 入网上行信道
2573
+ */
2574
+ ChannelsJoinUp?: Array<number>;
2575
+ /**
2576
+ * 入网下行信道RX1
2577
+ */
2578
+ ChannelsJoinRX1?: Array<number>;
2579
+ /**
2580
+ * 入网下行信道RX2
2581
+ */
2582
+ ChannelsJoinRX2?: Array<number>;
2583
+ }
2472
2584
  /**
2473
2585
  * UploadFirmware返回参数结构体
2474
2586
  */
@@ -2677,6 +2789,31 @@ export interface DescribeDeviceDataHistoryRequest {
2677
2789
  */
2678
2790
  Context?: string;
2679
2791
  }
2792
+ /**
2793
+ * UpdateFirmware请求参数结构体
2794
+ */
2795
+ export interface UpdateFirmwareRequest {
2796
+ /**
2797
+ * 产品ID
2798
+ */
2799
+ ProductID: string;
2800
+ /**
2801
+ * 设备名
2802
+ */
2803
+ DeviceName: string;
2804
+ /**
2805
+ * 固件新的版本号
2806
+ */
2807
+ FirmwareVersion: string;
2808
+ /**
2809
+ * 固件原版本号
2810
+ */
2811
+ FirmwareOriVersion: string;
2812
+ /**
2813
+ * 固件升级方式;0 静默升级 1 用户确认升级 不填默认静默升级
2814
+ */
2815
+ UpgradeMethod?: number;
2816
+ }
2680
2817
  /**
2681
2818
  * DescribeStudioProduct请求参数结构体
2682
2819
  */
@@ -2701,45 +2838,25 @@ export interface CreatePositionSpaceResponse {
2701
2838
  RequestId?: string;
2702
2839
  }
2703
2840
  /**
2704
- * ModifyLoRaFrequency请求参数结构体
2841
+ * CreateBatchProduction返回参数结构体
2705
2842
  */
2706
- export interface ModifyLoRaFrequencyRequest {
2707
- /**
2708
- * 频点唯一ID
2709
- */
2710
- FreqId?: string;
2843
+ export interface CreateBatchProductionResponse {
2711
2844
  /**
2712
- * 频点名称
2713
- */
2714
- FreqName?: string;
2715
- /**
2716
- * 频点描述
2717
- */
2718
- Description?: string;
2719
- /**
2720
- * 数据上行信道
2721
- */
2722
- ChannelsDataUp?: Array<number>;
2723
- /**
2724
- * 数据下行信道RX1
2725
- */
2726
- ChannelsDataRX1?: Array<number>;
2727
- /**
2728
- * 数据下行信道RX2
2845
+ * 项目Id
2729
2846
  */
2730
- ChannelsDataRX2?: Array<number>;
2847
+ ProjectId: string;
2731
2848
  /**
2732
- * 入网上行信道
2849
+ * 产品Id
2733
2850
  */
2734
- ChannelsJoinUp?: Array<number>;
2851
+ ProductId: string;
2735
2852
  /**
2736
- * 入网下行信道RX1
2853
+ * 量产id
2737
2854
  */
2738
- ChannelsJoinRX1?: Array<number>;
2855
+ BatchProductionId: string;
2739
2856
  /**
2740
- * 入网下行信道RX2
2857
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2741
2858
  */
2742
- ChannelsJoinRX2?: Array<number>;
2859
+ RequestId?: string;
2743
2860
  }
2744
2861
  /**
2745
2862
  * ModifyModelDefinition返回参数结构体
@@ -2923,6 +3040,31 @@ export interface ModifyProjectResponse {
2923
3040
  */
2924
3041
  RequestId?: string;
2925
3042
  }
3043
+ /**
3044
+ * 获取返回列表的详情。
3045
+ */
3046
+ export interface BatchProductionInfo {
3047
+ /**
3048
+ * 量产ID
3049
+ */
3050
+ BatchProductionId: string;
3051
+ /**
3052
+ * 产品ID
3053
+ */
3054
+ ProductId: string;
3055
+ /**
3056
+ * 烧录方式
3057
+ */
3058
+ BurnMethod: number;
3059
+ /**
3060
+ * 创建时间
3061
+ */
3062
+ CreateTime: number;
3063
+ /**
3064
+ * 产品名称
3065
+ */
3066
+ ProductName: string;
3067
+ }
2926
3068
  /**
2927
3069
  * DeleteStudioProduct请求参数结构体
2928
3070
  */
@@ -3085,21 +3227,21 @@ export interface CreateTopicRuleRequest {
3085
3227
  TopicRulePayload: TopicRulePayload;
3086
3228
  }
3087
3229
  /**
3088
- * 围栏详细信息(包含创建时间及更新时间)
3230
+ * GetBatchProductionsList请求参数结构体
3089
3231
  */
3090
- export interface PositionFenceInfo {
3232
+ export interface GetBatchProductionsListRequest {
3091
3233
  /**
3092
- * 围栏信息
3234
+ * 项目ID
3093
3235
  */
3094
- GeoFence: PositionFenceItem;
3236
+ ProjectId: string;
3095
3237
  /**
3096
- * 围栏创建时间
3238
+ * 偏移量
3097
3239
  */
3098
- CreateTime: number;
3240
+ Offset?: number;
3099
3241
  /**
3100
- * 围栏更新时间
3242
+ * 返回数量限制
3101
3243
  */
3102
- UpdateTime: number;
3244
+ Limit?: number;
3103
3245
  }
3104
3246
  /**
3105
3247
  * DeleteDevice返回参数结构体
@@ -3302,6 +3444,24 @@ export interface ListEventHistoryResponse {
3302
3444
  */
3303
3445
  RequestId?: string;
3304
3446
  }
3447
+ /**
3448
+ * GetBatchProductionsList返回参数结构体
3449
+ */
3450
+ export interface GetBatchProductionsListResponse {
3451
+ /**
3452
+ * 返回详情信息。
3453
+ 注意:此字段可能返回 null,表示取不到有效值。
3454
+ */
3455
+ BatchProductions?: Array<BatchProductionInfo>;
3456
+ /**
3457
+ * 返回数量。
3458
+ */
3459
+ TotalCnt?: number;
3460
+ /**
3461
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3462
+ */
3463
+ RequestId?: string;
3464
+ }
3305
3465
  /**
3306
3466
  * EnableTopicRule请求参数结构体
3307
3467
  */