tencentcloud-sdk-python-intl-en 3.0.1252__py2.py3-none-any.whl → 3.0.1254__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/faceid/v20180301/models.py +36 -4
- tencentcloud/mps/v20190612/models.py +831 -106
- tencentcloud/mps/v20190612/mps_client.py +5 -6
- tencentcloud/sqlserver/v20180328/models.py +54 -32
- tencentcloud/teo/v20220901/errorcodes.py +46 -1
- tencentcloud/teo/v20220901/models.py +7726 -1879
- tencentcloud/teo/v20220901/teo_client.py +896 -29
- {tencentcloud_sdk_python_intl_en-3.0.1252.dist-info → tencentcloud_sdk_python_intl_en-3.0.1254.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1252.dist-info → tencentcloud_sdk_python_intl_en-3.0.1254.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1252.dist-info → tencentcloud_sdk_python_intl_en-3.0.1254.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1252.dist-info → tencentcloud_sdk_python_intl_en-3.0.1254.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -2316,8 +2316,10 @@ class CompareResult(AbstractModel):
|
|
2316
2316
|
:type ErrorMsg: str
|
2317
2317
|
:param _LiveData: The liveness algorithm package generated during this SDK-based liveness detection.
|
2318
2318
|
:type LiveData: :class:`tencentcloud.faceid.v20180301.models.FileInfo`
|
2319
|
-
:param _LiveVideo: The download URL of the video used for verification, which is valid for 10 minutes.
|
2319
|
+
:param _LiveVideo: The download URL of the video used for verification, which contains specific color reflection effects, is valid for 10 minutes.
|
2320
2320
|
:type LiveVideo: :class:`tencentcloud.faceid.v20180301.models.FileInfo`
|
2321
|
+
:param _ActionVideo: Records the specific action performed by the user, used for AI Face Shield analysis.
|
2322
|
+
:type ActionVideo: :class:`tencentcloud.faceid.v20180301.models.FileInfo`
|
2321
2323
|
:param _LiveErrorCode: The liveness detection result code.
|
2322
2324
|
0: Success.
|
2323
2325
|
1001: Failed to call the liveness detection engine.
|
@@ -2358,6 +2360,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
2358
2360
|
self._ErrorMsg = None
|
2359
2361
|
self._LiveData = None
|
2360
2362
|
self._LiveVideo = None
|
2363
|
+
self._ActionVideo = None
|
2361
2364
|
self._LiveErrorCode = None
|
2362
2365
|
self._LiveErrorMsg = None
|
2363
2366
|
self._BestFrame = None
|
@@ -2413,7 +2416,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
2413
2416
|
|
2414
2417
|
@property
|
2415
2418
|
def LiveVideo(self):
|
2416
|
-
"""The download URL of the video used for verification, which is valid for 10 minutes.
|
2419
|
+
"""The download URL of the video used for verification, which contains specific color reflection effects, is valid for 10 minutes.
|
2417
2420
|
:rtype: :class:`tencentcloud.faceid.v20180301.models.FileInfo`
|
2418
2421
|
"""
|
2419
2422
|
return self._LiveVideo
|
@@ -2422,6 +2425,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
2422
2425
|
def LiveVideo(self, LiveVideo):
|
2423
2426
|
self._LiveVideo = LiveVideo
|
2424
2427
|
|
2428
|
+
@property
|
2429
|
+
def ActionVideo(self):
|
2430
|
+
"""Records the specific action performed by the user, used for AI Face Shield analysis.
|
2431
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.FileInfo`
|
2432
|
+
"""
|
2433
|
+
return self._ActionVideo
|
2434
|
+
|
2435
|
+
@ActionVideo.setter
|
2436
|
+
def ActionVideo(self, ActionVideo):
|
2437
|
+
self._ActionVideo = ActionVideo
|
2438
|
+
|
2425
2439
|
@property
|
2426
2440
|
def LiveErrorCode(self):
|
2427
2441
|
"""The liveness detection result code.
|
@@ -2557,6 +2571,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
2557
2571
|
if params.get("LiveVideo") is not None:
|
2558
2572
|
self._LiveVideo = FileInfo()
|
2559
2573
|
self._LiveVideo._deserialize(params.get("LiveVideo"))
|
2574
|
+
if params.get("ActionVideo") is not None:
|
2575
|
+
self._ActionVideo = FileInfo()
|
2576
|
+
self._ActionVideo._deserialize(params.get("ActionVideo"))
|
2560
2577
|
self._LiveErrorCode = params.get("LiveErrorCode")
|
2561
2578
|
self._LiveErrorMsg = params.get("LiveErrorMsg")
|
2562
2579
|
if params.get("BestFrame") is not None:
|
@@ -4052,8 +4069,10 @@ class GetFaceIdResultIntlResponse(AbstractModel):
|
|
4052
4069
|
:type Description: str
|
4053
4070
|
:param _BestFrame: The best frame screenshot (in Base64) obtained during the verification.
|
4054
4071
|
:type BestFrame: str
|
4055
|
-
:param _Video: The video file (Base64) for verification.
|
4072
|
+
:param _Video: The video file (Base64) for verification.Used for verification, contains specific color reflection effects.
|
4056
4073
|
:type Video: str
|
4074
|
+
:param _ActionVideo: Records the specific action performed by the user, used for AI Face Shield analysis.
|
4075
|
+
:type ActionVideo: str
|
4057
4076
|
:param _Similarity: The similarity, with a value range of 0-100. A greater value indicates higher similarity. This parameter is returned only in the `compare` (selfie verification) mode.
|
4058
4077
|
Note: This field may return `null`, indicating that no valid values can be obtained.
|
4059
4078
|
:type Similarity: float
|
@@ -4067,6 +4086,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
4067
4086
|
self._Description = None
|
4068
4087
|
self._BestFrame = None
|
4069
4088
|
self._Video = None
|
4089
|
+
self._ActionVideo = None
|
4070
4090
|
self._Similarity = None
|
4071
4091
|
self._Extra = None
|
4072
4092
|
self._RequestId = None
|
@@ -4116,7 +4136,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
4116
4136
|
|
4117
4137
|
@property
|
4118
4138
|
def Video(self):
|
4119
|
-
"""The video file (Base64) for verification.
|
4139
|
+
"""The video file (Base64) for verification.Used for verification, contains specific color reflection effects.
|
4120
4140
|
:rtype: str
|
4121
4141
|
"""
|
4122
4142
|
return self._Video
|
@@ -4125,6 +4145,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
4125
4145
|
def Video(self, Video):
|
4126
4146
|
self._Video = Video
|
4127
4147
|
|
4148
|
+
@property
|
4149
|
+
def ActionVideo(self):
|
4150
|
+
"""Records the specific action performed by the user, used for AI Face Shield analysis.
|
4151
|
+
:rtype: str
|
4152
|
+
"""
|
4153
|
+
return self._ActionVideo
|
4154
|
+
|
4155
|
+
@ActionVideo.setter
|
4156
|
+
def ActionVideo(self, ActionVideo):
|
4157
|
+
self._ActionVideo = ActionVideo
|
4158
|
+
|
4128
4159
|
@property
|
4129
4160
|
def Similarity(self):
|
4130
4161
|
"""The similarity, with a value range of 0-100. A greater value indicates higher similarity. This parameter is returned only in the `compare` (selfie verification) mode.
|
@@ -4166,6 +4197,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
4166
4197
|
self._Description = params.get("Description")
|
4167
4198
|
self._BestFrame = params.get("BestFrame")
|
4168
4199
|
self._Video = params.get("Video")
|
4200
|
+
self._ActionVideo = params.get("ActionVideo")
|
4169
4201
|
self._Similarity = params.get("Similarity")
|
4170
4202
|
self._Extra = params.get("Extra")
|
4171
4203
|
self._RequestId = params.get("RequestId")
|