tencentcloud-sdk-python-live 3.0.1121__tar.gz → 3.0.1126__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/setup.py +1 -1
  3. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/live/v20180801/models.py +51 -0
  5. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-live-3.0.1126/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-live-3.0.1121/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/README.rst +0 -0
  9. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/live/__init__.py +0 -0
  11. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/live/v20180801/__init__.py +0 -0
  12. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-live-3.0.1121 → tencentcloud-sdk-python-live-3.0.1126}/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.1121
3
+ Version: 3.0.1126
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.1121"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1126"],
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.1121'
17
+ __version__ = '3.0.1126'
@@ -3649,6 +3649,8 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
3649
3649
  :type HlsSpecialParam: :class:`tencentcloud.live.v20180801.models.HlsSpecialParam`
3650
3650
  :param _Mp3Param: Mp3录制参数,开启Mp3录制时设置。
3651
3651
  :type Mp3Param: :class:`tencentcloud.live.v20180801.models.RecordParam`
3652
+ :param _CosStore: 是否存储至 cos,值为 1 时表示存储至 cos。
3653
+ :type CosStore: int
3652
3654
  :param _RemoveWatermark: 是否去除水印,类型为慢直播时此参数无效。
3653
3655
  如果为false,则录制水印流或转码流;如果为true,则录制原始流。
3654
3656
  :type RemoveWatermark: bool
@@ -3664,6 +3666,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
3664
3666
  self._IsDelayLive = None
3665
3667
  self._HlsSpecialParam = None
3666
3668
  self._Mp3Param = None
3669
+ self._CosStore = None
3667
3670
  self._RemoveWatermark = None
3668
3671
  self._FlvSpecialParam = None
3669
3672
 
@@ -3739,6 +3742,14 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
3739
3742
  def Mp3Param(self, Mp3Param):
3740
3743
  self._Mp3Param = Mp3Param
3741
3744
 
3745
+ @property
3746
+ def CosStore(self):
3747
+ return self._CosStore
3748
+
3749
+ @CosStore.setter
3750
+ def CosStore(self, CosStore):
3751
+ self._CosStore = CosStore
3752
+
3742
3753
  @property
3743
3754
  def RemoveWatermark(self):
3744
3755
  return self._RemoveWatermark
@@ -3778,6 +3789,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
3778
3789
  if params.get("Mp3Param") is not None:
3779
3790
  self._Mp3Param = RecordParam()
3780
3791
  self._Mp3Param._deserialize(params.get("Mp3Param"))
3792
+ self._CosStore = params.get("CosStore")
3781
3793
  self._RemoveWatermark = params.get("RemoveWatermark")
3782
3794
  if params.get("FlvSpecialParam") is not None:
3783
3795
  self._FlvSpecialParam = FlvSpecialParam()
@@ -23443,6 +23455,15 @@ cold:低频存储。
23443
23455
  :param _ClassId: 点播应用分类
23444
23456
  注意:此字段可能返回 null,表示取不到有效值。
23445
23457
  :type ClassId: int
23458
+ :param _CosBucketName: 存储至 cos 的 bucket 桶名称。
23459
+ 注意:此字段可能返回 null,表示取不到有效值。
23460
+ :type CosBucketName: str
23461
+ :param _CosBucketRegion: 存储至 cos 的 bucket 区域。
23462
+ 注意:此字段可能返回 null,表示取不到有效值。
23463
+ :type CosBucketRegion: str
23464
+ :param _CosBucketPath: 存储至 cos 的 bucket 路径。
23465
+ 注意:此字段可能返回 null,表示取不到有效值。
23466
+ :type CosBucketPath: str
23446
23467
  """
23447
23468
  self._RecordInterval = None
23448
23469
  self._StorageTime = None
@@ -23452,6 +23473,9 @@ cold:低频存储。
23452
23473
  self._Procedure = None
23453
23474
  self._StorageMode = None
23454
23475
  self._ClassId = None
23476
+ self._CosBucketName = None
23477
+ self._CosBucketRegion = None
23478
+ self._CosBucketPath = None
23455
23479
 
23456
23480
  @property
23457
23481
  def RecordInterval(self):
@@ -23517,6 +23541,30 @@ cold:低频存储。
23517
23541
  def ClassId(self, ClassId):
23518
23542
  self._ClassId = ClassId
23519
23543
 
23544
+ @property
23545
+ def CosBucketName(self):
23546
+ return self._CosBucketName
23547
+
23548
+ @CosBucketName.setter
23549
+ def CosBucketName(self, CosBucketName):
23550
+ self._CosBucketName = CosBucketName
23551
+
23552
+ @property
23553
+ def CosBucketRegion(self):
23554
+ return self._CosBucketRegion
23555
+
23556
+ @CosBucketRegion.setter
23557
+ def CosBucketRegion(self, CosBucketRegion):
23558
+ self._CosBucketRegion = CosBucketRegion
23559
+
23560
+ @property
23561
+ def CosBucketPath(self):
23562
+ return self._CosBucketPath
23563
+
23564
+ @CosBucketPath.setter
23565
+ def CosBucketPath(self, CosBucketPath):
23566
+ self._CosBucketPath = CosBucketPath
23567
+
23520
23568
 
23521
23569
  def _deserialize(self, params):
23522
23570
  self._RecordInterval = params.get("RecordInterval")
@@ -23527,6 +23575,9 @@ cold:低频存储。
23527
23575
  self._Procedure = params.get("Procedure")
23528
23576
  self._StorageMode = params.get("StorageMode")
23529
23577
  self._ClassId = params.get("ClassId")
23578
+ self._CosBucketName = params.get("CosBucketName")
23579
+ self._CosBucketRegion = params.get("CosBucketRegion")
23580
+ self._CosBucketPath = params.get("CosBucketPath")
23530
23581
  memeber_set = set(params.keys())
23531
23582
  for name, value in vars(self).items():
23532
23583
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1121
3
+ Version: 3.0.1126
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.1126
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1121