tencentcloud-sdk-nodejs-iotexplorer 4.0.1008 → 4.0.1010
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/package.json +1 -1
- package/products.md +50 -50
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +70 -14
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +286 -12
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +21 -5
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +30 -6
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +270 -12
|
@@ -358,6 +358,20 @@ export interface DescribeCloudStoragePackageConsumeDetailsRequest {
|
|
|
358
358
|
*/
|
|
359
359
|
EndDate: string;
|
|
360
360
|
}
|
|
361
|
+
/**
|
|
362
|
+
* DescribeActivateLicenseService返回参数结构体
|
|
363
|
+
*/
|
|
364
|
+
export interface DescribeActivateLicenseServiceResponse {
|
|
365
|
+
/**
|
|
366
|
+
* 增值服务激活码信息
|
|
367
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
368
|
+
*/
|
|
369
|
+
Data?: Array<LicenseServiceNumInfo>;
|
|
370
|
+
/**
|
|
371
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
372
|
+
*/
|
|
373
|
+
RequestId?: string;
|
|
374
|
+
}
|
|
361
375
|
/**
|
|
362
376
|
* wifi定位信息
|
|
363
377
|
*/
|
|
@@ -447,9 +461,17 @@ export interface DescribeSpaceFenceEventListResponse {
|
|
|
447
461
|
RequestId?: string;
|
|
448
462
|
}
|
|
449
463
|
/**
|
|
450
|
-
*
|
|
464
|
+
* SearchTopicRule返回参数结构体
|
|
451
465
|
*/
|
|
452
|
-
export interface
|
|
466
|
+
export interface SearchTopicRuleResponse {
|
|
467
|
+
/**
|
|
468
|
+
* 搜索到的规则总数
|
|
469
|
+
*/
|
|
470
|
+
TotalCnt?: number;
|
|
471
|
+
/**
|
|
472
|
+
* 规则信息列表
|
|
473
|
+
*/
|
|
474
|
+
Rules?: Array<TopicRuleInfo>;
|
|
453
475
|
/**
|
|
454
476
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
455
477
|
*/
|
|
@@ -904,6 +926,19 @@ export interface FenceEventItem {
|
|
|
904
926
|
*/
|
|
905
927
|
Data: FenceAlarmPoint;
|
|
906
928
|
}
|
|
929
|
+
/**
|
|
930
|
+
* 已注册通信类型信息
|
|
931
|
+
*/
|
|
932
|
+
export interface RegisteredDeviceNetTypeInfo {
|
|
933
|
+
/**
|
|
934
|
+
* 普通设备数
|
|
935
|
+
*/
|
|
936
|
+
NormalDeviceNum: number;
|
|
937
|
+
/**
|
|
938
|
+
* 蓝牙设备数
|
|
939
|
+
*/
|
|
940
|
+
BluetoothDeviceNum: number;
|
|
941
|
+
}
|
|
907
942
|
/**
|
|
908
943
|
* DescribeGatewaySubDeviceList请求参数结构体
|
|
909
944
|
*/
|
|
@@ -1662,6 +1697,26 @@ export interface DescribeCloudStorageUsersRequest {
|
|
|
1662
1697
|
*/
|
|
1663
1698
|
Offset: number;
|
|
1664
1699
|
}
|
|
1700
|
+
/**
|
|
1701
|
+
* TWeCall信息
|
|
1702
|
+
*/
|
|
1703
|
+
export interface TWeCallLicenseInfo {
|
|
1704
|
+
/**
|
|
1705
|
+
* voip类型
|
|
1706
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1707
|
+
*/
|
|
1708
|
+
TWeCallType?: string;
|
|
1709
|
+
/**
|
|
1710
|
+
* 总数
|
|
1711
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1712
|
+
*/
|
|
1713
|
+
TotalNum?: number;
|
|
1714
|
+
/**
|
|
1715
|
+
* 已使用
|
|
1716
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1717
|
+
*/
|
|
1718
|
+
UsedNum?: number;
|
|
1719
|
+
}
|
|
1665
1720
|
/**
|
|
1666
1721
|
* DescribeCloudStorageDate请求参数结构体
|
|
1667
1722
|
*/
|
|
@@ -1875,6 +1930,10 @@ export interface BindProductInfo {
|
|
|
1875
1930
|
*/
|
|
1876
1931
|
ProductOwnerName: string;
|
|
1877
1932
|
}
|
|
1933
|
+
/**
|
|
1934
|
+
* DescribeFreeCloudStorageNum请求参数结构体
|
|
1935
|
+
*/
|
|
1936
|
+
export declare type DescribeFreeCloudStorageNumRequest = null;
|
|
1878
1937
|
/**
|
|
1879
1938
|
* DescribeDevicePositionList请求参数结构体
|
|
1880
1939
|
*/
|
|
@@ -2921,6 +2980,20 @@ export interface DeletePositionSpaceResponse {
|
|
|
2921
2980
|
*/
|
|
2922
2981
|
RequestId?: string;
|
|
2923
2982
|
}
|
|
2983
|
+
/**
|
|
2984
|
+
* DescribeActivateDevice返回参数结构体
|
|
2985
|
+
*/
|
|
2986
|
+
export interface DescribeActivateDeviceResponse {
|
|
2987
|
+
/**
|
|
2988
|
+
* 设备激活详情信息
|
|
2989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2990
|
+
*/
|
|
2991
|
+
Data: ActivateDeviceInfo;
|
|
2992
|
+
/**
|
|
2993
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2994
|
+
*/
|
|
2995
|
+
RequestId?: string;
|
|
2996
|
+
}
|
|
2924
2997
|
/**
|
|
2925
2998
|
* ResetTWeCallDevice返回参数结构体
|
|
2926
2999
|
*/
|
|
@@ -3310,6 +3383,15 @@ export interface DescribeDeviceLocationSolveRequest {
|
|
|
3310
3383
|
*/
|
|
3311
3384
|
WiFiInfo?: Array<WifiInfo>;
|
|
3312
3385
|
}
|
|
3386
|
+
/**
|
|
3387
|
+
* DescribeVideoLicense请求参数结构体
|
|
3388
|
+
*/
|
|
3389
|
+
export interface DescribeVideoLicenseRequest {
|
|
3390
|
+
/**
|
|
3391
|
+
* 实例ID
|
|
3392
|
+
*/
|
|
3393
|
+
InstanceId: string;
|
|
3394
|
+
}
|
|
3313
3395
|
/**
|
|
3314
3396
|
* DescribeCloudStorageAIService返回参数结构体
|
|
3315
3397
|
*/
|
|
@@ -3749,6 +3831,15 @@ export interface DeletePositionSpaceRequest {
|
|
|
3749
3831
|
*/
|
|
3750
3832
|
SpaceId: string;
|
|
3751
3833
|
}
|
|
3834
|
+
/**
|
|
3835
|
+
* DescribeActivateDevice请求参数结构体
|
|
3836
|
+
*/
|
|
3837
|
+
export interface DescribeActivateDeviceRequest {
|
|
3838
|
+
/**
|
|
3839
|
+
* 实例ID
|
|
3840
|
+
*/
|
|
3841
|
+
InstanceId: string;
|
|
3842
|
+
}
|
|
3752
3843
|
/**
|
|
3753
3844
|
* CreateProject请求参数结构体
|
|
3754
3845
|
*/
|
|
@@ -4061,6 +4152,23 @@ export interface DescribeDeviceFirmWareResponse {
|
|
|
4061
4152
|
*/
|
|
4062
4153
|
RequestId?: string;
|
|
4063
4154
|
}
|
|
4155
|
+
/**
|
|
4156
|
+
* 已注册设备类型信息
|
|
4157
|
+
*/
|
|
4158
|
+
export interface RegisteredDeviceTypeInfo {
|
|
4159
|
+
/**
|
|
4160
|
+
* 已注册设备数
|
|
4161
|
+
*/
|
|
4162
|
+
NormalDeviceNum: number;
|
|
4163
|
+
/**
|
|
4164
|
+
* 已注册网关数
|
|
4165
|
+
*/
|
|
4166
|
+
GatewayDeviceNum: number;
|
|
4167
|
+
/**
|
|
4168
|
+
* 已注册子设备数
|
|
4169
|
+
*/
|
|
4170
|
+
SubDeviceNum: number;
|
|
4171
|
+
}
|
|
4064
4172
|
/**
|
|
4065
4173
|
* 缩略图信息
|
|
4066
4174
|
*/
|
|
@@ -4093,6 +4201,28 @@ export interface DescribeFenceEventListResponse {
|
|
|
4093
4201
|
*/
|
|
4094
4202
|
RequestId?: string;
|
|
4095
4203
|
}
|
|
4204
|
+
/**
|
|
4205
|
+
* 增值服务数量统计
|
|
4206
|
+
*/
|
|
4207
|
+
export interface LicenseServiceNumInfo {
|
|
4208
|
+
/**
|
|
4209
|
+
* 服务类型
|
|
4210
|
+
*/
|
|
4211
|
+
LicenseType?: string;
|
|
4212
|
+
/**
|
|
4213
|
+
* 授权总数
|
|
4214
|
+
*/
|
|
4215
|
+
TotalNum?: number;
|
|
4216
|
+
/**
|
|
4217
|
+
* 已使用授权数
|
|
4218
|
+
*/
|
|
4219
|
+
UsedNum?: number;
|
|
4220
|
+
/**
|
|
4221
|
+
* TWeCall激活码
|
|
4222
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4223
|
+
*/
|
|
4224
|
+
TWeCallLicense?: Array<TWeCallLicenseInfo>;
|
|
4225
|
+
}
|
|
4096
4226
|
/**
|
|
4097
4227
|
* TRTC 的参数 可以用来加入房间
|
|
4098
4228
|
*/
|
|
@@ -4378,6 +4508,27 @@ export interface PositionFenceItem {
|
|
|
4378
4508
|
*/
|
|
4379
4509
|
FenceArea: string;
|
|
4380
4510
|
}
|
|
4511
|
+
/**
|
|
4512
|
+
* 视频设备激活码统计
|
|
4513
|
+
*/
|
|
4514
|
+
export interface VideoLicenseEntity {
|
|
4515
|
+
/**
|
|
4516
|
+
* 激活码类型,取值范围如下:0_5_mbps、1_mbps、1_5_mbps、2_mbps
|
|
4517
|
+
*/
|
|
4518
|
+
Type?: string;
|
|
4519
|
+
/**
|
|
4520
|
+
* 有效激活码总数
|
|
4521
|
+
*/
|
|
4522
|
+
TotalCount?: number;
|
|
4523
|
+
/**
|
|
4524
|
+
* 待使用的激活码数量
|
|
4525
|
+
*/
|
|
4526
|
+
UsedCount?: number;
|
|
4527
|
+
/**
|
|
4528
|
+
* 即将过期的激活码数量
|
|
4529
|
+
*/
|
|
4530
|
+
ExpiresSoonCount?: number;
|
|
4531
|
+
}
|
|
4381
4532
|
/**
|
|
4382
4533
|
* GetCOSURL返回参数结构体
|
|
4383
4534
|
*/
|
|
@@ -4440,6 +4591,31 @@ export interface GenerateCloudStorageAIServiceTaskFileURLResponse {
|
|
|
4440
4591
|
*/
|
|
4441
4592
|
RequestId?: string;
|
|
4442
4593
|
}
|
|
4594
|
+
/**
|
|
4595
|
+
* 设备激活详情信息
|
|
4596
|
+
*/
|
|
4597
|
+
export interface ActivateDeviceInfo {
|
|
4598
|
+
/**
|
|
4599
|
+
* 实例ID
|
|
4600
|
+
*/
|
|
4601
|
+
InstanceId: string;
|
|
4602
|
+
/**
|
|
4603
|
+
* 实例类型
|
|
4604
|
+
*/
|
|
4605
|
+
InstanceType: number;
|
|
4606
|
+
/**
|
|
4607
|
+
* 设备激活信息
|
|
4608
|
+
*/
|
|
4609
|
+
DeviceActivationDetails: DeviceActivationDetail;
|
|
4610
|
+
/**
|
|
4611
|
+
* 已注册设备类型信息
|
|
4612
|
+
*/
|
|
4613
|
+
RegisteredDeviceType: RegisteredDeviceTypeInfo;
|
|
4614
|
+
/**
|
|
4615
|
+
* 已注册设备通信类型信息
|
|
4616
|
+
*/
|
|
4617
|
+
RegisteredDeviceNetType: RegisteredDeviceNetTypeInfo;
|
|
4618
|
+
}
|
|
4443
4619
|
/**
|
|
4444
4620
|
* ResetTWeCallDevice请求参数结构体
|
|
4445
4621
|
*/
|
|
@@ -4704,6 +4880,20 @@ export interface SearchStudioProductResponse {
|
|
|
4704
4880
|
*/
|
|
4705
4881
|
RequestId?: string;
|
|
4706
4882
|
}
|
|
4883
|
+
/**
|
|
4884
|
+
* DescribeVideoLicense返回参数结构体
|
|
4885
|
+
*/
|
|
4886
|
+
export interface DescribeVideoLicenseResponse {
|
|
4887
|
+
/**
|
|
4888
|
+
* 视频激活码分类概览
|
|
4889
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4890
|
+
*/
|
|
4891
|
+
License?: Array<VideoLicenseEntity>;
|
|
4892
|
+
/**
|
|
4893
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4894
|
+
*/
|
|
4895
|
+
RequestId?: string;
|
|
4896
|
+
}
|
|
4707
4897
|
/**
|
|
4708
4898
|
* DescribePackageConsumeTasks请求参数结构体
|
|
4709
4899
|
*/
|
|
@@ -4732,17 +4922,9 @@ export interface GetFamilyDeviceUserListResponse {
|
|
|
4732
4922
|
RequestId?: string;
|
|
4733
4923
|
}
|
|
4734
4924
|
/**
|
|
4735
|
-
*
|
|
4925
|
+
* DeleteLoRaGateway返回参数结构体
|
|
4736
4926
|
*/
|
|
4737
|
-
export interface
|
|
4738
|
-
/**
|
|
4739
|
-
* 搜索到的规则总数
|
|
4740
|
-
*/
|
|
4741
|
-
TotalCnt?: number;
|
|
4742
|
-
/**
|
|
4743
|
-
* 规则信息列表
|
|
4744
|
-
*/
|
|
4745
|
-
Rules?: Array<TopicRuleInfo>;
|
|
4927
|
+
export interface DeleteLoRaGatewayResponse {
|
|
4746
4928
|
/**
|
|
4747
4929
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4748
4930
|
*/
|
|
@@ -5102,6 +5284,19 @@ export interface DescribeCloudStorageOrderResponse {
|
|
|
5102
5284
|
*/
|
|
5103
5285
|
RequestId?: string;
|
|
5104
5286
|
}
|
|
5287
|
+
/**
|
|
5288
|
+
* DescribeActivateLicenseService请求参数结构体
|
|
5289
|
+
*/
|
|
5290
|
+
export interface DescribeActivateLicenseServiceRequest {
|
|
5291
|
+
/**
|
|
5292
|
+
* 实例ID
|
|
5293
|
+
*/
|
|
5294
|
+
InstanceId: string;
|
|
5295
|
+
/**
|
|
5296
|
+
* 激活码类型
|
|
5297
|
+
*/
|
|
5298
|
+
LicenseType?: string;
|
|
5299
|
+
}
|
|
5105
5300
|
/**
|
|
5106
5301
|
* CreateTRTCSignaturesWithRoomId返回参数结构体
|
|
5107
5302
|
*/
|
|
@@ -5316,6 +5511,27 @@ export interface DeleteProjectRequest {
|
|
|
5316
5511
|
*/
|
|
5317
5512
|
ProjectId: string;
|
|
5318
5513
|
}
|
|
5514
|
+
/**
|
|
5515
|
+
* 云存套餐包信息
|
|
5516
|
+
*/
|
|
5517
|
+
export interface CloudStoragePackageInfo {
|
|
5518
|
+
/**
|
|
5519
|
+
* 套餐包id
|
|
5520
|
+
*/
|
|
5521
|
+
PackageId?: string;
|
|
5522
|
+
/**
|
|
5523
|
+
* 套餐包名字
|
|
5524
|
+
*/
|
|
5525
|
+
PackageName?: string;
|
|
5526
|
+
/**
|
|
5527
|
+
* 套餐包数量
|
|
5528
|
+
*/
|
|
5529
|
+
Num?: number;
|
|
5530
|
+
/**
|
|
5531
|
+
* 已使用数量
|
|
5532
|
+
*/
|
|
5533
|
+
UsedNum?: number;
|
|
5534
|
+
}
|
|
5319
5535
|
/**
|
|
5320
5536
|
* ProductId -> DeviceName
|
|
5321
5537
|
*/
|
|
@@ -6784,6 +7000,19 @@ export interface DescribeCloudStorageDateResponse {
|
|
|
6784
7000
|
*/
|
|
6785
7001
|
RequestId?: string;
|
|
6786
7002
|
}
|
|
7003
|
+
/**
|
|
7004
|
+
* DescribeFreeCloudStorageNum返回参数结构体
|
|
7005
|
+
*/
|
|
7006
|
+
export interface DescribeFreeCloudStorageNumResponse {
|
|
7007
|
+
/**
|
|
7008
|
+
* 套餐包信息
|
|
7009
|
+
*/
|
|
7010
|
+
PackageInfos?: Array<CloudStoragePackageInfo>;
|
|
7011
|
+
/**
|
|
7012
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7013
|
+
*/
|
|
7014
|
+
RequestId?: string;
|
|
7015
|
+
}
|
|
6787
7016
|
/**
|
|
6788
7017
|
* 云存时间轴信息
|
|
6789
7018
|
*/
|
|
@@ -6889,6 +7118,35 @@ export interface DeleteTopicPolicyResponse {
|
|
|
6889
7118
|
*/
|
|
6890
7119
|
RequestId?: string;
|
|
6891
7120
|
}
|
|
7121
|
+
/**
|
|
7122
|
+
* 设备激活详情信息
|
|
7123
|
+
*/
|
|
7124
|
+
export interface DeviceActivationDetail {
|
|
7125
|
+
/**
|
|
7126
|
+
* 可注册设备数
|
|
7127
|
+
*/
|
|
7128
|
+
TotalDeviceNum: number;
|
|
7129
|
+
/**
|
|
7130
|
+
* 已注册设备数
|
|
7131
|
+
*/
|
|
7132
|
+
UsedDeviceNum: number;
|
|
7133
|
+
/**
|
|
7134
|
+
* 设备授权数
|
|
7135
|
+
*/
|
|
7136
|
+
TotalNormalLicense: number;
|
|
7137
|
+
/**
|
|
7138
|
+
* 已使用设备授权数
|
|
7139
|
+
*/
|
|
7140
|
+
UsedNormalLicense: number;
|
|
7141
|
+
/**
|
|
7142
|
+
* 蓝牙授权数
|
|
7143
|
+
*/
|
|
7144
|
+
TotalBluetoothLicense: number;
|
|
7145
|
+
/**
|
|
7146
|
+
* 已使用蓝牙授权数
|
|
7147
|
+
*/
|
|
7148
|
+
UsedBluetoothLicense: number;
|
|
7149
|
+
}
|
|
6892
7150
|
/**
|
|
6893
7151
|
* UnbindDevices返回参数结构体
|
|
6894
7152
|
*/
|