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.
- package/CHANGELOG.md +1113 -61
- package/package.json +1 -1
- package/products.md +154 -153
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +46 -9
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +252 -61
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +15 -3
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +21 -3
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +214 -54
|
@@ -611,6 +611,46 @@ export interface ModifyFenceBindResponse {
|
|
|
611
611
|
RequestId?: string
|
|
612
612
|
}
|
|
613
613
|
|
|
614
|
+
/**
|
|
615
|
+
* CreateBatchProduction请求参数结构体
|
|
616
|
+
*/
|
|
617
|
+
export interface CreateBatchProductionRequest {
|
|
618
|
+
/**
|
|
619
|
+
* 项目ID
|
|
620
|
+
*/
|
|
621
|
+
ProjectId: string
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* 产品ID
|
|
625
|
+
*/
|
|
626
|
+
ProductId: string
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* 烧录方式,0为直接烧录,1为动态注册。
|
|
630
|
+
*/
|
|
631
|
+
BurnMethod: number
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* 生成方式,0为系统生成,1为文件上传。
|
|
635
|
+
*/
|
|
636
|
+
GenerationMethod: number
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* 文件上传URL,用于文件上传时填写。
|
|
640
|
+
*/
|
|
641
|
+
UploadUrl?: string
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* 量产数量,用于系统生成时填写。
|
|
645
|
+
*/
|
|
646
|
+
BatchCnt?: number
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* 是否生成二维码,0为不生成,1为生成。
|
|
650
|
+
*/
|
|
651
|
+
GenerationQRCode?: number
|
|
652
|
+
}
|
|
653
|
+
|
|
614
654
|
/**
|
|
615
655
|
* DeletePositionFence返回参数结构体
|
|
616
656
|
*/
|
|
@@ -1217,6 +1257,46 @@ export interface ProjectEntryEx {
|
|
|
1217
1257
|
DeviceCount: number
|
|
1218
1258
|
}
|
|
1219
1259
|
|
|
1260
|
+
/**
|
|
1261
|
+
* DescribeBatchProduction返回参数结构体
|
|
1262
|
+
*/
|
|
1263
|
+
export interface DescribeBatchProductionResponse {
|
|
1264
|
+
/**
|
|
1265
|
+
* 量产数量。
|
|
1266
|
+
*/
|
|
1267
|
+
BatchCnt?: number
|
|
1268
|
+
|
|
1269
|
+
/**
|
|
1270
|
+
* 烧录方式。
|
|
1271
|
+
*/
|
|
1272
|
+
BurnMethod?: number
|
|
1273
|
+
|
|
1274
|
+
/**
|
|
1275
|
+
* 创建时间。
|
|
1276
|
+
*/
|
|
1277
|
+
CreateTime?: number
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* 下载URL。
|
|
1281
|
+
*/
|
|
1282
|
+
DownloadUrl?: string
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* 生成方式。
|
|
1286
|
+
*/
|
|
1287
|
+
GenerationMethod?: number
|
|
1288
|
+
|
|
1289
|
+
/**
|
|
1290
|
+
* 上传URL。
|
|
1291
|
+
*/
|
|
1292
|
+
UploadUrl?: string
|
|
1293
|
+
|
|
1294
|
+
/**
|
|
1295
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1296
|
+
*/
|
|
1297
|
+
RequestId?: string
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1220
1300
|
/**
|
|
1221
1301
|
* ListTopicPolicy请求参数结构体
|
|
1222
1302
|
*/
|
|
@@ -2597,33 +2677,23 @@ export interface DescribeTopicRuleResponse {
|
|
|
2597
2677
|
}
|
|
2598
2678
|
|
|
2599
2679
|
/**
|
|
2600
|
-
*
|
|
2680
|
+
* 围栏详细信息(包含创建时间及更新时间)
|
|
2601
2681
|
*/
|
|
2602
|
-
export interface
|
|
2603
|
-
/**
|
|
2604
|
-
* 产品ID
|
|
2605
|
-
*/
|
|
2606
|
-
ProductID: string
|
|
2607
|
-
|
|
2608
|
-
/**
|
|
2609
|
-
* 设备名
|
|
2610
|
-
*/
|
|
2611
|
-
DeviceName: string
|
|
2612
|
-
|
|
2682
|
+
export interface PositionFenceInfo {
|
|
2613
2683
|
/**
|
|
2614
|
-
*
|
|
2684
|
+
* 围栏信息
|
|
2615
2685
|
*/
|
|
2616
|
-
|
|
2686
|
+
GeoFence: PositionFenceItem
|
|
2617
2687
|
|
|
2618
2688
|
/**
|
|
2619
|
-
*
|
|
2689
|
+
* 围栏创建时间
|
|
2620
2690
|
*/
|
|
2621
|
-
|
|
2691
|
+
CreateTime: number
|
|
2622
2692
|
|
|
2623
2693
|
/**
|
|
2624
|
-
*
|
|
2694
|
+
* 围栏更新时间
|
|
2625
2695
|
*/
|
|
2626
|
-
|
|
2696
|
+
UpdateTime: number
|
|
2627
2697
|
}
|
|
2628
2698
|
|
|
2629
2699
|
/**
|
|
@@ -2757,6 +2827,21 @@ export interface ModifyTopicRuleResponse {
|
|
|
2757
2827
|
RequestId?: string
|
|
2758
2828
|
}
|
|
2759
2829
|
|
|
2830
|
+
/**
|
|
2831
|
+
* DescribeBatchProduction请求参数结构体
|
|
2832
|
+
*/
|
|
2833
|
+
export interface DescribeBatchProductionRequest {
|
|
2834
|
+
/**
|
|
2835
|
+
* 产品ID
|
|
2836
|
+
*/
|
|
2837
|
+
ProductId: string
|
|
2838
|
+
|
|
2839
|
+
/**
|
|
2840
|
+
* 量产ID
|
|
2841
|
+
*/
|
|
2842
|
+
BatchProductionId: string
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2760
2845
|
/**
|
|
2761
2846
|
* CreateTopicPolicy请求参数结构体
|
|
2762
2847
|
*/
|
|
@@ -2918,6 +3003,56 @@ export interface DescribeProjectRequest {
|
|
|
2918
3003
|
ProjectId: string
|
|
2919
3004
|
}
|
|
2920
3005
|
|
|
3006
|
+
/**
|
|
3007
|
+
* ModifyLoRaFrequency请求参数结构体
|
|
3008
|
+
*/
|
|
3009
|
+
export interface ModifyLoRaFrequencyRequest {
|
|
3010
|
+
/**
|
|
3011
|
+
* 频点唯一ID
|
|
3012
|
+
*/
|
|
3013
|
+
FreqId?: string
|
|
3014
|
+
|
|
3015
|
+
/**
|
|
3016
|
+
* 频点名称
|
|
3017
|
+
*/
|
|
3018
|
+
FreqName?: string
|
|
3019
|
+
|
|
3020
|
+
/**
|
|
3021
|
+
* 频点描述
|
|
3022
|
+
*/
|
|
3023
|
+
Description?: string
|
|
3024
|
+
|
|
3025
|
+
/**
|
|
3026
|
+
* 数据上行信道
|
|
3027
|
+
*/
|
|
3028
|
+
ChannelsDataUp?: Array<number>
|
|
3029
|
+
|
|
3030
|
+
/**
|
|
3031
|
+
* 数据下行信道RX1
|
|
3032
|
+
*/
|
|
3033
|
+
ChannelsDataRX1?: Array<number>
|
|
3034
|
+
|
|
3035
|
+
/**
|
|
3036
|
+
* 数据下行信道RX2
|
|
3037
|
+
*/
|
|
3038
|
+
ChannelsDataRX2?: Array<number>
|
|
3039
|
+
|
|
3040
|
+
/**
|
|
3041
|
+
* 入网上行信道
|
|
3042
|
+
*/
|
|
3043
|
+
ChannelsJoinUp?: Array<number>
|
|
3044
|
+
|
|
3045
|
+
/**
|
|
3046
|
+
* 入网下行信道RX1
|
|
3047
|
+
*/
|
|
3048
|
+
ChannelsJoinRX1?: Array<number>
|
|
3049
|
+
|
|
3050
|
+
/**
|
|
3051
|
+
* 入网下行信道RX2
|
|
3052
|
+
*/
|
|
3053
|
+
ChannelsJoinRX2?: Array<number>
|
|
3054
|
+
}
|
|
3055
|
+
|
|
2921
3056
|
/**
|
|
2922
3057
|
* UploadFirmware返回参数结构体
|
|
2923
3058
|
*/
|
|
@@ -3165,6 +3300,36 @@ export interface DescribeDeviceDataHistoryRequest {
|
|
|
3165
3300
|
Context?: string
|
|
3166
3301
|
}
|
|
3167
3302
|
|
|
3303
|
+
/**
|
|
3304
|
+
* UpdateFirmware请求参数结构体
|
|
3305
|
+
*/
|
|
3306
|
+
export interface UpdateFirmwareRequest {
|
|
3307
|
+
/**
|
|
3308
|
+
* 产品ID
|
|
3309
|
+
*/
|
|
3310
|
+
ProductID: string
|
|
3311
|
+
|
|
3312
|
+
/**
|
|
3313
|
+
* 设备名
|
|
3314
|
+
*/
|
|
3315
|
+
DeviceName: string
|
|
3316
|
+
|
|
3317
|
+
/**
|
|
3318
|
+
* 固件新的版本号
|
|
3319
|
+
*/
|
|
3320
|
+
FirmwareVersion: string
|
|
3321
|
+
|
|
3322
|
+
/**
|
|
3323
|
+
* 固件原版本号
|
|
3324
|
+
*/
|
|
3325
|
+
FirmwareOriVersion: string
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
* 固件升级方式;0 静默升级 1 用户确认升级 不填默认静默升级
|
|
3329
|
+
*/
|
|
3330
|
+
UpgradeMethod?: number
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3168
3333
|
/**
|
|
3169
3334
|
* DescribeStudioProduct请求参数结构体
|
|
3170
3335
|
*/
|
|
@@ -3192,53 +3357,28 @@ export interface CreatePositionSpaceResponse {
|
|
|
3192
3357
|
}
|
|
3193
3358
|
|
|
3194
3359
|
/**
|
|
3195
|
-
*
|
|
3360
|
+
* CreateBatchProduction返回参数结构体
|
|
3196
3361
|
*/
|
|
3197
|
-
export interface
|
|
3198
|
-
/**
|
|
3199
|
-
* 频点唯一ID
|
|
3200
|
-
*/
|
|
3201
|
-
FreqId?: string
|
|
3202
|
-
|
|
3203
|
-
/**
|
|
3204
|
-
* 频点名称
|
|
3205
|
-
*/
|
|
3206
|
-
FreqName?: string
|
|
3207
|
-
|
|
3362
|
+
export interface CreateBatchProductionResponse {
|
|
3208
3363
|
/**
|
|
3209
|
-
*
|
|
3210
|
-
*/
|
|
3211
|
-
Description?: string
|
|
3212
|
-
|
|
3213
|
-
/**
|
|
3214
|
-
* 数据上行信道
|
|
3215
|
-
*/
|
|
3216
|
-
ChannelsDataUp?: Array<number>
|
|
3217
|
-
|
|
3218
|
-
/**
|
|
3219
|
-
* 数据下行信道RX1
|
|
3220
|
-
*/
|
|
3221
|
-
ChannelsDataRX1?: Array<number>
|
|
3222
|
-
|
|
3223
|
-
/**
|
|
3224
|
-
* 数据下行信道RX2
|
|
3364
|
+
* 项目Id
|
|
3225
3365
|
*/
|
|
3226
|
-
|
|
3366
|
+
ProjectId: string
|
|
3227
3367
|
|
|
3228
3368
|
/**
|
|
3229
|
-
*
|
|
3369
|
+
* 产品Id
|
|
3230
3370
|
*/
|
|
3231
|
-
|
|
3371
|
+
ProductId: string
|
|
3232
3372
|
|
|
3233
3373
|
/**
|
|
3234
|
-
*
|
|
3374
|
+
* 量产id
|
|
3235
3375
|
*/
|
|
3236
|
-
|
|
3376
|
+
BatchProductionId: string
|
|
3237
3377
|
|
|
3238
3378
|
/**
|
|
3239
|
-
*
|
|
3379
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3240
3380
|
*/
|
|
3241
|
-
|
|
3381
|
+
RequestId?: string
|
|
3242
3382
|
}
|
|
3243
3383
|
|
|
3244
3384
|
/**
|
|
@@ -3456,6 +3596,36 @@ export interface ModifyProjectResponse {
|
|
|
3456
3596
|
RequestId?: string
|
|
3457
3597
|
}
|
|
3458
3598
|
|
|
3599
|
+
/**
|
|
3600
|
+
* 获取返回列表的详情。
|
|
3601
|
+
*/
|
|
3602
|
+
export interface BatchProductionInfo {
|
|
3603
|
+
/**
|
|
3604
|
+
* 量产ID
|
|
3605
|
+
*/
|
|
3606
|
+
BatchProductionId: string
|
|
3607
|
+
|
|
3608
|
+
/**
|
|
3609
|
+
* 产品ID
|
|
3610
|
+
*/
|
|
3611
|
+
ProductId: string
|
|
3612
|
+
|
|
3613
|
+
/**
|
|
3614
|
+
* 烧录方式
|
|
3615
|
+
*/
|
|
3616
|
+
BurnMethod: number
|
|
3617
|
+
|
|
3618
|
+
/**
|
|
3619
|
+
* 创建时间
|
|
3620
|
+
*/
|
|
3621
|
+
CreateTime: number
|
|
3622
|
+
|
|
3623
|
+
/**
|
|
3624
|
+
* 产品名称
|
|
3625
|
+
*/
|
|
3626
|
+
ProductName: string
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3459
3629
|
/**
|
|
3460
3630
|
* DeleteStudioProduct请求参数结构体
|
|
3461
3631
|
*/
|
|
@@ -3642,23 +3812,23 @@ export interface CreateTopicRuleRequest {
|
|
|
3642
3812
|
}
|
|
3643
3813
|
|
|
3644
3814
|
/**
|
|
3645
|
-
*
|
|
3815
|
+
* GetBatchProductionsList请求参数结构体
|
|
3646
3816
|
*/
|
|
3647
|
-
export interface
|
|
3817
|
+
export interface GetBatchProductionsListRequest {
|
|
3648
3818
|
/**
|
|
3649
|
-
*
|
|
3819
|
+
* 项目ID
|
|
3650
3820
|
*/
|
|
3651
|
-
|
|
3821
|
+
ProjectId: string
|
|
3652
3822
|
|
|
3653
3823
|
/**
|
|
3654
|
-
*
|
|
3824
|
+
* 偏移量
|
|
3655
3825
|
*/
|
|
3656
|
-
|
|
3826
|
+
Offset?: number
|
|
3657
3827
|
|
|
3658
3828
|
/**
|
|
3659
|
-
*
|
|
3829
|
+
* 返回数量限制
|
|
3660
3830
|
*/
|
|
3661
|
-
|
|
3831
|
+
Limit?: number
|
|
3662
3832
|
}
|
|
3663
3833
|
|
|
3664
3834
|
/**
|
|
@@ -3900,6 +4070,27 @@ export interface ListEventHistoryResponse {
|
|
|
3900
4070
|
RequestId?: string
|
|
3901
4071
|
}
|
|
3902
4072
|
|
|
4073
|
+
/**
|
|
4074
|
+
* GetBatchProductionsList返回参数结构体
|
|
4075
|
+
*/
|
|
4076
|
+
export interface GetBatchProductionsListResponse {
|
|
4077
|
+
/**
|
|
4078
|
+
* 返回详情信息。
|
|
4079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4080
|
+
*/
|
|
4081
|
+
BatchProductions?: Array<BatchProductionInfo>
|
|
4082
|
+
|
|
4083
|
+
/**
|
|
4084
|
+
* 返回数量。
|
|
4085
|
+
*/
|
|
4086
|
+
TotalCnt?: number
|
|
4087
|
+
|
|
4088
|
+
/**
|
|
4089
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4090
|
+
*/
|
|
4091
|
+
RequestId?: string
|
|
4092
|
+
}
|
|
4093
|
+
|
|
3903
4094
|
/**
|
|
3904
4095
|
* EnableTopicRule请求参数结构体
|
|
3905
4096
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { UpdateDevicesEnableStateResponse, DeleteProjectRequest, DeleteFenceBindRequest, DescribeModelDefinitionResponse, DeleteDevicesResponse, ModifyStudioProductResponse, DeleteStudioProductResponse, GetPositionSpaceListRequest, GetDeviceListResponse, DeleteLoRaFrequencyResponse, DescribeTopicPolicyRequest, ModifyPositionFenceRequest, DeleteTopicRuleResponse, ModifyModelDefinitionRequest, CreateStudioProductResponse, CallDeviceActionSyncRequest, DescribeDevicePositionListRequest, GetDeviceLocationHistoryResponse, UpdateFirmwareResponse, ModifyPositionFenceResponse, ModifyStudioProductRequest, ModifyPositionSpaceResponse, CreateStudioProductRequest, ModifyFenceBindResponse, DeletePositionFenceResponse, UploadFirmwareRequest, ListEventHistoryRequest, SearchTopicRuleRequest, DescribeDeviceDataRequest, ListTopicPolicyResponse, SearchPositionSpaceResponse, DescribePositionFenceListResponse, GetDeviceLocationHistoryRequest, DescribeDevicePositionListResponse, GetProjectListResponse, DescribeStudioProductResponse, DescribeProjectResponse, SearchStudioProductResponse, GetTopicRuleListRequest, ListTopicPolicyRequest, DescribeLoRaFrequencyRequest, DeleteDeviceRequest, DeleteLoRaFrequencyRequest, ControlDeviceDataRequest, ListFirmwaresResponse, ReleaseStudioProductResponse, DescribeSpaceFenceEventListResponse, DeleteLoRaGatewayRequest, DescribeTopicPolicyResponse, SearchPositionSpaceRequest, ModifyTopicPolicyResponse, SearchTopicRuleResponse, DescribeFenceEventListResponse, UpdateDevicesEnableStateRequest, DescribeTopicRuleRequest, CallDeviceActionSyncResponse, CreateLoRaGatewayRequest, ReleaseStudioProductRequest, CreateProjectResponse, DescribeDeviceDataHistoryResponse, DeleteProjectResponse, CreateTopicPolicyResponse, CreateDeviceResponse, CreateDeviceRequest, DeletePositionSpaceRequest, GetStudioProductListRequest, DescribeFirmwareTaskResponse, DisableTopicRuleResponse, GetCOSURLRequest, CreateProjectRequest, CreateFenceBindRequest, DescribeDeviceResponse, ListFirmwaresRequest, GetStudioProductListResponse, PublishMessageRequest, ModifyTopicRuleRequest, GetDeviceListRequest, ModifySpacePropertyRequest, GetPositionSpaceListResponse, GetCOSURLResponse, ModifyFenceBindRequest, GetTopicRuleListResponse, DescribeFenceEventListRequest, ModifyPositionSpaceRequest, GetLoRaGatewayListResponse, DirectBindDeviceInFamilyResponse, CallDeviceActionAsyncRequest, CallDeviceActionAsyncResponse, DeleteFenceBindResponse, DeleteTopicPolicyRequest, CreateFenceBindResponse, DescribeFenceBindListRequest, CreatePositionFenceResponse, DescribeTopicRuleResponse,
|
|
2
|
+
import { UpdateDevicesEnableStateResponse, DeleteProjectRequest, DeleteFenceBindRequest, DescribeModelDefinitionResponse, DeleteDevicesResponse, ModifyStudioProductResponse, DeleteStudioProductResponse, GetPositionSpaceListRequest, GetDeviceListResponse, DeleteLoRaFrequencyResponse, DescribeTopicPolicyRequest, ModifyPositionFenceRequest, DeleteTopicRuleResponse, ModifyModelDefinitionRequest, CreateStudioProductResponse, CallDeviceActionSyncRequest, DescribeDevicePositionListRequest, GetDeviceLocationHistoryResponse, UpdateFirmwareResponse, ModifyPositionFenceResponse, ModifyStudioProductRequest, ModifyPositionSpaceResponse, CreateStudioProductRequest, ModifyFenceBindResponse, CreateBatchProductionRequest, DeletePositionFenceResponse, UploadFirmwareRequest, ListEventHistoryRequest, SearchTopicRuleRequest, DescribeDeviceDataRequest, ListTopicPolicyResponse, SearchPositionSpaceResponse, DescribePositionFenceListResponse, GetDeviceLocationHistoryRequest, DescribeDevicePositionListResponse, GetProjectListResponse, DescribeStudioProductResponse, DescribeProjectResponse, SearchStudioProductResponse, GetTopicRuleListRequest, DescribeBatchProductionResponse, ListTopicPolicyRequest, DescribeLoRaFrequencyRequest, DeleteDeviceRequest, DeleteLoRaFrequencyRequest, ControlDeviceDataRequest, ListFirmwaresResponse, ReleaseStudioProductResponse, DescribeSpaceFenceEventListResponse, DeleteLoRaGatewayRequest, DescribeTopicPolicyResponse, SearchPositionSpaceRequest, ModifyTopicPolicyResponse, SearchTopicRuleResponse, DescribeFenceEventListResponse, UpdateDevicesEnableStateRequest, DescribeTopicRuleRequest, CallDeviceActionSyncResponse, CreateLoRaGatewayRequest, ReleaseStudioProductRequest, CreateProjectResponse, DescribeDeviceDataHistoryResponse, DeleteProjectResponse, CreateTopicPolicyResponse, CreateDeviceResponse, CreateDeviceRequest, DeletePositionSpaceRequest, GetStudioProductListRequest, DescribeFirmwareTaskResponse, DisableTopicRuleResponse, GetCOSURLRequest, CreateProjectRequest, CreateFenceBindRequest, DescribeDeviceResponse, ListFirmwaresRequest, GetStudioProductListResponse, PublishMessageRequest, ModifyTopicRuleRequest, GetDeviceListRequest, ModifySpacePropertyRequest, GetPositionSpaceListResponse, GetCOSURLResponse, ModifyFenceBindRequest, GetTopicRuleListResponse, DescribeFenceEventListRequest, ModifyPositionSpaceRequest, GetLoRaGatewayListResponse, DirectBindDeviceInFamilyResponse, CallDeviceActionAsyncRequest, CallDeviceActionAsyncResponse, DeleteFenceBindResponse, DeleteTopicPolicyRequest, CreateFenceBindResponse, DescribeFenceBindListRequest, CreatePositionFenceResponse, DescribeTopicRuleResponse, DescribeDeviceRequest, DescribePositionFenceListRequest, ModifyTopicRuleResponse, DescribeBatchProductionRequest, CreateTopicPolicyRequest, DirectBindDeviceInFamilyRequest, DescribeLoRaFrequencyResponse, DescribeSpaceFenceEventListRequest, GetLoRaGatewayListRequest, DescribeProjectRequest, ModifyLoRaFrequencyRequest, UploadFirmwareResponse, ModifyTopicPolicyRequest, DeleteTopicRuleRequest, CreateLoRaGatewayResponse, DeleteTopicPolicyResponse, DeleteLoRaGatewayResponse, CreateLoRaFrequencyRequest, ControlDeviceDataResponse, DescribeDeviceDataHistoryRequest, UpdateFirmwareRequest, DescribeStudioProductRequest, CreatePositionSpaceResponse, CreateBatchProductionResponse, ModifyModelDefinitionResponse, DeletePositionFenceRequest, GetProjectListRequest, DeletePositionSpaceResponse, CreateLoRaFrequencyResponse, EnableTopicRuleResponse, SearchStudioProductRequest, DeleteDevicesRequest, ModifyProjectResponse, DeleteStudioProductRequest, ModifyProjectRequest, ModifySpacePropertyResponse, PublishMessageResponse, ModifyLoRaGatewayResponse, DescribeFenceBindListResponse, CreatePositionFenceRequest, DescribeModelDefinitionRequest, DisableTopicRuleRequest, CreateTopicRuleResponse, DescribeDeviceDataResponse, CreateTopicRuleRequest, GetBatchProductionsListRequest, DeleteDeviceResponse, ModifyLoRaFrequencyResponse, ModifyLoRaGatewayRequest, ListEventHistoryResponse, GetBatchProductionsListResponse, EnableTopicRuleRequest, DescribeFirmwareTaskRequest, CreatePositionSpaceRequest } from "./iotexplorer_models";
|
|
3
3
|
/**
|
|
4
4
|
* iotexplorer client
|
|
5
5
|
* @class
|
|
@@ -27,9 +27,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
27
27
|
*/
|
|
28
28
|
SearchPositionSpace(req: SearchPositionSpaceRequest, cb?: (error: string, rep: SearchPositionSpaceResponse) => void): Promise<SearchPositionSpaceResponse>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* 获取量产详情信息。
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
DescribeBatchProduction(req: DescribeBatchProductionRequest, cb?: (error: string, rep: DescribeBatchProductionResponse) => void): Promise<DescribeBatchProductionResponse>;
|
|
33
33
|
/**
|
|
34
34
|
* 直接绑定设备和家庭
|
|
35
35
|
*/
|
|
@@ -110,6 +110,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
110
110
|
* 修改规则
|
|
111
111
|
*/
|
|
112
112
|
ModifyTopicRule(req: ModifyTopicRuleRequest, cb?: (error: string, rep: ModifyTopicRuleResponse) => void): Promise<ModifyTopicRuleResponse>;
|
|
113
|
+
/**
|
|
114
|
+
* 根据设备产品ID、设备名称,获取设备上报的属性数据。
|
|
115
|
+
*/
|
|
116
|
+
DescribeDeviceData(req: DescribeDeviceDataRequest, cb?: (error: string, rep: DescribeDeviceDataResponse) => void): Promise<DescribeDeviceDataResponse>;
|
|
113
117
|
/**
|
|
114
118
|
* 本接口(DescribeTopicPolicy)用于查看Topic详细信息
|
|
115
119
|
*/
|
|
@@ -246,6 +250,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
246
250
|
* 提供修改产品的数据模板的能力
|
|
247
251
|
*/
|
|
248
252
|
ModifyModelDefinition(req: ModifyModelDefinitionRequest, cb?: (error: string, rep: ModifyModelDefinitionResponse) => void): Promise<ModifyModelDefinitionResponse>;
|
|
253
|
+
/**
|
|
254
|
+
* 用于新建批量生产设备
|
|
255
|
+
*/
|
|
256
|
+
CreateBatchProduction(req: CreateBatchProductionRequest, cb?: (error: string, rep: CreateBatchProductionResponse) => void): Promise<CreateBatchProductionResponse>;
|
|
249
257
|
/**
|
|
250
258
|
* 删除位置空间
|
|
251
259
|
*/
|
|
@@ -254,6 +262,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
254
262
|
* 查询产品配置的数据模板信息
|
|
255
263
|
*/
|
|
256
264
|
DescribeModelDefinition(req: DescribeModelDefinitionRequest, cb?: (error: string, rep: DescribeModelDefinitionResponse) => void): Promise<DescribeModelDefinitionResponse>;
|
|
265
|
+
/**
|
|
266
|
+
* 列出量产数据列表信息。
|
|
267
|
+
*/
|
|
268
|
+
GetBatchProductionsList(req: GetBatchProductionsListRequest, cb?: (error: string, rep: GetBatchProductionsListResponse) => void): Promise<GetBatchProductionsListResponse>;
|
|
257
269
|
/**
|
|
258
270
|
* 为用户提供新建项目的能力,用于集中管理产品和应用。
|
|
259
271
|
*/
|
|
@@ -58,10 +58,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
58
58
|
return this.request("SearchPositionSpace", req, cb);
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* 获取量产详情信息。
|
|
62
62
|
*/
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
63
|
+
async DescribeBatchProduction(req, cb) {
|
|
64
|
+
return this.request("DescribeBatchProduction", req, cb);
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
67
|
* 直接绑定设备和家庭
|
|
@@ -183,6 +183,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
183
183
|
async ModifyTopicRule(req, cb) {
|
|
184
184
|
return this.request("ModifyTopicRule", req, cb);
|
|
185
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
* 根据设备产品ID、设备名称,获取设备上报的属性数据。
|
|
188
|
+
*/
|
|
189
|
+
async DescribeDeviceData(req, cb) {
|
|
190
|
+
return this.request("DescribeDeviceData", req, cb);
|
|
191
|
+
}
|
|
186
192
|
/**
|
|
187
193
|
* 本接口(DescribeTopicPolicy)用于查看Topic详细信息
|
|
188
194
|
*/
|
|
@@ -387,6 +393,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
387
393
|
async ModifyModelDefinition(req, cb) {
|
|
388
394
|
return this.request("ModifyModelDefinition", req, cb);
|
|
389
395
|
}
|
|
396
|
+
/**
|
|
397
|
+
* 用于新建批量生产设备
|
|
398
|
+
*/
|
|
399
|
+
async CreateBatchProduction(req, cb) {
|
|
400
|
+
return this.request("CreateBatchProduction", req, cb);
|
|
401
|
+
}
|
|
390
402
|
/**
|
|
391
403
|
* 删除位置空间
|
|
392
404
|
*/
|
|
@@ -399,6 +411,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
399
411
|
async DescribeModelDefinition(req, cb) {
|
|
400
412
|
return this.request("DescribeModelDefinition", req, cb);
|
|
401
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* 列出量产数据列表信息。
|
|
416
|
+
*/
|
|
417
|
+
async GetBatchProductionsList(req, cb) {
|
|
418
|
+
return this.request("GetBatchProductionsList", req, cb);
|
|
419
|
+
}
|
|
402
420
|
/**
|
|
403
421
|
* 为用户提供新建项目的能力,用于集中管理产品和应用。
|
|
404
422
|
*/
|