tencentcloud-sdk-python-intl-en 3.0.1232__py2.py3-none-any.whl → 3.0.1234__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/billing/v20180709/models.py +4 -0
- tencentcloud/emr/v20190103/emr_client.py +138 -0
- tencentcloud/emr/v20190103/errorcodes.py +12 -0
- tencentcloud/emr/v20190103/models.py +6945 -5478
- tencentcloud/live/v20180801/live_client.py +23 -0
- tencentcloud/live/v20180801/models.py +109 -0
- {tencentcloud_sdk_python_intl_en-3.0.1232.dist-info → tencentcloud_sdk_python_intl_en-3.0.1234.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1232.dist-info → tencentcloud_sdk_python_intl_en-3.0.1234.dist-info}/RECORD +11 -11
- {tencentcloud_sdk_python_intl_en-3.0.1232.dist-info → tencentcloud_sdk_python_intl_en-3.0.1234.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1232.dist-info → tencentcloud_sdk_python_intl_en-3.0.1234.dist-info}/top_level.txt +0 -0
|
@@ -2721,6 +2721,29 @@ class LiveClient(AbstractClient):
|
|
|
2721
2721
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2722
2722
|
|
|
2723
2723
|
|
|
2724
|
+
def StopLivePadStream(self, request):
|
|
2725
|
+
"""Call this API to end the transition to standby footage.
|
|
2726
|
+
|
|
2727
|
+
:param request: Request instance for StopLivePadStream.
|
|
2728
|
+
:type request: :class:`tencentcloud.live.v20180801.models.StopLivePadStreamRequest`
|
|
2729
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.StopLivePadStreamResponse`
|
|
2730
|
+
|
|
2731
|
+
"""
|
|
2732
|
+
try:
|
|
2733
|
+
params = request._serialize()
|
|
2734
|
+
headers = request.headers
|
|
2735
|
+
body = self.call("StopLivePadStream", params, headers=headers)
|
|
2736
|
+
response = json.loads(body)
|
|
2737
|
+
model = models.StopLivePadStreamResponse()
|
|
2738
|
+
model._deserialize(response["Response"])
|
|
2739
|
+
return model
|
|
2740
|
+
except Exception as e:
|
|
2741
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2742
|
+
raise
|
|
2743
|
+
else:
|
|
2744
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2745
|
+
|
|
2746
|
+
|
|
2724
2747
|
def StopLiveRecord(self, request):
|
|
2725
2748
|
"""Note: Recording files are stored on the VOD platform. To use the recording feature, you need to activate a VOD account and ensure that it is available. After the recording files are stored, applicable fees (including storage fees and downstream playback traffic fees) will be charged according to the VOD billing method. For more information, please see the corresponding document.
|
|
2726
2749
|
|
|
@@ -22296,6 +22296,115 @@ class StartLivePadStreamResponse(AbstractModel):
|
|
|
22296
22296
|
self._RequestId = params.get("RequestId")
|
|
22297
22297
|
|
|
22298
22298
|
|
|
22299
|
+
class StopLivePadStreamRequest(AbstractModel):
|
|
22300
|
+
"""StopLivePadStream request structure.
|
|
22301
|
+
|
|
22302
|
+
"""
|
|
22303
|
+
|
|
22304
|
+
def __init__(self):
|
|
22305
|
+
r"""
|
|
22306
|
+
:param _AppName: Ensure the streaming path uses the same AppName as the push/play URLs (default: 'live')
|
|
22307
|
+
:type AppName: str
|
|
22308
|
+
:param _PushDomainName: Your RTMP push domain.
|
|
22309
|
+
:type PushDomainName: str
|
|
22310
|
+
:param _StreamName: Your stream name.
|
|
22311
|
+
:type StreamName: str
|
|
22312
|
+
:param _Operator: Operator notes.
|
|
22313
|
+
:type Operator: str
|
|
22314
|
+
"""
|
|
22315
|
+
self._AppName = None
|
|
22316
|
+
self._PushDomainName = None
|
|
22317
|
+
self._StreamName = None
|
|
22318
|
+
self._Operator = None
|
|
22319
|
+
|
|
22320
|
+
@property
|
|
22321
|
+
def AppName(self):
|
|
22322
|
+
"""Ensure the streaming path uses the same AppName as the push/play URLs (default: 'live')
|
|
22323
|
+
:rtype: str
|
|
22324
|
+
"""
|
|
22325
|
+
return self._AppName
|
|
22326
|
+
|
|
22327
|
+
@AppName.setter
|
|
22328
|
+
def AppName(self, AppName):
|
|
22329
|
+
self._AppName = AppName
|
|
22330
|
+
|
|
22331
|
+
@property
|
|
22332
|
+
def PushDomainName(self):
|
|
22333
|
+
"""Your RTMP push domain.
|
|
22334
|
+
:rtype: str
|
|
22335
|
+
"""
|
|
22336
|
+
return self._PushDomainName
|
|
22337
|
+
|
|
22338
|
+
@PushDomainName.setter
|
|
22339
|
+
def PushDomainName(self, PushDomainName):
|
|
22340
|
+
self._PushDomainName = PushDomainName
|
|
22341
|
+
|
|
22342
|
+
@property
|
|
22343
|
+
def StreamName(self):
|
|
22344
|
+
"""Your stream name.
|
|
22345
|
+
:rtype: str
|
|
22346
|
+
"""
|
|
22347
|
+
return self._StreamName
|
|
22348
|
+
|
|
22349
|
+
@StreamName.setter
|
|
22350
|
+
def StreamName(self, StreamName):
|
|
22351
|
+
self._StreamName = StreamName
|
|
22352
|
+
|
|
22353
|
+
@property
|
|
22354
|
+
def Operator(self):
|
|
22355
|
+
"""Operator notes.
|
|
22356
|
+
:rtype: str
|
|
22357
|
+
"""
|
|
22358
|
+
return self._Operator
|
|
22359
|
+
|
|
22360
|
+
@Operator.setter
|
|
22361
|
+
def Operator(self, Operator):
|
|
22362
|
+
self._Operator = Operator
|
|
22363
|
+
|
|
22364
|
+
|
|
22365
|
+
def _deserialize(self, params):
|
|
22366
|
+
self._AppName = params.get("AppName")
|
|
22367
|
+
self._PushDomainName = params.get("PushDomainName")
|
|
22368
|
+
self._StreamName = params.get("StreamName")
|
|
22369
|
+
self._Operator = params.get("Operator")
|
|
22370
|
+
memeber_set = set(params.keys())
|
|
22371
|
+
for name, value in vars(self).items():
|
|
22372
|
+
property_name = name[1:]
|
|
22373
|
+
if property_name in memeber_set:
|
|
22374
|
+
memeber_set.remove(property_name)
|
|
22375
|
+
if len(memeber_set) > 0:
|
|
22376
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
22377
|
+
|
|
22378
|
+
|
|
22379
|
+
|
|
22380
|
+
class StopLivePadStreamResponse(AbstractModel):
|
|
22381
|
+
"""StopLivePadStream response structure.
|
|
22382
|
+
|
|
22383
|
+
"""
|
|
22384
|
+
|
|
22385
|
+
def __init__(self):
|
|
22386
|
+
r"""
|
|
22387
|
+
: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.
|
|
22388
|
+
:type RequestId: str
|
|
22389
|
+
"""
|
|
22390
|
+
self._RequestId = None
|
|
22391
|
+
|
|
22392
|
+
@property
|
|
22393
|
+
def RequestId(self):
|
|
22394
|
+
"""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.
|
|
22395
|
+
:rtype: str
|
|
22396
|
+
"""
|
|
22397
|
+
return self._RequestId
|
|
22398
|
+
|
|
22399
|
+
@RequestId.setter
|
|
22400
|
+
def RequestId(self, RequestId):
|
|
22401
|
+
self._RequestId = RequestId
|
|
22402
|
+
|
|
22403
|
+
|
|
22404
|
+
def _deserialize(self, params):
|
|
22405
|
+
self._RequestId = params.get("RequestId")
|
|
22406
|
+
|
|
22407
|
+
|
|
22299
22408
|
class StopLiveRecordRequest(AbstractModel):
|
|
22300
22409
|
"""StopLiveRecord request structure.
|
|
22301
22410
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=hPrUfZ5lJgKJrmn1QYNv3GLp7nxnXyrrww8bYliB3Qs,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=fiBV7Nao68T0UJdOUt5BxEABWr7mG_J9NPJT2lXDdyw,2897
|
|
@@ -48,7 +48,7 @@ tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
48
48
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
49
|
tencentcloud/billing/v20180709/billing_client.py,sha256=oAQUu43A4zziLfCK86xacPcHayadWV6t7PolOByW7aM,40859
|
|
50
50
|
tencentcloud/billing/v20180709/errorcodes.py,sha256=CX-HLxzwD-O413NyO8mXD_hYdmsHW54fn-upEDjEMYc,2329
|
|
51
|
-
tencentcloud/billing/v20180709/models.py,sha256=
|
|
51
|
+
tencentcloud/billing/v20180709/models.py,sha256=15R7XalHIF8-ho1UanNRZiQLTHB6ymf3XL5-aEfu6Wo,582202
|
|
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=qnX7GJuWfmhJWl0JDXtt_bO3vMOhBYh7D0RA61o0Soo,75142
|
|
@@ -277,9 +277,9 @@ tencentcloud/eiam/v20210420/errorcodes.py,sha256=N-xKRbIRWFzzg-C7cTAmPwDLH_y0ZMZ
|
|
|
277
277
|
tencentcloud/eiam/v20210420/models.py,sha256=RnszONFoOJuOO_sFviCsuTJWZSwwf50d_43GcjkFrpw,275033
|
|
278
278
|
tencentcloud/emr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
279
|
tencentcloud/emr/v20190103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
|
-
tencentcloud/emr/v20190103/emr_client.py,sha256=
|
|
281
|
-
tencentcloud/emr/v20190103/errorcodes.py,sha256=
|
|
282
|
-
tencentcloud/emr/v20190103/models.py,sha256=
|
|
280
|
+
tencentcloud/emr/v20190103/emr_client.py,sha256=dG7lT69RkLT5g9K0JUwYzUPjInrCEW9ptTEAlruT5_c,31119
|
|
281
|
+
tencentcloud/emr/v20190103/errorcodes.py,sha256=Cqps4AcpSSfktz3qzKYvowq_dWTFw-doYlCktRdr5mY,16493
|
|
282
|
+
tencentcloud/emr/v20190103/models.py,sha256=xBYdXAPt8qHFXbeRgafUM8uiONGGjGW3xJ8GLxNM5Ws,550049
|
|
283
283
|
tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
tencentcloud/es/v20180416/errorcodes.py,sha256=p3OyejxcG9GUh-hAcjqwwEzYOEjbVypLa1YYVujXpcA,4636
|
|
@@ -368,8 +368,8 @@ tencentcloud/lighthouse/v20200324/models.py,sha256=OknSSoXOExOyBK3a4Px3QDWZ97Chd
|
|
|
368
368
|
tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
369
|
tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
370
|
tencentcloud/live/v20180801/errorcodes.py,sha256=XZ9sSJD88PByjGF4JfSv12kGPSzk7-NnorEqs1Jr2Tk,20303
|
|
371
|
-
tencentcloud/live/v20180801/live_client.py,sha256=
|
|
372
|
-
tencentcloud/live/v20180801/models.py,sha256=
|
|
371
|
+
tencentcloud/live/v20180801/live_client.py,sha256=S5nc0I4lZJjbnUOgO5QwWrMjjeMsmfLdPZWknIhVGkU,130957
|
|
372
|
+
tencentcloud/live/v20180801/models.py,sha256=wwbCw5AQfRLgcNTGDgYFx4OHJV_XLE6HgoV9Q4W76iA,781666
|
|
373
373
|
tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
374
|
tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
375
|
tencentcloud/lke/v20231130/errorcodes.py,sha256=wwGIoFiGFe88exB28UpkEK44INVeAmq7giOsYa7NXfg,1919
|
|
@@ -663,7 +663,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
663
663
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
|
664
664
|
tencentcloud/yunjing/v20180228/models.py,sha256=vFpNnPGWiOLdTut0XPTpRRF5lobWUTkFUO1EHc9RkBk,330643
|
|
665
665
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=PqtaJz4gQ-rIxKXVMNtOKx7kFBQdUn-zKVuH2NcMFcA,67362
|
|
666
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
667
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
668
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
669
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
666
|
+
tencentcloud_sdk_python_intl_en-3.0.1234.dist-info/METADATA,sha256=lALfxPT_Iu7829vWwm8Qq-YxNlM5uYIUfWAn5lg_myw,1628
|
|
667
|
+
tencentcloud_sdk_python_intl_en-3.0.1234.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
668
|
+
tencentcloud_sdk_python_intl_en-3.0.1234.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
669
|
+
tencentcloud_sdk_python_intl_en-3.0.1234.dist-info/RECORD,,
|
|
File without changes
|