tencentcloud-sdk-python-live 3.0.1253__tar.gz → 3.0.1262__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.1253 → tencentcloud-sdk-python-live-3.0.1262}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/live/v20180801/models.py +51 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1262/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1253/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1253 → tencentcloud-sdk-python-live-3.0.1262}/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.1262"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -26271,6 +26271,9 @@ class TimeShiftStreamInfo(AbstractModel):
|
|
|
26271
26271
|
:param _Duration: 时移数据存储时长,单位秒。
|
|
26272
26272
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
26273
26273
|
:type Duration: int
|
|
26274
|
+
:param _TimeShiftSubStreams: 时移自适应码率子流列表。
|
|
26275
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
26276
|
+
:type TimeShiftSubStreams: list of TimeShiftSubStream
|
|
26274
26277
|
"""
|
|
26275
26278
|
self._DomainGroup = None
|
|
26276
26279
|
self._Domain = None
|
|
@@ -26281,6 +26284,7 @@ class TimeShiftStreamInfo(AbstractModel):
|
|
|
26281
26284
|
self._TransCodeId = None
|
|
26282
26285
|
self._StreamType = None
|
|
26283
26286
|
self._Duration = None
|
|
26287
|
+
self._TimeShiftSubStreams = None
|
|
26284
26288
|
|
|
26285
26289
|
@property
|
|
26286
26290
|
def DomainGroup(self):
|
|
@@ -26354,6 +26358,14 @@ class TimeShiftStreamInfo(AbstractModel):
|
|
|
26354
26358
|
def Duration(self, Duration):
|
|
26355
26359
|
self._Duration = Duration
|
|
26356
26360
|
|
|
26361
|
+
@property
|
|
26362
|
+
def TimeShiftSubStreams(self):
|
|
26363
|
+
return self._TimeShiftSubStreams
|
|
26364
|
+
|
|
26365
|
+
@TimeShiftSubStreams.setter
|
|
26366
|
+
def TimeShiftSubStreams(self, TimeShiftSubStreams):
|
|
26367
|
+
self._TimeShiftSubStreams = TimeShiftSubStreams
|
|
26368
|
+
|
|
26357
26369
|
|
|
26358
26370
|
def _deserialize(self, params):
|
|
26359
26371
|
self._DomainGroup = params.get("DomainGroup")
|
|
@@ -26365,6 +26377,45 @@ class TimeShiftStreamInfo(AbstractModel):
|
|
|
26365
26377
|
self._TransCodeId = params.get("TransCodeId")
|
|
26366
26378
|
self._StreamType = params.get("StreamType")
|
|
26367
26379
|
self._Duration = params.get("Duration")
|
|
26380
|
+
if params.get("TimeShiftSubStreams") is not None:
|
|
26381
|
+
self._TimeShiftSubStreams = []
|
|
26382
|
+
for item in params.get("TimeShiftSubStreams"):
|
|
26383
|
+
obj = TimeShiftSubStream()
|
|
26384
|
+
obj._deserialize(item)
|
|
26385
|
+
self._TimeShiftSubStreams.append(obj)
|
|
26386
|
+
memeber_set = set(params.keys())
|
|
26387
|
+
for name, value in vars(self).items():
|
|
26388
|
+
property_name = name[1:]
|
|
26389
|
+
if property_name in memeber_set:
|
|
26390
|
+
memeber_set.remove(property_name)
|
|
26391
|
+
if len(memeber_set) > 0:
|
|
26392
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26393
|
+
|
|
26394
|
+
|
|
26395
|
+
|
|
26396
|
+
class TimeShiftSubStream(AbstractModel):
|
|
26397
|
+
"""时移自适应码率子流信息。
|
|
26398
|
+
|
|
26399
|
+
"""
|
|
26400
|
+
|
|
26401
|
+
def __init__(self):
|
|
26402
|
+
r"""
|
|
26403
|
+
:param _TransCodeId: 时移自适应码率子流转码模板ID。
|
|
26404
|
+
:type TransCodeId: int
|
|
26405
|
+
"""
|
|
26406
|
+
self._TransCodeId = None
|
|
26407
|
+
|
|
26408
|
+
@property
|
|
26409
|
+
def TransCodeId(self):
|
|
26410
|
+
return self._TransCodeId
|
|
26411
|
+
|
|
26412
|
+
@TransCodeId.setter
|
|
26413
|
+
def TransCodeId(self, TransCodeId):
|
|
26414
|
+
self._TransCodeId = TransCodeId
|
|
26415
|
+
|
|
26416
|
+
|
|
26417
|
+
def _deserialize(self, params):
|
|
26418
|
+
self._TransCodeId = params.get("TransCodeId")
|
|
26368
26419
|
memeber_set = set(params.keys())
|
|
26369
26420
|
for name, value in vars(self).items():
|
|
26370
26421
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1262
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1253
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|