tencentcloud-sdk-python-mps 3.1.1__tar.gz → 3.1.2__tar.gz
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_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/setup.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/v20190612/models.py +19 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mps-3.1.2/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mps-3.1.1/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/README.rst +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mps
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.2
|
|
4
4
|
Summary: Tencent Cloud Mps SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.2
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-mps',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.2,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Mps SDK for Python',
|
|
@@ -54284,6 +54284,9 @@ class ParseNotificationResponse(AbstractModel):
|
|
|
54284
54284
|
:param _BatchTaskEvent: 批量处理任务信息,仅当 EventType 为 BatchTask,该字段有值。
|
|
54285
54285
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
54286
54286
|
:type BatchTaskEvent: :class:`tencentcloud.mps.v20190612.models.BatchSubTaskResult`
|
|
54287
|
+
:param _ExtractBlindWatermarkTask: 数字水印提取任务信息,仅当 EventType 为 ExtractBlindWatermark,该字段有值。
|
|
54288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
54289
|
+
:type ExtractBlindWatermarkTask: :class:`tencentcloud.mps.v20190612.models.ExtractBlindWatermarkTask`
|
|
54287
54290
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
54288
54291
|
:type RequestId: str
|
|
54289
54292
|
"""
|
|
@@ -54296,6 +54299,7 @@ class ParseNotificationResponse(AbstractModel):
|
|
|
54296
54299
|
self._Timestamp = None
|
|
54297
54300
|
self._Sign = None
|
|
54298
54301
|
self._BatchTaskEvent = None
|
|
54302
|
+
self._ExtractBlindWatermarkTask = None
|
|
54299
54303
|
self._RequestId = None
|
|
54300
54304
|
|
|
54301
54305
|
@property
|
|
@@ -54407,6 +54411,18 @@ class ParseNotificationResponse(AbstractModel):
|
|
|
54407
54411
|
def BatchTaskEvent(self, BatchTaskEvent):
|
|
54408
54412
|
self._BatchTaskEvent = BatchTaskEvent
|
|
54409
54413
|
|
|
54414
|
+
@property
|
|
54415
|
+
def ExtractBlindWatermarkTask(self):
|
|
54416
|
+
r"""数字水印提取任务信息,仅当 EventType 为 ExtractBlindWatermark,该字段有值。
|
|
54417
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
54418
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ExtractBlindWatermarkTask`
|
|
54419
|
+
"""
|
|
54420
|
+
return self._ExtractBlindWatermarkTask
|
|
54421
|
+
|
|
54422
|
+
@ExtractBlindWatermarkTask.setter
|
|
54423
|
+
def ExtractBlindWatermarkTask(self, ExtractBlindWatermarkTask):
|
|
54424
|
+
self._ExtractBlindWatermarkTask = ExtractBlindWatermarkTask
|
|
54425
|
+
|
|
54410
54426
|
@property
|
|
54411
54427
|
def RequestId(self):
|
|
54412
54428
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -54437,6 +54453,9 @@ class ParseNotificationResponse(AbstractModel):
|
|
|
54437
54453
|
if params.get("BatchTaskEvent") is not None:
|
|
54438
54454
|
self._BatchTaskEvent = BatchSubTaskResult()
|
|
54439
54455
|
self._BatchTaskEvent._deserialize(params.get("BatchTaskEvent"))
|
|
54456
|
+
if params.get("ExtractBlindWatermarkTask") is not None:
|
|
54457
|
+
self._ExtractBlindWatermarkTask = ExtractBlindWatermarkTask()
|
|
54458
|
+
self._ExtractBlindWatermarkTask._deserialize(params.get("ExtractBlindWatermarkTask"))
|
|
54440
54459
|
self._RequestId = params.get("RequestId")
|
|
54441
54460
|
|
|
54442
54461
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mps
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.2
|
|
4
4
|
Summary: Tencent Cloud Mps SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.2
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.2
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.1
|
|
File without changes
|
|
File without changes
|
{tencentcloud_sdk_python_mps-3.1.1 → tencentcloud_sdk_python_mps-3.1.2}/tencentcloud/mps/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|