tencentcloud-sdk-python-intl-en 3.0.1134__py2.py3-none-any.whl → 3.0.1136__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/ccc/v20200210/ccc_client.py +124 -7
- tencentcloud/ccc/v20200210/errorcodes.py +27 -9
- tencentcloud/ccc/v20200210/models.py +2324 -1173
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -2
- tencentcloud/vod/v20180717/errorcodes.py +25 -1
- tencentcloud/vod/v20180717/models.py +608 -65
- tencentcloud/vod/v20180717/vod_client.py +46 -0
- {tencentcloud_sdk_python_intl_en-3.0.1134.dist-info → tencentcloud_sdk_python_intl_en-3.0.1136.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1134.dist-info → tencentcloud_sdk_python_intl_en-3.0.1136.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1134.dist-info → tencentcloud_sdk_python_intl_en-3.0.1136.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1134.dist-info → tencentcloud_sdk_python_intl_en-3.0.1136.dist-info}/top_level.txt +0 -0
|
@@ -1741,6 +1741,29 @@ class VodClient(AbstractClient):
|
|
|
1741
1741
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1742
1742
|
|
|
1743
1743
|
|
|
1744
|
+
def DescribeCurrentPlaylist(self, request):
|
|
1745
|
+
"""Query current playlist of the round play.
|
|
1746
|
+
|
|
1747
|
+
:param request: Request instance for DescribeCurrentPlaylist.
|
|
1748
|
+
:type request: :class:`tencentcloud.vod.v20180717.models.DescribeCurrentPlaylistRequest`
|
|
1749
|
+
:rtype: :class:`tencentcloud.vod.v20180717.models.DescribeCurrentPlaylistResponse`
|
|
1750
|
+
|
|
1751
|
+
"""
|
|
1752
|
+
try:
|
|
1753
|
+
params = request._serialize()
|
|
1754
|
+
headers = request.headers
|
|
1755
|
+
body = self.call("DescribeCurrentPlaylist", params, headers=headers)
|
|
1756
|
+
response = json.loads(body)
|
|
1757
|
+
model = models.DescribeCurrentPlaylistResponse()
|
|
1758
|
+
model._deserialize(response["Response"])
|
|
1759
|
+
return model
|
|
1760
|
+
except Exception as e:
|
|
1761
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1762
|
+
raise
|
|
1763
|
+
else:
|
|
1764
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1765
|
+
|
|
1766
|
+
|
|
1744
1767
|
def DescribeDailyPlayStatFileList(self, request):
|
|
1745
1768
|
"""This API is used to query the download links of playback statistics files.
|
|
1746
1769
|
* You can query the download links of playback statistics files in the past year. The start and end dates for query cannot be more than 90 days apart.
|
|
@@ -2768,6 +2791,29 @@ class VodClient(AbstractClient):
|
|
|
2768
2791
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2769
2792
|
|
|
2770
2793
|
|
|
2794
|
+
def HandleCurrentPlaylist(self, request):
|
|
2795
|
+
"""Operate the current play list . Supported operations include:<li> Insert: Insert a playing program into the current playlist.</li><li> Delete: Remove a playing program from the playlist.</li>
|
|
2796
|
+
|
|
2797
|
+
:param request: Request instance for HandleCurrentPlaylist.
|
|
2798
|
+
:type request: :class:`tencentcloud.vod.v20180717.models.HandleCurrentPlaylistRequest`
|
|
2799
|
+
:rtype: :class:`tencentcloud.vod.v20180717.models.HandleCurrentPlaylistResponse`
|
|
2800
|
+
|
|
2801
|
+
"""
|
|
2802
|
+
try:
|
|
2803
|
+
params = request._serialize()
|
|
2804
|
+
headers = request.headers
|
|
2805
|
+
body = self.call("HandleCurrentPlaylist", params, headers=headers)
|
|
2806
|
+
response = json.loads(body)
|
|
2807
|
+
model = models.HandleCurrentPlaylistResponse()
|
|
2808
|
+
model._deserialize(response["Response"])
|
|
2809
|
+
return model
|
|
2810
|
+
except Exception as e:
|
|
2811
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2812
|
+
raise
|
|
2813
|
+
else:
|
|
2814
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2815
|
+
|
|
2816
|
+
|
|
2771
2817
|
def InspectMediaQuality(self, request):
|
|
2772
2818
|
"""Initiate media quality inspection task.
|
|
2773
2819
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=8_xlc20cZNQTdyNvnlMnP-r_7TPsgdtt2Tt8fNuhoXU,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=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -66,9 +66,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=spsaD0VnuuaveSdTgfgwcGUpYYi5hkRy
|
|
|
66
66
|
tencentcloud/cbs/v20170312/models.py,sha256=IDfQMTM-fKTnwUCwrRr7LPchEVrcuZOgFCbWjSSZv3Q,296697
|
|
67
67
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
tencentcloud/ccc/v20200210/ccc_client.py,sha256
|
|
70
|
-
tencentcloud/ccc/v20200210/errorcodes.py,sha256=
|
|
71
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
69
|
+
tencentcloud/ccc/v20200210/ccc_client.py,sha256=-ZyofAg3diEYZFervLPHVzWFgDlGxk5_UXKjNYuYlPM,56045
|
|
70
|
+
tencentcloud/ccc/v20200210/errorcodes.py,sha256=XICQQkQDibda1CsDd16637h37WQFQVAn80I_Hs1xYMY,5923
|
|
71
|
+
tencentcloud/ccc/v20200210/models.py,sha256=_HdUeCoUWbprYr5PRq1014iGDqXxTV_v2udHvwyZch8,424441
|
|
72
72
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -324,7 +324,7 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
324
324
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=G9y1MiiDR13Gzkshs3rEi8CZiUueBH2TnjjxCgBGJr8,6967
|
|
326
326
|
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=eJpf_rep4yl9Fl7yvUhbavRfSXSev9OTsEWNKGlyaVg,35838
|
|
327
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
327
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=Q_xExQCIF7osicWLU-bpjb2Aj1QdUy_ZNH1NyPMLC0k,219652
|
|
328
328
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
330
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -596,9 +596,9 @@ tencentcloud/vm/v20210922/models.py,sha256=s90vwtjOCmOk3Ha-DoIyxhhkBXYxXP7bHvPss
|
|
|
596
596
|
tencentcloud/vm/v20210922/vm_client.py,sha256=2UIsX6GMf-PgGico7p4AKu7zBKXY-hyyhVSK82GKjsU,4797
|
|
597
597
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
598
598
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
-
tencentcloud/vod/v20180717/errorcodes.py,sha256=
|
|
600
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
|
601
|
-
tencentcloud/vod/v20180717/vod_client.py,sha256=
|
|
599
|
+
tencentcloud/vod/v20180717/errorcodes.py,sha256=vSZ67zYtMj9h7b1mnSRqV6N2cUeNsV5JNG3Jh4sDsrk,27916
|
|
600
|
+
tencentcloud/vod/v20180717/models.py,sha256=x4WWNF0vioqG5cTaZ8XIQ0hbyoYd3D-i00zR6SDiJh0,2931223
|
|
601
|
+
tencentcloud/vod/v20180717/vod_client.py,sha256=NokZUFsEwKuxUfTlm408Tt2vtp9L3H-5HjP0NHbd4TI,201264
|
|
602
602
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
603
603
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
604
604
|
tencentcloud/vpc/v20170312/errorcodes.py,sha256=xeuMXL6AUgTc-ghFHSokyDyEH5hFwlSyTxE6Bihdlc0,46794
|
|
@@ -619,7 +619,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
619
619
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
620
620
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
621
621
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
622
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
623
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
624
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
625
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
622
|
+
tencentcloud_sdk_python_intl_en-3.0.1136.dist-info/METADATA,sha256=ASKmvriktll7vkdsM8P2d6dx-VuF-ipPwHxWzr7eiZE,1628
|
|
623
|
+
tencentcloud_sdk_python_intl_en-3.0.1136.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
624
|
+
tencentcloud_sdk_python_intl_en-3.0.1136.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
625
|
+
tencentcloud_sdk_python_intl_en-3.0.1136.dist-info/RECORD,,
|
|
File without changes
|