tencentcloud-sdk-nodejs-iotexplorer 4.1.299 → 4.1.301
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/es/services/iotexplorer/v20190423/iotexplorer_client.js +37 -10
- package/package.json +1 -2
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +47 -11
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +69 -15
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +648 -181
|
@@ -15,6 +15,15 @@ export interface UpdateDevicesEnableStateResponse {
|
|
|
15
15
|
*/
|
|
16
16
|
RequestId?: string;
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* DeleteTWeSeePerson返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface DeleteTWeSeePersonResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string;
|
|
26
|
+
}
|
|
18
27
|
/**
|
|
19
28
|
* 云存套餐包消耗统计
|
|
20
29
|
*/
|
|
@@ -395,6 +404,15 @@ export interface DescribeCloudStorageAIServiceTaskRequest {
|
|
|
395
404
|
*/
|
|
396
405
|
FileURLExpireTime?: number;
|
|
397
406
|
}
|
|
407
|
+
/**
|
|
408
|
+
* TWeSee 人脸识别结果
|
|
409
|
+
*/
|
|
410
|
+
export interface SeeFaceRecognitionResult {
|
|
411
|
+
/**
|
|
412
|
+
* 识别到的人员列表
|
|
413
|
+
*/
|
|
414
|
+
Persons?: Array<SeeTaskPersonInfo>;
|
|
415
|
+
}
|
|
398
416
|
/**
|
|
399
417
|
* DescribeCloudStorageThumbnailList请求参数结构体
|
|
400
418
|
*/
|
|
@@ -495,6 +513,31 @@ export interface DescribeCloudStorageUsersResponse {
|
|
|
495
513
|
*/
|
|
496
514
|
RequestId?: string;
|
|
497
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* CreateTWeSeePerson请求参数结构体
|
|
518
|
+
*/
|
|
519
|
+
export interface CreateTWeSeePersonRequest {
|
|
520
|
+
/**
|
|
521
|
+
* 产品 ID
|
|
522
|
+
*/
|
|
523
|
+
ProductId: string;
|
|
524
|
+
/**
|
|
525
|
+
* 设备名称
|
|
526
|
+
*/
|
|
527
|
+
DeviceName: string;
|
|
528
|
+
/**
|
|
529
|
+
* 人员名称,最多 64 个字符
|
|
530
|
+
*/
|
|
531
|
+
Name: string;
|
|
532
|
+
/**
|
|
533
|
+
* 人脸 ID 列表,最多 5 个
|
|
534
|
+
*/
|
|
535
|
+
FaceIds?: Array<string>;
|
|
536
|
+
/**
|
|
537
|
+
* 通道 ID,默认值为 0
|
|
538
|
+
*/
|
|
539
|
+
ChannelId?: number;
|
|
540
|
+
}
|
|
498
541
|
/**
|
|
499
542
|
* 云存上报统计信息
|
|
500
543
|
*/
|
|
@@ -550,6 +593,31 @@ export interface RevokeShareDeviceFromUserRequest {
|
|
|
550
593
|
*/
|
|
551
594
|
ToOpenID: string;
|
|
552
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* TWeSee 任务人员信息
|
|
598
|
+
*/
|
|
599
|
+
export interface SeeTaskPersonInfo {
|
|
600
|
+
/**
|
|
601
|
+
* 该人员在任务中的人脸列表
|
|
602
|
+
*/
|
|
603
|
+
Faces?: Array<SeeTaskFaceInfo>;
|
|
604
|
+
/**
|
|
605
|
+
* 是否已标记为持久记忆
|
|
606
|
+
*/
|
|
607
|
+
IsRemembered?: boolean;
|
|
608
|
+
/**
|
|
609
|
+
* 人员名称
|
|
610
|
+
*/
|
|
611
|
+
Name?: string;
|
|
612
|
+
/**
|
|
613
|
+
* 人员 ID
|
|
614
|
+
*/
|
|
615
|
+
PersonId?: string;
|
|
616
|
+
/**
|
|
617
|
+
* 创建来源。0:自动识别;1:用户创建
|
|
618
|
+
*/
|
|
619
|
+
Source?: number;
|
|
620
|
+
}
|
|
553
621
|
/**
|
|
554
622
|
* DescribeCloudStoragePackageConsumeDetails请求参数结构体
|
|
555
623
|
*/
|
|
@@ -877,6 +945,23 @@ export interface SearchTopicRuleResponse {
|
|
|
877
945
|
*/
|
|
878
946
|
RequestId?: string;
|
|
879
947
|
}
|
|
948
|
+
/**
|
|
949
|
+
* ImportTWeSeeFaces返回参数结构体
|
|
950
|
+
*/
|
|
951
|
+
export interface ImportTWeSeeFacesResponse {
|
|
952
|
+
/**
|
|
953
|
+
* 检测到的人脸列表
|
|
954
|
+
*/
|
|
955
|
+
Faces?: Array<SeeFaceInfo>;
|
|
956
|
+
/**
|
|
957
|
+
* 本次人脸导入任务 ID
|
|
958
|
+
*/
|
|
959
|
+
TaskId?: string;
|
|
960
|
+
/**
|
|
961
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
962
|
+
*/
|
|
963
|
+
RequestId?: string;
|
|
964
|
+
}
|
|
880
965
|
/**
|
|
881
966
|
* ModifyCloudStorageAIService返回参数结构体
|
|
882
967
|
*/
|
|
@@ -891,30 +976,27 @@ export interface ModifyCloudStorageAIServiceResponse {
|
|
|
891
976
|
*/
|
|
892
977
|
export interface InvokeTWeSeeComprehensionRequest {
|
|
893
978
|
/**
|
|
894
|
-
*
|
|
979
|
+
* <p>输入视频 / 图片的 URL</p>
|
|
895
980
|
*/
|
|
896
981
|
InputURL: string;
|
|
897
982
|
/**
|
|
898
|
-
*
|
|
899
|
-
|
|
900
|
-
- `VID_COMP`:视频理解
|
|
901
|
-
- `IMG_COMP`:图片理解
|
|
983
|
+
* <p>算法类型。可选值:</p><ul><li><code>VID_COMP</code>:视频理解</li><li><code>IMG_COMP</code>:图片理解</li></ul>
|
|
902
984
|
*/
|
|
903
985
|
ServiceType: string;
|
|
904
986
|
/**
|
|
905
|
-
*
|
|
987
|
+
* <p>任务元数据</p>
|
|
906
988
|
*/
|
|
907
989
|
Metadata?: SeeTaskMetadata;
|
|
908
990
|
/**
|
|
909
|
-
*
|
|
991
|
+
* <p>视觉理解配置项</p>
|
|
910
992
|
*/
|
|
911
993
|
ComprehensionConfig?: SeeComprehensionConfig;
|
|
912
994
|
/**
|
|
913
|
-
*
|
|
995
|
+
* <p>等待结果的超时时间(单位:秒)。填 0 表示无需等待结果。最大超时时长 25 秒,默认超时时长 20 秒。</p>
|
|
914
996
|
*/
|
|
915
997
|
WaitResultTimeout?: number;
|
|
916
998
|
/**
|
|
917
|
-
*
|
|
999
|
+
* <p>回调目标 ID</p>
|
|
918
1000
|
*/
|
|
919
1001
|
CallbackId?: string;
|
|
920
1002
|
}
|
|
@@ -1716,6 +1798,14 @@ export interface SeeComprehensionConfig {
|
|
|
1716
1798
|
* <p>自定义摘要提示词</p>
|
|
1717
1799
|
*/
|
|
1718
1800
|
SummaryPrompt?: string;
|
|
1801
|
+
/**
|
|
1802
|
+
* <p>是否开启人脸检测</p>
|
|
1803
|
+
*/
|
|
1804
|
+
EnableFaceDetection?: boolean;
|
|
1805
|
+
/**
|
|
1806
|
+
* <p>画面旋转角度</p><p>枚举值:</p><ul><li>0: 不旋转</li><li>90: 顺时针旋转90度</li><li>-90: 逆时针旋转90度</li><li>180: 旋转180度</li></ul><p>默认值:0</p>
|
|
1807
|
+
*/
|
|
1808
|
+
InputRotateDegree?: number;
|
|
1719
1809
|
}
|
|
1720
1810
|
/**
|
|
1721
1811
|
* CreateTWeSeeCallback返回参数结构体
|
|
@@ -1747,6 +1837,55 @@ export interface DescribeUnbindedDevicesRequest {
|
|
|
1747
1837
|
*/
|
|
1748
1838
|
Limit: number;
|
|
1749
1839
|
}
|
|
1840
|
+
/**
|
|
1841
|
+
* 设备固件详细信息
|
|
1842
|
+
*/
|
|
1843
|
+
export interface FirmwareInfo {
|
|
1844
|
+
/**
|
|
1845
|
+
* 固件版本
|
|
1846
|
+
*/
|
|
1847
|
+
Version?: string;
|
|
1848
|
+
/**
|
|
1849
|
+
* 固件MD5值
|
|
1850
|
+
*/
|
|
1851
|
+
Md5sum?: string;
|
|
1852
|
+
/**
|
|
1853
|
+
* 固件创建时间
|
|
1854
|
+
*/
|
|
1855
|
+
CreateTime?: number;
|
|
1856
|
+
/**
|
|
1857
|
+
* 产品名称
|
|
1858
|
+
*/
|
|
1859
|
+
ProductName?: string;
|
|
1860
|
+
/**
|
|
1861
|
+
* 固件名称
|
|
1862
|
+
*/
|
|
1863
|
+
Name?: string;
|
|
1864
|
+
/**
|
|
1865
|
+
* 固件描述
|
|
1866
|
+
*/
|
|
1867
|
+
Description?: string;
|
|
1868
|
+
/**
|
|
1869
|
+
* 产品ID
|
|
1870
|
+
*/
|
|
1871
|
+
ProductId?: string;
|
|
1872
|
+
/**
|
|
1873
|
+
* 固件升级模块
|
|
1874
|
+
*/
|
|
1875
|
+
FwType?: string;
|
|
1876
|
+
/**
|
|
1877
|
+
* 创建者子 uin
|
|
1878
|
+
*/
|
|
1879
|
+
CreateUserId?: number;
|
|
1880
|
+
/**
|
|
1881
|
+
* 创建者昵称
|
|
1882
|
+
*/
|
|
1883
|
+
CreatorNickName?: string;
|
|
1884
|
+
/**
|
|
1885
|
+
* 固件用户自定义配置信息
|
|
1886
|
+
*/
|
|
1887
|
+
UserDefined?: string;
|
|
1888
|
+
}
|
|
1750
1889
|
/**
|
|
1751
1890
|
* 已注册通信类型信息
|
|
1752
1891
|
*/
|
|
@@ -1873,6 +2012,39 @@ export interface ModifyTWeSeeSubscriptionRenewFlagRequest {
|
|
|
1873
2012
|
*/
|
|
1874
2013
|
ChannelId?: number;
|
|
1875
2014
|
}
|
|
2015
|
+
/**
|
|
2016
|
+
* TWeSee 人脸元数据
|
|
2017
|
+
*/
|
|
2018
|
+
export interface SeeFaceInfo {
|
|
2019
|
+
/**
|
|
2020
|
+
* 人脸框坐标,依次为左、上、右、下,取值范围为 0 到 1
|
|
2021
|
+
*/
|
|
2022
|
+
BoundingBox?: Array<number>;
|
|
2023
|
+
/**
|
|
2024
|
+
* 人脸 ID
|
|
2025
|
+
*/
|
|
2026
|
+
FaceId?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* 人脸裁剪图 URL
|
|
2029
|
+
*/
|
|
2030
|
+
CropImageURL?: string;
|
|
2031
|
+
/**
|
|
2032
|
+
* 是否为代表人脸
|
|
2033
|
+
*/
|
|
2034
|
+
IsPrototype?: boolean;
|
|
2035
|
+
/**
|
|
2036
|
+
* 人员 ID
|
|
2037
|
+
*/
|
|
2038
|
+
PersonId?: string;
|
|
2039
|
+
/**
|
|
2040
|
+
* 创建来源。0:自动识别;1:图片导入
|
|
2041
|
+
*/
|
|
2042
|
+
Source?: number;
|
|
2043
|
+
/**
|
|
2044
|
+
* 人脸所在画面的毫秒级 UNIX 时间戳
|
|
2045
|
+
*/
|
|
2046
|
+
TimestampMs?: number;
|
|
2047
|
+
}
|
|
1876
2048
|
/**
|
|
1877
2049
|
* GetDeviceList请求参数结构体
|
|
1878
2050
|
*/
|
|
@@ -2429,6 +2601,15 @@ export interface PauseTWeCallDeviceRequest {
|
|
|
2429
2601
|
*/
|
|
2430
2602
|
DeviceList?: Array<TWeCallInfo>;
|
|
2431
2603
|
}
|
|
2604
|
+
/**
|
|
2605
|
+
* ModifyTWeSeePerson返回参数结构体
|
|
2606
|
+
*/
|
|
2607
|
+
export interface ModifyTWeSeePersonResponse {
|
|
2608
|
+
/**
|
|
2609
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2610
|
+
*/
|
|
2611
|
+
RequestId?: string;
|
|
2612
|
+
}
|
|
2432
2613
|
/**
|
|
2433
2614
|
* TWeTalk智能体配置信息描述
|
|
2434
2615
|
*/
|
|
@@ -2714,24 +2895,6 @@ export interface ModifyLoRaFrequencyResponse {
|
|
|
2714
2895
|
*/
|
|
2715
2896
|
RequestId?: string;
|
|
2716
2897
|
}
|
|
2717
|
-
/**
|
|
2718
|
-
* ActivateTWeCallLicense请求参数结构体
|
|
2719
|
-
*/
|
|
2720
|
-
export interface ActivateTWeCallLicenseRequest {
|
|
2721
|
-
/**
|
|
2722
|
-
* TWecall类型:0-体验套餐;1-基础版;3-高级版;
|
|
2723
|
-
*/
|
|
2724
|
-
PkgType: number;
|
|
2725
|
-
/**
|
|
2726
|
-
* 参数已弃用,不用传参
|
|
2727
|
-
* @deprecated
|
|
2728
|
-
*/
|
|
2729
|
-
MiniProgramAppId?: string;
|
|
2730
|
-
/**
|
|
2731
|
-
* 设备列表
|
|
2732
|
-
*/
|
|
2733
|
-
DeviceList?: Array<TWeCallInfo>;
|
|
2734
|
-
}
|
|
2735
2898
|
/**
|
|
2736
2899
|
* 实例信息
|
|
2737
2900
|
公共实例过期时间 0001-01-01T00:00:00Z,公共实例是永久有效
|
|
@@ -3740,6 +3903,31 @@ export interface RevokeShareDeviceFromUserResponse {
|
|
|
3740
3903
|
*/
|
|
3741
3904
|
RequestId?: string;
|
|
3742
3905
|
}
|
|
3906
|
+
/**
|
|
3907
|
+
* DescribeGatewayBindDevices请求参数结构体
|
|
3908
|
+
*/
|
|
3909
|
+
export interface DescribeGatewayBindDevicesRequest {
|
|
3910
|
+
/**
|
|
3911
|
+
* 网关设备的产品ID
|
|
3912
|
+
*/
|
|
3913
|
+
GatewayProductId: string;
|
|
3914
|
+
/**
|
|
3915
|
+
* 网关设备的设备名
|
|
3916
|
+
*/
|
|
3917
|
+
GatewayDeviceName: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* 子产品的ID
|
|
3920
|
+
*/
|
|
3921
|
+
ProductId: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* 分页的偏移
|
|
3924
|
+
*/
|
|
3925
|
+
Offset: number;
|
|
3926
|
+
/**
|
|
3927
|
+
* 分页的页大小
|
|
3928
|
+
*/
|
|
3929
|
+
Limit: number;
|
|
3930
|
+
}
|
|
3743
3931
|
/**
|
|
3744
3932
|
* RevokeBindUserDevice请求参数结构体
|
|
3745
3933
|
*/
|
|
@@ -3941,6 +4129,35 @@ export interface FenceBindDeviceItem {
|
|
|
3941
4129
|
*/
|
|
3942
4130
|
Method: string;
|
|
3943
4131
|
}
|
|
4132
|
+
/**
|
|
4133
|
+
* ModifyTWeSeeFace请求参数结构体
|
|
4134
|
+
*/
|
|
4135
|
+
export interface ModifyTWeSeeFaceRequest {
|
|
4136
|
+
/**
|
|
4137
|
+
* 产品 ID
|
|
4138
|
+
*/
|
|
4139
|
+
ProductId: string;
|
|
4140
|
+
/**
|
|
4141
|
+
* 设备名称
|
|
4142
|
+
*/
|
|
4143
|
+
DeviceName: string;
|
|
4144
|
+
/**
|
|
4145
|
+
* 人员 ID
|
|
4146
|
+
*/
|
|
4147
|
+
PersonId: string;
|
|
4148
|
+
/**
|
|
4149
|
+
* 人脸 ID
|
|
4150
|
+
*/
|
|
4151
|
+
FaceId: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* 通道 ID,默认值为 0
|
|
4154
|
+
*/
|
|
4155
|
+
ChannelId?: number;
|
|
4156
|
+
/**
|
|
4157
|
+
* 是否设为代表人脸。关联未归属的人脸时,默认值为 true
|
|
4158
|
+
*/
|
|
4159
|
+
IsPrototype?: boolean;
|
|
4160
|
+
}
|
|
3944
4161
|
/**
|
|
3945
4162
|
* CreateTWeSeeSubscription返回参数结构体
|
|
3946
4163
|
*/
|
|
@@ -4908,6 +5125,35 @@ export interface DescribeBatchProductionRequest {
|
|
|
4908
5125
|
*/
|
|
4909
5126
|
BatchProductionId: string;
|
|
4910
5127
|
}
|
|
5128
|
+
/**
|
|
5129
|
+
* DirectBindDeviceInFamily请求参数结构体
|
|
5130
|
+
*/
|
|
5131
|
+
export interface DirectBindDeviceInFamilyRequest {
|
|
5132
|
+
/**
|
|
5133
|
+
* 小程序appid
|
|
5134
|
+
*/
|
|
5135
|
+
IotAppID: string;
|
|
5136
|
+
/**
|
|
5137
|
+
* 用户ID
|
|
5138
|
+
*/
|
|
5139
|
+
UserID: string;
|
|
5140
|
+
/**
|
|
5141
|
+
* 家庭ID
|
|
5142
|
+
*/
|
|
5143
|
+
FamilyId: string;
|
|
5144
|
+
/**
|
|
5145
|
+
* 产品ID
|
|
5146
|
+
*/
|
|
5147
|
+
ProductId: string;
|
|
5148
|
+
/**
|
|
5149
|
+
* 设备名
|
|
5150
|
+
*/
|
|
5151
|
+
DeviceName: string;
|
|
5152
|
+
/**
|
|
5153
|
+
* 房间ID
|
|
5154
|
+
*/
|
|
5155
|
+
RoomId?: string;
|
|
5156
|
+
}
|
|
4911
5157
|
/**
|
|
4912
5158
|
* DescribeCloudStorageAIServiceTask返回参数结构体
|
|
4913
5159
|
*/
|
|
@@ -5044,6 +5290,27 @@ export interface DescribeInstanceResponse {
|
|
|
5044
5290
|
*/
|
|
5045
5291
|
RequestId?: string;
|
|
5046
5292
|
}
|
|
5293
|
+
/**
|
|
5294
|
+
* DescribeTWeSeeFace请求参数结构体
|
|
5295
|
+
*/
|
|
5296
|
+
export interface DescribeTWeSeeFaceRequest {
|
|
5297
|
+
/**
|
|
5298
|
+
* 产品 ID
|
|
5299
|
+
*/
|
|
5300
|
+
ProductId: string;
|
|
5301
|
+
/**
|
|
5302
|
+
* 设备名称
|
|
5303
|
+
*/
|
|
5304
|
+
DeviceName: string;
|
|
5305
|
+
/**
|
|
5306
|
+
* 人脸 ID
|
|
5307
|
+
*/
|
|
5308
|
+
FaceId: string;
|
|
5309
|
+
/**
|
|
5310
|
+
* 通道 ID,默认值为 0
|
|
5311
|
+
*/
|
|
5312
|
+
ChannelId?: number;
|
|
5313
|
+
}
|
|
5047
5314
|
/**
|
|
5048
5315
|
* DeleteTWeSeeTasksByCondition请求参数结构体
|
|
5049
5316
|
*/
|
|
@@ -5161,21 +5428,17 @@ export interface CreateLoRaGatewayResponse {
|
|
|
5161
5428
|
RequestId?: string;
|
|
5162
5429
|
}
|
|
5163
5430
|
/**
|
|
5164
|
-
*
|
|
5431
|
+
* ModifyTWeSeeFace返回参数结构体
|
|
5165
5432
|
*/
|
|
5166
|
-
export interface
|
|
5433
|
+
export interface ModifyTWeSeeFaceResponse {
|
|
5167
5434
|
/**
|
|
5168
|
-
*
|
|
5435
|
+
* 人脸元数据
|
|
5169
5436
|
*/
|
|
5170
|
-
|
|
5437
|
+
Face?: SeeFaceInfo;
|
|
5171
5438
|
/**
|
|
5172
|
-
*
|
|
5173
|
-
*/
|
|
5174
|
-
CreateTime?: number;
|
|
5175
|
-
/**
|
|
5176
|
-
* 围栏更新时间
|
|
5439
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5177
5440
|
*/
|
|
5178
|
-
|
|
5441
|
+
RequestId?: string;
|
|
5179
5442
|
}
|
|
5180
5443
|
/**
|
|
5181
5444
|
* DescribeDeviceBindGateway返回参数结构体
|
|
@@ -5325,21 +5588,37 @@ export interface EventHistoryItem {
|
|
|
5325
5588
|
Data?: string;
|
|
5326
5589
|
}
|
|
5327
5590
|
/**
|
|
5328
|
-
*
|
|
5591
|
+
* ListTWeSeePersons请求参数结构体
|
|
5329
5592
|
*/
|
|
5330
|
-
export interface
|
|
5593
|
+
export interface ListTWeSeePersonsRequest {
|
|
5331
5594
|
/**
|
|
5332
|
-
*
|
|
5595
|
+
* 产品 ID
|
|
5333
5596
|
*/
|
|
5334
|
-
|
|
5597
|
+
ProductId: string;
|
|
5335
5598
|
/**
|
|
5336
|
-
*
|
|
5599
|
+
* 设备名称
|
|
5337
5600
|
*/
|
|
5338
|
-
|
|
5601
|
+
DeviceName: string;
|
|
5339
5602
|
/**
|
|
5340
|
-
*
|
|
5603
|
+
* 分页拉取数量,取值范围为 1 到 100
|
|
5341
5604
|
*/
|
|
5342
|
-
|
|
5605
|
+
Limit: number;
|
|
5606
|
+
/**
|
|
5607
|
+
* 分页拉取偏移,默认值为 0
|
|
5608
|
+
*/
|
|
5609
|
+
Offset?: number;
|
|
5610
|
+
/**
|
|
5611
|
+
* 通道 ID,默认值为 0
|
|
5612
|
+
*/
|
|
5613
|
+
ChannelId?: number;
|
|
5614
|
+
/**
|
|
5615
|
+
* 每个人员返回的代表人脸数量,取值范围为 1 到 5,默认值为 1
|
|
5616
|
+
*/
|
|
5617
|
+
FaceLimit?: number;
|
|
5618
|
+
/**
|
|
5619
|
+
* 人员记忆状态。true:仅查询持久记忆人员;false:仅查询非持久记忆人员;不传时查询全部人员
|
|
5620
|
+
*/
|
|
5621
|
+
IsRemembered?: boolean;
|
|
5343
5622
|
}
|
|
5344
5623
|
/**
|
|
5345
5624
|
* CreatePositionSpace返回参数结构体
|
|
@@ -5533,9 +5812,13 @@ export interface ResetTWeCallDeviceResponse {
|
|
|
5533
5812
|
RequestId?: string;
|
|
5534
5813
|
}
|
|
5535
5814
|
/**
|
|
5536
|
-
*
|
|
5815
|
+
* DescribeTWeSeePerson返回参数结构体
|
|
5537
5816
|
*/
|
|
5538
|
-
export interface
|
|
5817
|
+
export interface DescribeTWeSeePersonResponse {
|
|
5818
|
+
/**
|
|
5819
|
+
* 人员信息
|
|
5820
|
+
*/
|
|
5821
|
+
Person?: SeePersonInfo;
|
|
5539
5822
|
/**
|
|
5540
5823
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5541
5824
|
*/
|
|
@@ -5615,6 +5898,35 @@ export interface DescribeCloudStorageResponse {
|
|
|
5615
5898
|
*/
|
|
5616
5899
|
RequestId?: string;
|
|
5617
5900
|
}
|
|
5901
|
+
/**
|
|
5902
|
+
* ModifyTWeSeePerson请求参数结构体
|
|
5903
|
+
*/
|
|
5904
|
+
export interface ModifyTWeSeePersonRequest {
|
|
5905
|
+
/**
|
|
5906
|
+
* 产品 ID
|
|
5907
|
+
*/
|
|
5908
|
+
ProductId: string;
|
|
5909
|
+
/**
|
|
5910
|
+
* 设备名称
|
|
5911
|
+
*/
|
|
5912
|
+
DeviceName: string;
|
|
5913
|
+
/**
|
|
5914
|
+
* 人员 ID
|
|
5915
|
+
*/
|
|
5916
|
+
PersonId: string;
|
|
5917
|
+
/**
|
|
5918
|
+
* 通道 ID,默认值为 0
|
|
5919
|
+
*/
|
|
5920
|
+
ChannelId?: number;
|
|
5921
|
+
/**
|
|
5922
|
+
* 是否标记为持久记忆。
|
|
5923
|
+
*/
|
|
5924
|
+
IsRemembered?: boolean;
|
|
5925
|
+
/**
|
|
5926
|
+
* 人员名称,最多 64 个字符
|
|
5927
|
+
*/
|
|
5928
|
+
Name?: string;
|
|
5929
|
+
}
|
|
5618
5930
|
/**
|
|
5619
5931
|
* 智能体绑定配置
|
|
5620
5932
|
*/
|
|
@@ -5690,6 +6002,19 @@ export interface ListEventHistoryResponse {
|
|
|
5690
6002
|
*/
|
|
5691
6003
|
RequestId?: string;
|
|
5692
6004
|
}
|
|
6005
|
+
/**
|
|
6006
|
+
* DescribeTWeSeeFace返回参数结构体
|
|
6007
|
+
*/
|
|
6008
|
+
export interface DescribeTWeSeeFaceResponse {
|
|
6009
|
+
/**
|
|
6010
|
+
* 人脸元数据
|
|
6011
|
+
*/
|
|
6012
|
+
Face?: SeeFaceInfo;
|
|
6013
|
+
/**
|
|
6014
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6015
|
+
*/
|
|
6016
|
+
RequestId?: string;
|
|
6017
|
+
}
|
|
5693
6018
|
/**
|
|
5694
6019
|
* BatchCreateTWeSeeRecognitionTask请求参数结构体
|
|
5695
6020
|
*/
|
|
@@ -5869,6 +6194,27 @@ export interface DescribeUnbindedDevicesResponse {
|
|
|
5869
6194
|
*/
|
|
5870
6195
|
RequestId?: string;
|
|
5871
6196
|
}
|
|
6197
|
+
/**
|
|
6198
|
+
* DescribeBindedProducts请求参数结构体
|
|
6199
|
+
*/
|
|
6200
|
+
export interface DescribeBindedProductsRequest {
|
|
6201
|
+
/**
|
|
6202
|
+
* 网关产品ID
|
|
6203
|
+
*/
|
|
6204
|
+
GatewayProductId: string;
|
|
6205
|
+
/**
|
|
6206
|
+
* 分页偏移量
|
|
6207
|
+
*/
|
|
6208
|
+
Offset: number;
|
|
6209
|
+
/**
|
|
6210
|
+
* 分页大小
|
|
6211
|
+
*/
|
|
6212
|
+
Limit: number;
|
|
6213
|
+
/**
|
|
6214
|
+
* 是否跨账号绑定产品
|
|
6215
|
+
*/
|
|
6216
|
+
ProductSource?: number;
|
|
6217
|
+
}
|
|
5872
6218
|
/**
|
|
5873
6219
|
* InvokeCloudStorageAIServiceTask请求参数结构体
|
|
5874
6220
|
*/
|
|
@@ -6506,6 +6852,15 @@ export interface GetLoRaGatewayListRequest {
|
|
|
6506
6852
|
*/
|
|
6507
6853
|
Limit?: number;
|
|
6508
6854
|
}
|
|
6855
|
+
/**
|
|
6856
|
+
* DeleteTWeSeeFace返回参数结构体
|
|
6857
|
+
*/
|
|
6858
|
+
export interface DeleteTWeSeeFaceResponse {
|
|
6859
|
+
/**
|
|
6860
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6861
|
+
*/
|
|
6862
|
+
RequestId?: string;
|
|
6863
|
+
}
|
|
6509
6864
|
/**
|
|
6510
6865
|
* ResetCloudStorageAIService返回参数结构体
|
|
6511
6866
|
*/
|
|
@@ -8494,6 +8849,27 @@ export interface InvokeTWeSeeRecognitionTaskWithFileRequest {
|
|
|
8494
8849
|
*/
|
|
8495
8850
|
ObjectDetectConfig?: VisionObjectDetectConfig;
|
|
8496
8851
|
}
|
|
8852
|
+
/**
|
|
8853
|
+
* TWeSee 任务人脸元数据
|
|
8854
|
+
*/
|
|
8855
|
+
export interface SeeTaskFaceInfo {
|
|
8856
|
+
/**
|
|
8857
|
+
* 人脸裁剪图下载 URL,仅在请求 FileURLExpireTime 时返回
|
|
8858
|
+
*/
|
|
8859
|
+
CropImageURL?: string;
|
|
8860
|
+
/**
|
|
8861
|
+
* 人脸 ID
|
|
8862
|
+
*/
|
|
8863
|
+
FaceId?: string;
|
|
8864
|
+
/**
|
|
8865
|
+
* 人员 ID
|
|
8866
|
+
*/
|
|
8867
|
+
PersonId?: string;
|
|
8868
|
+
/**
|
|
8869
|
+
* 人脸所在画面的毫秒级 UNIX 时间戳
|
|
8870
|
+
*/
|
|
8871
|
+
TimestampMs?: number;
|
|
8872
|
+
}
|
|
8497
8873
|
/**
|
|
8498
8874
|
* TWeCall信息
|
|
8499
8875
|
*/
|
|
@@ -9243,29 +9619,29 @@ export interface BatchCreateTWeSeeRecognitionTaskResponse {
|
|
|
9243
9619
|
RequestId?: string;
|
|
9244
9620
|
}
|
|
9245
9621
|
/**
|
|
9246
|
-
*
|
|
9622
|
+
* DescribeTWeSeePerson请求参数结构体
|
|
9247
9623
|
*/
|
|
9248
|
-
export interface
|
|
9624
|
+
export interface DescribeTWeSeePersonRequest {
|
|
9249
9625
|
/**
|
|
9250
|
-
*
|
|
9626
|
+
* 设备名称
|
|
9251
9627
|
*/
|
|
9252
|
-
|
|
9628
|
+
DeviceName: string;
|
|
9253
9629
|
/**
|
|
9254
|
-
*
|
|
9630
|
+
* 人员 ID
|
|
9255
9631
|
*/
|
|
9256
|
-
|
|
9632
|
+
PersonId: string;
|
|
9257
9633
|
/**
|
|
9258
|
-
*
|
|
9634
|
+
* 产品 ID
|
|
9259
9635
|
*/
|
|
9260
9636
|
ProductId: string;
|
|
9261
9637
|
/**
|
|
9262
|
-
*
|
|
9638
|
+
* 通道 ID,默认值为 0
|
|
9263
9639
|
*/
|
|
9264
|
-
|
|
9640
|
+
ChannelId?: number;
|
|
9265
9641
|
/**
|
|
9266
|
-
*
|
|
9642
|
+
* 返回的代表人脸数量,取值范围为 1 到 5,默认值为 1
|
|
9267
9643
|
*/
|
|
9268
|
-
|
|
9644
|
+
FaceLimit?: number;
|
|
9269
9645
|
}
|
|
9270
9646
|
/**
|
|
9271
9647
|
* DescribeGatewaySubProducts请求参数结构体
|
|
@@ -9699,6 +10075,15 @@ export interface DescribeInstanceRequest {
|
|
|
9699
10075
|
*/
|
|
9700
10076
|
ProductId?: string;
|
|
9701
10077
|
}
|
|
10078
|
+
/**
|
|
10079
|
+
* ModifyTWeTalkAgent返回参数结构体
|
|
10080
|
+
*/
|
|
10081
|
+
export interface ModifyTWeTalkAgentResponse {
|
|
10082
|
+
/**
|
|
10083
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10084
|
+
*/
|
|
10085
|
+
RequestId?: string;
|
|
10086
|
+
}
|
|
9702
10087
|
/**
|
|
9703
10088
|
* ShareDeviceToUser请求参数结构体
|
|
9704
10089
|
*/
|
|
@@ -9757,6 +10142,27 @@ export interface CreatePositionSpaceRequest {
|
|
|
9757
10142
|
*/
|
|
9758
10143
|
Icon?: string;
|
|
9759
10144
|
}
|
|
10145
|
+
/**
|
|
10146
|
+
* ImportTWeSeeFaces请求参数结构体
|
|
10147
|
+
*/
|
|
10148
|
+
export interface ImportTWeSeeFacesRequest {
|
|
10149
|
+
/**
|
|
10150
|
+
* 产品 ID
|
|
10151
|
+
*/
|
|
10152
|
+
ProductId: string;
|
|
10153
|
+
/**
|
|
10154
|
+
* 设备名称
|
|
10155
|
+
*/
|
|
10156
|
+
DeviceName: string;
|
|
10157
|
+
/**
|
|
10158
|
+
* 图片 URL,支持 HTTP(S) URL 或 JPG、PNG、BMP 格式的 data URL,图片大小不超过 5 MiB
|
|
10159
|
+
*/
|
|
10160
|
+
ImageURL: string;
|
|
10161
|
+
/**
|
|
10162
|
+
* 通道 ID,默认值为 0
|
|
10163
|
+
*/
|
|
10164
|
+
ChannelId?: number;
|
|
10165
|
+
}
|
|
9760
10166
|
/**
|
|
9761
10167
|
* BindUserDevice请求参数结构体
|
|
9762
10168
|
*/
|
|
@@ -10076,6 +10482,31 @@ export interface ModifyModelDefinitionRequest {
|
|
|
10076
10482
|
*/
|
|
10077
10483
|
ModelSchema: string;
|
|
10078
10484
|
}
|
|
10485
|
+
/**
|
|
10486
|
+
* ListTWeSeePersons返回参数结构体
|
|
10487
|
+
*/
|
|
10488
|
+
export interface ListTWeSeePersonsResponse {
|
|
10489
|
+
/**
|
|
10490
|
+
* 本次请求的分页数量
|
|
10491
|
+
*/
|
|
10492
|
+
Limit?: number;
|
|
10493
|
+
/**
|
|
10494
|
+
* 本次请求的分页偏移
|
|
10495
|
+
*/
|
|
10496
|
+
Offset?: number;
|
|
10497
|
+
/**
|
|
10498
|
+
* 人员列表
|
|
10499
|
+
*/
|
|
10500
|
+
Persons?: Array<SeePersonInfo>;
|
|
10501
|
+
/**
|
|
10502
|
+
* 符合条件的人员总数
|
|
10503
|
+
*/
|
|
10504
|
+
TotalCount?: number;
|
|
10505
|
+
/**
|
|
10506
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10507
|
+
*/
|
|
10508
|
+
RequestId?: string;
|
|
10509
|
+
}
|
|
10079
10510
|
/**
|
|
10080
10511
|
* TransferCloudStorage返回参数结构体
|
|
10081
10512
|
*/
|
|
@@ -10825,6 +11256,50 @@ export interface TalkTTSFlow {
|
|
|
10825
11256
|
*/
|
|
10826
11257
|
Speed?: number;
|
|
10827
11258
|
}
|
|
11259
|
+
/**
|
|
11260
|
+
* 固件升级任务信息
|
|
11261
|
+
*/
|
|
11262
|
+
export interface FirmwareTaskInfo {
|
|
11263
|
+
/**
|
|
11264
|
+
* 任务ID
|
|
11265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11266
|
+
*/
|
|
11267
|
+
TaskId?: number;
|
|
11268
|
+
/**
|
|
11269
|
+
* 任务状态
|
|
11270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11271
|
+
*/
|
|
11272
|
+
Status?: number;
|
|
11273
|
+
/**
|
|
11274
|
+
* 任务类型
|
|
11275
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11276
|
+
*/
|
|
11277
|
+
Type?: number;
|
|
11278
|
+
/**
|
|
11279
|
+
* 任务创建时间
|
|
11280
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11281
|
+
*/
|
|
11282
|
+
CreateTime?: number;
|
|
11283
|
+
/**
|
|
11284
|
+
* 创建者
|
|
11285
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11286
|
+
*/
|
|
11287
|
+
CreatorNickName?: string;
|
|
11288
|
+
/**
|
|
11289
|
+
* 创建者ID
|
|
11290
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11291
|
+
*/
|
|
11292
|
+
CreateUserId?: number;
|
|
11293
|
+
/**
|
|
11294
|
+
* 任务启动时间
|
|
11295
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11296
|
+
*/
|
|
11297
|
+
CronTime?: number;
|
|
11298
|
+
/**
|
|
11299
|
+
* 固件类型
|
|
11300
|
+
*/
|
|
11301
|
+
FwType?: string;
|
|
11302
|
+
}
|
|
10828
11303
|
/**
|
|
10829
11304
|
* InvokeExternalSourceAIServiceTask请求参数结构体
|
|
10830
11305
|
*/
|
|
@@ -11103,53 +11578,25 @@ export interface ResetCloudStorageResponse {
|
|
|
11103
11578
|
RequestId?: string;
|
|
11104
11579
|
}
|
|
11105
11580
|
/**
|
|
11106
|
-
*
|
|
11581
|
+
* CreatePositionFence请求参数结构体
|
|
11107
11582
|
*/
|
|
11108
|
-
export interface
|
|
11109
|
-
/**
|
|
11110
|
-
* 固件版本
|
|
11111
|
-
*/
|
|
11112
|
-
Version?: string;
|
|
11113
|
-
/**
|
|
11114
|
-
* 固件MD5值
|
|
11115
|
-
*/
|
|
11116
|
-
Md5sum?: string;
|
|
11117
|
-
/**
|
|
11118
|
-
* 固件创建时间
|
|
11119
|
-
*/
|
|
11120
|
-
CreateTime?: number;
|
|
11121
|
-
/**
|
|
11122
|
-
* 产品名称
|
|
11123
|
-
*/
|
|
11124
|
-
ProductName?: string;
|
|
11125
|
-
/**
|
|
11126
|
-
* 固件名称
|
|
11127
|
-
*/
|
|
11128
|
-
Name?: string;
|
|
11129
|
-
/**
|
|
11130
|
-
* 固件描述
|
|
11131
|
-
*/
|
|
11132
|
-
Description?: string;
|
|
11133
|
-
/**
|
|
11134
|
-
* 产品ID
|
|
11135
|
-
*/
|
|
11136
|
-
ProductId?: string;
|
|
11583
|
+
export interface CreatePositionFenceRequest {
|
|
11137
11584
|
/**
|
|
11138
|
-
*
|
|
11585
|
+
* 位置空间Id
|
|
11139
11586
|
*/
|
|
11140
|
-
|
|
11587
|
+
SpaceId: string;
|
|
11141
11588
|
/**
|
|
11142
|
-
*
|
|
11589
|
+
* 围栏名称
|
|
11143
11590
|
*/
|
|
11144
|
-
|
|
11591
|
+
FenceName: string;
|
|
11145
11592
|
/**
|
|
11146
|
-
*
|
|
11593
|
+
* 围栏区域信息,采用 GeoJSON 格式
|
|
11147
11594
|
*/
|
|
11148
|
-
|
|
11595
|
+
FenceArea: string;
|
|
11149
11596
|
/**
|
|
11150
|
-
*
|
|
11597
|
+
* 围栏描述
|
|
11151
11598
|
*/
|
|
11152
|
-
|
|
11599
|
+
FenceDesc?: string;
|
|
11153
11600
|
}
|
|
11154
11601
|
/**
|
|
11155
11602
|
* ResumeWeCallDevice请求参数结构体
|
|
@@ -11408,6 +11855,31 @@ export interface DescribeTWeTalkProductConfigRequest {
|
|
|
11408
11855
|
*/
|
|
11409
11856
|
TargetLanguage?: string;
|
|
11410
11857
|
}
|
|
11858
|
+
/**
|
|
11859
|
+
* TWeSee 人员信息
|
|
11860
|
+
*/
|
|
11861
|
+
export interface SeePersonInfo {
|
|
11862
|
+
/**
|
|
11863
|
+
* 代表人脸列表
|
|
11864
|
+
*/
|
|
11865
|
+
Faces?: Array<SeeFaceInfo>;
|
|
11866
|
+
/**
|
|
11867
|
+
* 是否已标记为持久记忆
|
|
11868
|
+
*/
|
|
11869
|
+
IsRemembered?: boolean;
|
|
11870
|
+
/**
|
|
11871
|
+
* 人员名称
|
|
11872
|
+
*/
|
|
11873
|
+
Name?: string;
|
|
11874
|
+
/**
|
|
11875
|
+
* 人员 ID
|
|
11876
|
+
*/
|
|
11877
|
+
PersonId?: string;
|
|
11878
|
+
/**
|
|
11879
|
+
* 创建来源。0:自动识别;1:用户创建
|
|
11880
|
+
*/
|
|
11881
|
+
Source?: number;
|
|
11882
|
+
}
|
|
11411
11883
|
/**
|
|
11412
11884
|
* DescribeFirmwareTasks返回参数结构体
|
|
11413
11885
|
*/
|
|
@@ -11487,28 +11959,23 @@ export interface ModifyFenceBindRequest {
|
|
|
11487
11959
|
*/
|
|
11488
11960
|
export interface InvokeTWeSeeComprehensionResponse {
|
|
11489
11961
|
/**
|
|
11490
|
-
*
|
|
11962
|
+
* <p>任务 ID</p>
|
|
11491
11963
|
*/
|
|
11492
11964
|
TaskId?: string;
|
|
11493
11965
|
/**
|
|
11494
|
-
*
|
|
11495
|
-
|
|
11496
|
-
- `1`:失败
|
|
11497
|
-
- `2`:空结果
|
|
11498
|
-
- `3`:有效结果
|
|
11499
|
-
- `4`:处理中
|
|
11966
|
+
* <p>任务状态。可能取值:</p><ul><li><code>1</code>:失败</li><li><code>2</code>:空结果</li><li><code>3</code>:有效结果</li><li><code>4</code>:处理中</li></ul>
|
|
11500
11967
|
*/
|
|
11501
11968
|
Status?: number;
|
|
11502
11969
|
/**
|
|
11503
|
-
*
|
|
11970
|
+
* <p>视觉理解结果</p>
|
|
11504
11971
|
*/
|
|
11505
11972
|
ComprehensionResult?: SeeComprehensionResult;
|
|
11506
11973
|
/**
|
|
11507
|
-
*
|
|
11974
|
+
* <p>完成该任务所消耗的基础能力额度</p>
|
|
11508
11975
|
*/
|
|
11509
11976
|
CostBasic?: number;
|
|
11510
11977
|
/**
|
|
11511
|
-
*
|
|
11978
|
+
* <p>完成该任务所消耗的高级能力额度</p>
|
|
11512
11979
|
*/
|
|
11513
11980
|
CostAdvanced?: number;
|
|
11514
11981
|
/**
|
|
@@ -11624,48 +12091,22 @@ export interface DeleteFenceBindResponse {
|
|
|
11624
12091
|
RequestId?: string;
|
|
11625
12092
|
}
|
|
11626
12093
|
/**
|
|
11627
|
-
*
|
|
12094
|
+
* ActivateTWeCallLicense请求参数结构体
|
|
11628
12095
|
*/
|
|
11629
|
-
export interface
|
|
11630
|
-
/**
|
|
11631
|
-
* 任务ID
|
|
11632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11633
|
-
*/
|
|
11634
|
-
TaskId?: number;
|
|
11635
|
-
/**
|
|
11636
|
-
* 任务状态
|
|
11637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11638
|
-
*/
|
|
11639
|
-
Status?: number;
|
|
11640
|
-
/**
|
|
11641
|
-
* 任务类型
|
|
11642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11643
|
-
*/
|
|
11644
|
-
Type?: number;
|
|
11645
|
-
/**
|
|
11646
|
-
* 任务创建时间
|
|
11647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11648
|
-
*/
|
|
11649
|
-
CreateTime?: number;
|
|
11650
|
-
/**
|
|
11651
|
-
* 创建者
|
|
11652
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11653
|
-
*/
|
|
11654
|
-
CreatorNickName?: string;
|
|
12096
|
+
export interface ActivateTWeCallLicenseRequest {
|
|
11655
12097
|
/**
|
|
11656
|
-
*
|
|
11657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12098
|
+
* TWecall类型:0-体验套餐;1-基础版;3-高级版;
|
|
11658
12099
|
*/
|
|
11659
|
-
|
|
12100
|
+
PkgType: number;
|
|
11660
12101
|
/**
|
|
11661
|
-
*
|
|
11662
|
-
|
|
12102
|
+
* 参数已弃用,不用传参
|
|
12103
|
+
* @deprecated
|
|
11663
12104
|
*/
|
|
11664
|
-
|
|
12105
|
+
MiniProgramAppId?: string;
|
|
11665
12106
|
/**
|
|
11666
|
-
*
|
|
12107
|
+
* 设备列表
|
|
11667
12108
|
*/
|
|
11668
|
-
|
|
12109
|
+
DeviceList?: Array<TWeCallInfo>;
|
|
11669
12110
|
}
|
|
11670
12111
|
/**
|
|
11671
12112
|
* DescribeAISearchTaskAsync返回参数结构体
|
|
@@ -11961,33 +12402,29 @@ export interface DescribeTWeSeeRecognitionTaskRequest {
|
|
|
11961
12402
|
FileURLExpireTime?: number;
|
|
11962
12403
|
}
|
|
11963
12404
|
/**
|
|
11964
|
-
*
|
|
12405
|
+
* DeleteTWeSeePerson请求参数结构体
|
|
11965
12406
|
*/
|
|
11966
|
-
export interface
|
|
11967
|
-
/**
|
|
11968
|
-
* 小程序appid
|
|
11969
|
-
*/
|
|
11970
|
-
IotAppID: string;
|
|
12407
|
+
export interface DeleteTWeSeePersonRequest {
|
|
11971
12408
|
/**
|
|
11972
|
-
*
|
|
12409
|
+
* 产品 ID
|
|
11973
12410
|
*/
|
|
11974
|
-
|
|
12411
|
+
ProductId: string;
|
|
11975
12412
|
/**
|
|
11976
|
-
*
|
|
12413
|
+
* 设备名称
|
|
11977
12414
|
*/
|
|
11978
|
-
|
|
12415
|
+
DeviceName: string;
|
|
11979
12416
|
/**
|
|
11980
|
-
*
|
|
12417
|
+
* 人员 ID
|
|
11981
12418
|
*/
|
|
11982
|
-
|
|
12419
|
+
PersonId: string;
|
|
11983
12420
|
/**
|
|
11984
|
-
*
|
|
12421
|
+
* 通道 ID,默认值为 0
|
|
11985
12422
|
*/
|
|
11986
|
-
|
|
12423
|
+
ChannelId?: number;
|
|
11987
12424
|
/**
|
|
11988
|
-
*
|
|
12425
|
+
* 是否同时删除关联人脸,默认值为 false。人员仍有关联人脸时可设为 true 同步删除
|
|
11989
12426
|
*/
|
|
11990
|
-
|
|
12427
|
+
DeleteFaces?: boolean;
|
|
11991
12428
|
}
|
|
11992
12429
|
/**
|
|
11993
12430
|
* DescribeCloudStorageEvents返回参数结构体
|
|
@@ -12036,25 +12473,17 @@ export interface Filter {
|
|
|
12036
12473
|
Values?: Array<string>;
|
|
12037
12474
|
}
|
|
12038
12475
|
/**
|
|
12039
|
-
*
|
|
12476
|
+
* CreateTWeSeePerson返回参数结构体
|
|
12040
12477
|
*/
|
|
12041
|
-
export interface
|
|
12478
|
+
export interface CreateTWeSeePersonResponse {
|
|
12042
12479
|
/**
|
|
12043
|
-
*
|
|
12480
|
+
* 人员信息
|
|
12044
12481
|
*/
|
|
12045
|
-
|
|
12482
|
+
Person?: SeePersonInfo;
|
|
12046
12483
|
/**
|
|
12047
|
-
*
|
|
12048
|
-
*/
|
|
12049
|
-
Offset: number;
|
|
12050
|
-
/**
|
|
12051
|
-
* 分页大小
|
|
12052
|
-
*/
|
|
12053
|
-
Limit: number;
|
|
12054
|
-
/**
|
|
12055
|
-
* 是否跨账号绑定产品
|
|
12484
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12056
12485
|
*/
|
|
12057
|
-
|
|
12486
|
+
RequestId?: string;
|
|
12058
12487
|
}
|
|
12059
12488
|
/**
|
|
12060
12489
|
* CreateFreeCloudStorage请求参数结构体
|
|
@@ -12299,6 +12728,23 @@ export interface GenerateCloudStorageAIServiceTaskFileURLRequest {
|
|
|
12299
12728
|
*/
|
|
12300
12729
|
ExpireTime?: number;
|
|
12301
12730
|
}
|
|
12731
|
+
/**
|
|
12732
|
+
* ShareDeviceToUser返回参数结构体
|
|
12733
|
+
*/
|
|
12734
|
+
export interface ShareDeviceToUserResponse {
|
|
12735
|
+
/**
|
|
12736
|
+
* <p>Owner 的 UserID</p>
|
|
12737
|
+
*/
|
|
12738
|
+
OwnerUserID?: string;
|
|
12739
|
+
/**
|
|
12740
|
+
* <p>被分享用户的 UserID</p>
|
|
12741
|
+
*/
|
|
12742
|
+
ToUserID?: string;
|
|
12743
|
+
/**
|
|
12744
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12745
|
+
*/
|
|
12746
|
+
RequestId?: string;
|
|
12747
|
+
}
|
|
12302
12748
|
/**
|
|
12303
12749
|
* BindCloudStorageUser返回参数结构体
|
|
12304
12750
|
*/
|
|
@@ -12468,6 +12914,23 @@ export interface CreateBatchProductionResponse {
|
|
|
12468
12914
|
*/
|
|
12469
12915
|
RequestId?: string;
|
|
12470
12916
|
}
|
|
12917
|
+
/**
|
|
12918
|
+
* 围栏详细信息(包含创建时间及更新时间)
|
|
12919
|
+
*/
|
|
12920
|
+
export interface PositionFenceInfo {
|
|
12921
|
+
/**
|
|
12922
|
+
* 围栏信息
|
|
12923
|
+
*/
|
|
12924
|
+
GeoFence?: PositionFenceItem;
|
|
12925
|
+
/**
|
|
12926
|
+
* 围栏创建时间
|
|
12927
|
+
*/
|
|
12928
|
+
CreateTime?: number;
|
|
12929
|
+
/**
|
|
12930
|
+
* 围栏更新时间
|
|
12931
|
+
*/
|
|
12932
|
+
UpdateTime?: number;
|
|
12933
|
+
}
|
|
12471
12934
|
/**
|
|
12472
12935
|
* 目标检测配置
|
|
12473
12936
|
*/
|
|
@@ -12775,25 +13238,25 @@ export interface CreateTWeSeePostPaidServiceRequest {
|
|
|
12775
13238
|
ServiceType: string;
|
|
12776
13239
|
}
|
|
12777
13240
|
/**
|
|
12778
|
-
*
|
|
13241
|
+
* DeleteTWeSeeFace请求参数结构体
|
|
12779
13242
|
*/
|
|
12780
|
-
export interface
|
|
13243
|
+
export interface DeleteTWeSeeFaceRequest {
|
|
12781
13244
|
/**
|
|
12782
|
-
*
|
|
13245
|
+
* 产品 ID
|
|
12783
13246
|
*/
|
|
12784
|
-
|
|
13247
|
+
ProductId: string;
|
|
12785
13248
|
/**
|
|
12786
|
-
*
|
|
13249
|
+
* 设备名称
|
|
12787
13250
|
*/
|
|
12788
|
-
|
|
13251
|
+
DeviceName: string;
|
|
12789
13252
|
/**
|
|
12790
|
-
*
|
|
13253
|
+
* 人脸 ID
|
|
12791
13254
|
*/
|
|
12792
|
-
|
|
13255
|
+
FaceId: string;
|
|
12793
13256
|
/**
|
|
12794
|
-
*
|
|
13257
|
+
* 通道 ID,默认值为 0
|
|
12795
13258
|
*/
|
|
12796
|
-
|
|
13259
|
+
ChannelId?: number;
|
|
12797
13260
|
}
|
|
12798
13261
|
/**
|
|
12799
13262
|
* TWeSee 任务详情
|
|
@@ -12835,6 +13298,10 @@ export interface SeeTaskInfo {
|
|
|
12835
13298
|
* <p>标签持续检测结果</p>
|
|
12836
13299
|
*/
|
|
12837
13300
|
DetectContinuousResult?: SeeDetectContinuousResult;
|
|
13301
|
+
/**
|
|
13302
|
+
* <p>人脸检测结果</p>
|
|
13303
|
+
*/
|
|
13304
|
+
FaceRecognitionResult?: SeeFaceRecognitionResult;
|
|
12838
13305
|
/**
|
|
12839
13306
|
* <p>完成该任务所消耗的基础能力额度</p>
|
|
12840
13307
|
*/
|