tencentcloud-sdk-python-live 3.0.1117__tar.gz → 3.0.1121__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-live might be problematic. Click here for more details.
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/models.py +13 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1121/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1117/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/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.1121"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -23685,6 +23685,9 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23685
23685
|
:param _RemoveWatermark: 是否去除水印。
|
|
23686
23686
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23687
23687
|
:type RemoveWatermark: bool
|
|
23688
|
+
:param _CosStore: 是否存储至cos
|
|
23689
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23690
|
+
:type CosStore: int
|
|
23688
23691
|
:param _FlvSpecialParam: FLV 录制定制参数。
|
|
23689
23692
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23690
23693
|
:type FlvSpecialParam: :class:`tencentcloud.live.v20180801.models.FlvSpecialParam`
|
|
@@ -23700,6 +23703,7 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23700
23703
|
self._HlsSpecialParam = None
|
|
23701
23704
|
self._Mp3Param = None
|
|
23702
23705
|
self._RemoveWatermark = None
|
|
23706
|
+
self._CosStore = None
|
|
23703
23707
|
self._FlvSpecialParam = None
|
|
23704
23708
|
|
|
23705
23709
|
@property
|
|
@@ -23790,6 +23794,14 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23790
23794
|
def RemoveWatermark(self, RemoveWatermark):
|
|
23791
23795
|
self._RemoveWatermark = RemoveWatermark
|
|
23792
23796
|
|
|
23797
|
+
@property
|
|
23798
|
+
def CosStore(self):
|
|
23799
|
+
return self._CosStore
|
|
23800
|
+
|
|
23801
|
+
@CosStore.setter
|
|
23802
|
+
def CosStore(self, CosStore):
|
|
23803
|
+
self._CosStore = CosStore
|
|
23804
|
+
|
|
23793
23805
|
@property
|
|
23794
23806
|
def FlvSpecialParam(self):
|
|
23795
23807
|
return self._FlvSpecialParam
|
|
@@ -23823,6 +23835,7 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23823
23835
|
self._Mp3Param = RecordParam()
|
|
23824
23836
|
self._Mp3Param._deserialize(params.get("Mp3Param"))
|
|
23825
23837
|
self._RemoveWatermark = params.get("RemoveWatermark")
|
|
23838
|
+
self._CosStore = params.get("CosStore")
|
|
23826
23839
|
if params.get("FlvSpecialParam") is not None:
|
|
23827
23840
|
self._FlvSpecialParam = FlvSpecialParam()
|
|
23828
23841
|
self._FlvSpecialParam._deserialize(params.get("FlvSpecialParam"))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1121
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1117
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|