tencentcloud-sdk-python-intl-en 3.0.1135__py2.py3-none-any.whl → 3.0.1137__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/trro/__init__.py +0 -0
- tencentcloud/trro/v20220325/__init__.py +0 -0
- tencentcloud/trro/v20220325/errorcodes.py +36 -0
- tencentcloud/trro/v20220325/models.py +3235 -0
- tencentcloud/trro/v20220325/trro_client.py +463 -0
- tencentcloud/vod/v20180717/errorcodes.py +25 -1
- tencentcloud/vod/v20180717/models.py +608 -65
- tencentcloud/vod/v20180717/vod_client.py +46 -0
- tencentcloud/vpc/v20170312/errorcodes.py +30 -0
- tencentcloud/vpc/v20170312/models.py +1647 -208
- tencentcloud/vpc/v20170312/vpc_client.py +280 -0
- {tencentcloud_sdk_python_intl_en-3.0.1135.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1135.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/RECORD +16 -11
- {tencentcloud_sdk_python_intl_en-3.0.1135.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1135.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.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
|
|
|
@@ -131,6 +131,15 @@ INVALIDPARAMETERVALUE_ADDRESSINTERNETCHARGETYPECONFLICT = 'InvalidParameterValue
|
|
|
131
131
|
# The IP address is not available now.
|
|
132
132
|
INVALIDPARAMETERVALUE_ADDRESSIPNOTAVAILABLE = 'InvalidParameterValue.AddressIpNotAvailable'
|
|
133
133
|
|
|
134
|
+
# IP address not found.
|
|
135
|
+
INVALIDPARAMETERVALUE_ADDRESSIPNOTFOUND = 'InvalidParameterValue.AddressIpNotFound'
|
|
136
|
+
|
|
137
|
+
# The IP address does not exist in the VPC.
|
|
138
|
+
INVALIDPARAMETERVALUE_ADDRESSIPNOTINVPC = 'InvalidParameterValue.AddressIpNotInVpc'
|
|
139
|
+
|
|
140
|
+
# This IPv6 address is not published.
|
|
141
|
+
INVALIDPARAMETERVALUE_ADDRESSIPNOTPUBLIC = 'InvalidParameterValue.AddressIpNotPublic'
|
|
142
|
+
|
|
134
143
|
# Failed to query the address.
|
|
135
144
|
INVALIDPARAMETERVALUE_ADDRESSIPSNOTFOUND = 'InvalidParameterValue.AddressIpsNotFound'
|
|
136
145
|
|
|
@@ -143,6 +152,9 @@ INVALIDPARAMETERVALUE_ADDRESSNOTCALCIP = 'InvalidParameterValue.AddressNotCalcIP
|
|
|
143
152
|
# Unable to find the address.
|
|
144
153
|
INVALIDPARAMETERVALUE_ADDRESSNOTFOUND = 'InvalidParameterValue.AddressNotFound'
|
|
145
154
|
|
|
155
|
+
# This IPv6 address has already been published.
|
|
156
|
+
INVALIDPARAMETERVALUE_ADDRESSPUBLISHED = 'InvalidParameterValue.AddressPublished'
|
|
157
|
+
|
|
146
158
|
# Invalid IP address type
|
|
147
159
|
INVALIDPARAMETERVALUE_ADDRESSTYPECONFLICT = 'InvalidParameterValue.AddressTypeConflict'
|
|
148
160
|
|
|
@@ -230,6 +242,9 @@ INVALIDPARAMETERVALUE_INVALIDINSTANCEINTERNETCHARGETYPE = 'InvalidParameterValue
|
|
|
230
242
|
# Operation failed: the status of the instance does not allow this operation.
|
|
231
243
|
INVALIDPARAMETERVALUE_INVALIDINSTANCESTATE = 'InvalidParameterValue.InvalidInstanceState'
|
|
232
244
|
|
|
245
|
+
# Invalid IPv6 addresses.
|
|
246
|
+
INVALIDPARAMETERVALUE_INVALIDIPV6 = 'InvalidParameterValue.InvalidIpv6'
|
|
247
|
+
|
|
233
248
|
# Invalid original bandwidth value.
|
|
234
249
|
INVALIDPARAMETERVALUE_INVALIDOLDBANDWIDTH = 'InvalidParameterValue.InvalidOldBandwidth'
|
|
235
250
|
|
|
@@ -293,6 +308,9 @@ INVALIDPARAMETERVALUE_NETDETECTSAMEIP = 'InvalidParameterValue.NetDetectSameIp'
|
|
|
293
308
|
# Incorrect network interface ID.
|
|
294
309
|
INVALIDPARAMETERVALUE_NETWORKINTERFACEIDMALFORMED = 'InvalidParameterValue.NetworkInterfaceIdMalformed'
|
|
295
310
|
|
|
311
|
+
# The instance bound to the ENI does not support binding the EIPv6.
|
|
312
|
+
INVALIDPARAMETERVALUE_NETWORKINTERFACEINSTANCENOTSUPPORT = 'InvalidParameterValue.NetworkInterfaceInstanceNotSupport'
|
|
313
|
+
|
|
296
314
|
# The network interface ID was not found. The private IP address may not be configured on the network interface.
|
|
297
315
|
INVALIDPARAMETERVALUE_NETWORKINTERFACENOTFOUND = 'InvalidParameterValue.NetworkInterfaceNotFound'
|
|
298
316
|
|
|
@@ -548,6 +566,9 @@ LIMITEXCEEDED_TAGTAGSEXCEEDED = 'LimitExceeded.TagTagsExceeded'
|
|
|
548
566
|
# Missing parameter.
|
|
549
567
|
MISSINGPARAMETER = 'MissingParameter'
|
|
550
568
|
|
|
569
|
+
# Multiple parameters missing
|
|
570
|
+
MISSINGPARAMETER_MULTIMISSINGPARAMETER = 'MissingParameter.MultiMissingParameter'
|
|
571
|
+
|
|
551
572
|
# The specified public IP is isolated.
|
|
552
573
|
OPERATIONDENIED_ADDRESSINARREARS = 'OperationDenied.AddressInArrears'
|
|
553
574
|
|
|
@@ -617,9 +638,18 @@ UNSUPPORTEDOPERATION_ACCOUNTNOTSUPPORTED = 'UnsupportedOperation.AccountNotSuppo
|
|
|
617
638
|
# The port does not exist.
|
|
618
639
|
UNSUPPORTEDOPERATION_ACTIONNOTFOUND = 'UnsupportedOperation.ActionNotFound'
|
|
619
640
|
|
|
641
|
+
# This operation is not supported because the account is in arrears.
|
|
642
|
+
UNSUPPORTEDOPERATION_ADDRESSIPINARREAR = 'UnsupportedOperation.AddressIpInArrear'
|
|
643
|
+
|
|
644
|
+
# IP addresses in this billing mode does not support this operation.
|
|
645
|
+
UNSUPPORTEDOPERATION_ADDRESSIPINTERNETCHARGETYPENOTPERMIT = 'UnsupportedOperation.AddressIpInternetChargeTypeNotPermit'
|
|
646
|
+
|
|
620
647
|
# The IP address bound with this instance does not support this operation
|
|
621
648
|
UNSUPPORTEDOPERATION_ADDRESSIPNOTSUPPORTINSTANCE = 'UnsupportedOperation.AddressIpNotSupportInstance'
|
|
622
649
|
|
|
650
|
+
# The IP address status does not support this operation.
|
|
651
|
+
UNSUPPORTEDOPERATION_ADDRESSIPSTATUSNOTPERMIT = 'UnsupportedOperation.AddressIpStatusNotPermit'
|
|
652
|
+
|
|
623
653
|
# This operation is not supported by the IP address status.
|
|
624
654
|
UNSUPPORTEDOPERATION_ADDRESSSTATUSNOTPERMIT = 'UnsupportedOperation.AddressStatusNotPermit'
|
|
625
655
|
|