tencentcloud-sdk-python-intl-en 3.0.1208__py2.py3-none-any.whl → 3.0.1210__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.

@@ -601,6 +601,29 @@ class MdlClient(AbstractClient):
601
601
  raise TencentCloudSDKException(type(e).__name__, str(e))
602
602
 
603
603
 
604
+ def GetAbWatermarkPlayUrl(self, request):
605
+ """Get AB watermark play url.
606
+
607
+ :param request: Request instance for GetAbWatermarkPlayUrl.
608
+ :type request: :class:`tencentcloud.mdl.v20200326.models.GetAbWatermarkPlayUrlRequest`
609
+ :rtype: :class:`tencentcloud.mdl.v20200326.models.GetAbWatermarkPlayUrlResponse`
610
+
611
+ """
612
+ try:
613
+ params = request._serialize()
614
+ headers = request.headers
615
+ body = self.call("GetAbWatermarkPlayUrl", params, headers=headers)
616
+ response = json.loads(body)
617
+ model = models.GetAbWatermarkPlayUrlResponse()
618
+ model._deserialize(response["Response"])
619
+ return model
620
+ except Exception as e:
621
+ if isinstance(e, TencentCloudSDKException):
622
+ raise
623
+ else:
624
+ raise TencentCloudSDKException(type(e).__name__, str(e))
625
+
626
+
604
627
  def ModifyStreamLiveChannel(self, request):
605
628
  """This API is used to modify a StreamLive channel.
606
629
 
@@ -6360,6 +6360,115 @@ class FrameCaptureTemplate(AbstractModel):
6360
6360
 
6361
6361
 
6362
6362
 
6363
+ class GetAbWatermarkPlayUrlRequest(AbstractModel):
6364
+ """GetAbWatermarkPlayUrl request structure.
6365
+
6366
+ """
6367
+
6368
+ def __init__(self):
6369
+ r"""
6370
+ :param _Uuid: Client UUID, 32-bit unsigned integer.
6371
+ :type Uuid: int
6372
+ :param _StreamPackageChannelId: Channel ID of Stream Package.
6373
+ :type StreamPackageChannelId: str
6374
+ :param _Url: Original play URL.
6375
+ :type Url: str
6376
+ """
6377
+ self._Uuid = None
6378
+ self._StreamPackageChannelId = None
6379
+ self._Url = None
6380
+
6381
+ @property
6382
+ def Uuid(self):
6383
+ """Client UUID, 32-bit unsigned integer.
6384
+ :rtype: int
6385
+ """
6386
+ return self._Uuid
6387
+
6388
+ @Uuid.setter
6389
+ def Uuid(self, Uuid):
6390
+ self._Uuid = Uuid
6391
+
6392
+ @property
6393
+ def StreamPackageChannelId(self):
6394
+ """Channel ID of Stream Package.
6395
+ :rtype: str
6396
+ """
6397
+ return self._StreamPackageChannelId
6398
+
6399
+ @StreamPackageChannelId.setter
6400
+ def StreamPackageChannelId(self, StreamPackageChannelId):
6401
+ self._StreamPackageChannelId = StreamPackageChannelId
6402
+
6403
+ @property
6404
+ def Url(self):
6405
+ """Original play URL.
6406
+ :rtype: str
6407
+ """
6408
+ return self._Url
6409
+
6410
+ @Url.setter
6411
+ def Url(self, Url):
6412
+ self._Url = Url
6413
+
6414
+
6415
+ def _deserialize(self, params):
6416
+ self._Uuid = params.get("Uuid")
6417
+ self._StreamPackageChannelId = params.get("StreamPackageChannelId")
6418
+ self._Url = params.get("Url")
6419
+ memeber_set = set(params.keys())
6420
+ for name, value in vars(self).items():
6421
+ property_name = name[1:]
6422
+ if property_name in memeber_set:
6423
+ memeber_set.remove(property_name)
6424
+ if len(memeber_set) > 0:
6425
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6426
+
6427
+
6428
+
6429
+ class GetAbWatermarkPlayUrlResponse(AbstractModel):
6430
+ """GetAbWatermarkPlayUrl response structure.
6431
+
6432
+ """
6433
+
6434
+ def __init__(self):
6435
+ r"""
6436
+ :param _Url: The play URL after adding token.
6437
+ :type Url: str
6438
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6439
+ :type RequestId: str
6440
+ """
6441
+ self._Url = None
6442
+ self._RequestId = None
6443
+
6444
+ @property
6445
+ def Url(self):
6446
+ """The play URL after adding token.
6447
+ :rtype: str
6448
+ """
6449
+ return self._Url
6450
+
6451
+ @Url.setter
6452
+ def Url(self, Url):
6453
+ self._Url = Url
6454
+
6455
+ @property
6456
+ def RequestId(self):
6457
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6458
+ :rtype: str
6459
+ """
6460
+ return self._RequestId
6461
+
6462
+ @RequestId.setter
6463
+ def RequestId(self, RequestId):
6464
+ self._RequestId = RequestId
6465
+
6466
+
6467
+ def _deserialize(self, params):
6468
+ self._Url = params.get("Url")
6469
+ self._RequestId = params.get("RequestId")
6470
+
6471
+
6363
6472
  class HighlightInfo(AbstractModel):
6364
6473
  """Collection configuration.
6365
6474
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1208
3
+ Version: 3.0.1210
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=xd5UAgTBR2-xHn9upc-ahYNB9P6O04WkHGIPR1CIecY,630
1
+ tencentcloud/__init__.py,sha256=xvB1v8SolwCMg7dAcJ3W0v1yAXI2Spblv57njwAtYmI,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
@@ -46,9 +46,9 @@ tencentcloud/batch/v20170312/errorcodes.py,sha256=KCF4SIj8Haj6XBUSTVDyNQSPyjWVRy
46
46
  tencentcloud/batch/v20170312/models.py,sha256=VBOuhs4yPE8IMmY4tzA3AjQHyFga4WjK7p-0PEyg0TI,335284
47
47
  tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- tencentcloud/billing/v20180709/billing_client.py,sha256=rqHQLGYS8O5a4Ege7UXN2lbXnARrZedhah4w_DyguQo,31712
49
+ tencentcloud/billing/v20180709/billing_client.py,sha256=qHclCnxap_Xsss_NgNyPTQ8Rm1FLSvJNAOg4hxOsbqc,40886
50
50
  tencentcloud/billing/v20180709/errorcodes.py,sha256=W5tlTU0vSP7DKyTW1XM1QVz95cIwsCaA2Dgnnk211IQ,2356
51
- tencentcloud/billing/v20180709/models.py,sha256=7aNq6cef2wJWYVoSqxwAHjTKxWJyNxfpbj-T7fr7EUI,529896
51
+ tencentcloud/billing/v20180709/models.py,sha256=HhdcWZLGNRSvyL8qeHLBqslluzxiK2qiwzJrnhpIK2I,582911
52
52
  tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  tencentcloud/cam/v20190116/cam_client.py,sha256=cQFaz-s6EzqeCpWmIX0Kd_F2xZByDcObmj5c6eoMGAI,75169
@@ -388,8 +388,8 @@ tencentcloud/mdc/v20200828/models.py,sha256=vrcWJTl6Mk6WoiUDJqIJP2zemKMLVgb_FLa5
388
388
  tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
389
  tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
390
  tencentcloud/mdl/v20200326/errorcodes.py,sha256=UrwmJD3pUUir_wADh17-T-gweDNkYkXPTVuEs4LsMGM,3178
391
- tencentcloud/mdl/v20200326/mdl_client.py,sha256=IU-Hnznk_wh-0VEdokS1PsLCvgLOr-JEfTkkBiUK3MI,31829
392
- tencentcloud/mdl/v20200326/models.py,sha256=ePhjcCdFAnOj8twRENfLGMUKNSIFGWSeo3zCS_YPB7Y,410994
391
+ tencentcloud/mdl/v20200326/mdl_client.py,sha256=ro3UE9TgUFta27ALvot7xwxrSqVs5VxrRrWnrv8Lc-Q,32730
392
+ tencentcloud/mdl/v20200326/models.py,sha256=XYpS6Af-nY38shn_44MPF02KldirIOVLpLm0_JrQ_u4,414116
393
393
  tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
394
  tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
395
395
  tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
@@ -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.1208.dist-info/METADATA,sha256=ytbgiLq100bL15cLLq2kvTkAMtUw6VaD0kHj4_VzAoM,1628
663
- tencentcloud_sdk_python_intl_en-3.0.1208.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
664
- tencentcloud_sdk_python_intl_en-3.0.1208.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
665
- tencentcloud_sdk_python_intl_en-3.0.1208.dist-info/RECORD,,
662
+ tencentcloud_sdk_python_intl_en-3.0.1210.dist-info/METADATA,sha256=AajL32oxb1z0zrvKEpndwIuQFF0fNUaEgHWDcyg87ww,1628
663
+ tencentcloud_sdk_python_intl_en-3.0.1210.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
664
+ tencentcloud_sdk_python_intl_en-3.0.1210.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
665
+ tencentcloud_sdk_python_intl_en-3.0.1210.dist-info/RECORD,,