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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/setup.py +1 -1
  3. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/models.py +13 -0
  5. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-live-3.0.1121/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-live-3.0.1117/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/README.rst +0 -0
  9. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/__init__.py +0 -0
  11. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/__init__.py +0 -0
  12. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud-sdk-python-live-3.0.1117 → tencentcloud-sdk-python-live-3.0.1121}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  15. {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
  16. {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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1117
3
+ Version: 3.0.1121
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1117"],
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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1117'
17
+ __version__ = '3.0.1121'
@@ -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"))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1117
3
+ Version: 3.0.1121
4
4
  Summary: Tencent Cloud Live SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1121
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1117