tencentcloud-sdk-python-live 3.0.1324__tar.gz → 3.0.1326__tar.gz
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.
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/live/v20180801/models.py +15 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1326/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1324/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1324 → tencentcloud-sdk-python-live-3.0.1326}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-live',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1326"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -27530,6 +27530,8 @@ class LiveStreamMonitorInputInfo(AbstractModel):
|
|
|
27530
27530
|
:type CasterInputIndex: int
|
|
27531
27531
|
:param _NeedMonitor: 该输入源是否正在监播
|
|
27532
27532
|
:type NeedMonitor: bool
|
|
27533
|
+
:param _CdnStreamId: 导播台pvw pgm的cdn流id
|
|
27534
|
+
:type CdnStreamId: str
|
|
27533
27535
|
"""
|
|
27534
27536
|
self._InputStreamName = None
|
|
27535
27537
|
self._InputDomain = None
|
|
@@ -27538,6 +27540,7 @@ class LiveStreamMonitorInputInfo(AbstractModel):
|
|
|
27538
27540
|
self._Description = None
|
|
27539
27541
|
self._CasterInputIndex = None
|
|
27540
27542
|
self._NeedMonitor = None
|
|
27543
|
+
self._CdnStreamId = None
|
|
27541
27544
|
|
|
27542
27545
|
@property
|
|
27543
27546
|
def InputStreamName(self):
|
|
@@ -27621,6 +27624,17 @@ class LiveStreamMonitorInputInfo(AbstractModel):
|
|
|
27621
27624
|
def NeedMonitor(self, NeedMonitor):
|
|
27622
27625
|
self._NeedMonitor = NeedMonitor
|
|
27623
27626
|
|
|
27627
|
+
@property
|
|
27628
|
+
def CdnStreamId(self):
|
|
27629
|
+
"""导播台pvw pgm的cdn流id
|
|
27630
|
+
:rtype: str
|
|
27631
|
+
"""
|
|
27632
|
+
return self._CdnStreamId
|
|
27633
|
+
|
|
27634
|
+
@CdnStreamId.setter
|
|
27635
|
+
def CdnStreamId(self, CdnStreamId):
|
|
27636
|
+
self._CdnStreamId = CdnStreamId
|
|
27637
|
+
|
|
27624
27638
|
|
|
27625
27639
|
def _deserialize(self, params):
|
|
27626
27640
|
self._InputStreamName = params.get("InputStreamName")
|
|
@@ -27630,6 +27644,7 @@ class LiveStreamMonitorInputInfo(AbstractModel):
|
|
|
27630
27644
|
self._Description = params.get("Description")
|
|
27631
27645
|
self._CasterInputIndex = params.get("CasterInputIndex")
|
|
27632
27646
|
self._NeedMonitor = params.get("NeedMonitor")
|
|
27647
|
+
self._CdnStreamId = params.get("CdnStreamId")
|
|
27633
27648
|
memeber_set = set(params.keys())
|
|
27634
27649
|
for name, value in vars(self).items():
|
|
27635
27650
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1326
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1324
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|