tencentcloud-sdk-python-intl-en 3.0.1216__py2.py3-none-any.whl → 3.0.1218__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +1 -1
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +1251 -28
- tencentcloud/mps/v20190612/mps_client.py +74 -3
- {tencentcloud_sdk_python_intl_en-3.0.1216.dist-info → tencentcloud_sdk_python_intl_en-3.0.1218.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1216.dist-info → tencentcloud_sdk_python_intl_en-3.0.1218.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1216.dist-info → tencentcloud_sdk_python_intl_en-3.0.1218.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1216.dist-info → tencentcloud_sdk_python_intl_en-3.0.1218.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,30 @@ class MpsClient(AbstractClient):
|
|
|
26
26
|
_service = 'mps'
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
def BatchProcessMedia(self, request):
|
|
30
|
+
"""This API is used to initiate batch processing tasks for URL video links, with features including:
|
|
31
|
+
Smart subtitle (full speech, speech hotword, and speech translation)
|
|
32
|
+
|
|
33
|
+
:param request: Request instance for BatchProcessMedia.
|
|
34
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.BatchProcessMediaRequest`
|
|
35
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.BatchProcessMediaResponse`
|
|
36
|
+
|
|
37
|
+
"""
|
|
38
|
+
try:
|
|
39
|
+
params = request._serialize()
|
|
40
|
+
headers = request.headers
|
|
41
|
+
body = self.call("BatchProcessMedia", params, headers=headers)
|
|
42
|
+
response = json.loads(body)
|
|
43
|
+
model = models.BatchProcessMediaResponse()
|
|
44
|
+
model._deserialize(response["Response"])
|
|
45
|
+
return model
|
|
46
|
+
except Exception as e:
|
|
47
|
+
if isinstance(e, TencentCloudSDKException):
|
|
48
|
+
raise
|
|
49
|
+
else:
|
|
50
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
51
|
+
|
|
52
|
+
|
|
29
53
|
def CreateAIAnalysisTemplate(self, request):
|
|
30
54
|
"""This API is used to create a custom content analysis template. Up to 50 templates can be created.
|
|
31
55
|
|
|
@@ -1016,6 +1040,29 @@ class MpsClient(AbstractClient):
|
|
|
1016
1040
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1017
1041
|
|
|
1018
1042
|
|
|
1043
|
+
def DescribeBatchTaskDetail(self, request):
|
|
1044
|
+
"""This API is used to query the details of the task execution status and results by task ID (tasks submitted within the last 7 days can be queried).
|
|
1045
|
+
|
|
1046
|
+
:param request: Request instance for DescribeBatchTaskDetail.
|
|
1047
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DescribeBatchTaskDetailRequest`
|
|
1048
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeBatchTaskDetailResponse`
|
|
1049
|
+
|
|
1050
|
+
"""
|
|
1051
|
+
try:
|
|
1052
|
+
params = request._serialize()
|
|
1053
|
+
headers = request.headers
|
|
1054
|
+
body = self.call("DescribeBatchTaskDetail", params, headers=headers)
|
|
1055
|
+
response = json.loads(body)
|
|
1056
|
+
model = models.DescribeBatchTaskDetailResponse()
|
|
1057
|
+
model._deserialize(response["Response"])
|
|
1058
|
+
return model
|
|
1059
|
+
except Exception as e:
|
|
1060
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1061
|
+
raise
|
|
1062
|
+
else:
|
|
1063
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1064
|
+
|
|
1065
|
+
|
|
1019
1066
|
def DescribeContentReviewTemplates(self, request):
|
|
1020
1067
|
"""This API is used to query content moderation templates by template ID. Both custom and preset templates that match the template IDs passed in will be returned.
|
|
1021
1068
|
|
|
@@ -1062,6 +1109,29 @@ class MpsClient(AbstractClient):
|
|
|
1062
1109
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1063
1110
|
|
|
1064
1111
|
|
|
1112
|
+
def DescribeImageTaskDetail(self, request):
|
|
1113
|
+
"""This API is used to query the details of the task execution status and results by task ID (tasks submitted within the last 7 days can be queried).
|
|
1114
|
+
|
|
1115
|
+
:param request: Request instance for DescribeImageTaskDetail.
|
|
1116
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DescribeImageTaskDetailRequest`
|
|
1117
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeImageTaskDetailResponse`
|
|
1118
|
+
|
|
1119
|
+
"""
|
|
1120
|
+
try:
|
|
1121
|
+
params = request._serialize()
|
|
1122
|
+
headers = request.headers
|
|
1123
|
+
body = self.call("DescribeImageTaskDetail", params, headers=headers)
|
|
1124
|
+
response = json.loads(body)
|
|
1125
|
+
model = models.DescribeImageTaskDetailResponse()
|
|
1126
|
+
model._deserialize(response["Response"])
|
|
1127
|
+
return model
|
|
1128
|
+
except Exception as e:
|
|
1129
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1130
|
+
raise
|
|
1131
|
+
else:
|
|
1132
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1133
|
+
|
|
1134
|
+
|
|
1065
1135
|
def DescribeLiveRecordTemplates(self, request):
|
|
1066
1136
|
"""This API is used to get a live recording template.
|
|
1067
1137
|
|
|
@@ -2024,9 +2094,10 @@ class MpsClient(AbstractClient):
|
|
|
2024
2094
|
|
|
2025
2095
|
|
|
2026
2096
|
def ProcessImage(self, request):
|
|
2027
|
-
"""This API is used to initiate image processing
|
|
2028
|
-
1. Format conversion
|
|
2029
|
-
2. Image enhancement
|
|
2097
|
+
"""This API is used to initiate image processing, with features including:
|
|
2098
|
+
1. Format conversion.
|
|
2099
|
+
2. Image enhancement.
|
|
2100
|
+
3. Image erasure.
|
|
2030
2101
|
|
|
2031
2102
|
:param request: Request instance for ProcessImage.
|
|
2032
2103
|
:type request: :class:`tencentcloud.mps.v20190612.models.ProcessImageRequest`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=cXL0KQAf7ddw1pe5KWEBzh4TtRUC-Oem_1uedSqI1gk,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -338,8 +338,8 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
|
|
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=ob6XjXp7Alcx0kON4shg4STrhKSTTomJjKjifRV3jJg,8738
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=FVKMds1TvgWZJXsmS70K4v-URMjtv5pa6gmjHRt3rD0,44258
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=frhC2BvqPv_-XJFON6Qwjim3zCGDPc7rnGkFmHiXfoE,252858
|
|
343
343
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -408,8 +408,8 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=trcnM-vkXAG1BuLAcjoqaAox
|
|
|
408
408
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
409
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
410
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=OO1P1ImPOrG2TF71Wk-MNeoPcXLs2K2ft0FSY0OacyE,15253
|
|
411
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
|
412
|
-
tencentcloud/mps/v20190612/mps_client.py,sha256=
|
|
411
|
+
tencentcloud/mps/v20190612/models.py,sha256=8MSWFaGAyJ6yfzeJ3HmHlZEHIRNpTBPR0sGIffChekg,1954286
|
|
412
|
+
tencentcloud/mps/v20190612/mps_client.py,sha256=gk9swrx2W3FO_8O2URA8LrdNXeBt0WouG2pwQKdzUAE,96362
|
|
413
413
|
tencentcloud/msp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
tencentcloud/msp/v20180319/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
tencentcloud/msp/v20180319/errorcodes.py,sha256=m7TqnT1KqSLNt0trBqZV5xL7aJtce_53v7OwSaOoOQI,806
|
|
@@ -659,7 +659,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
659
659
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
660
660
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
661
661
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
662
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
663
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
664
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
665
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
662
|
+
tencentcloud_sdk_python_intl_en-3.0.1218.dist-info/METADATA,sha256=LVeapg9Bh8HWOJi7ArjI8coQlBUUSi33QtBS4XhN31c,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1218.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1218.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1218.dist-info/RECORD,,
|
|
File without changes
|