tencentcloud-sdk-python-live 3.1.63__tar.gz → 3.1.67__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.1.63 → tencentcloud_sdk_python_live-3.1.67}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/setup.py +1 -1
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/v20180801/errorcodes.py +3 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/v20180801/live_client.py +24 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/v20180801/live_client_async.py +19 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/v20180801/models.py +204 -22
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_live-3.1.67/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_live-3.1.63/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/README.rst +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/setup.cfg +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.63 → tencentcloud_sdk_python_live-3.1.67}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-live
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.67,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Live SDK for Python',
|
|
@@ -248,6 +248,9 @@ FAILEDOPERATION_PARENTDOMAINADDED = 'FailedOperation.ParentDomainAdded'
|
|
|
248
248
|
# 启动混流失败。
|
|
249
249
|
FAILEDOPERATION_PROCESSMIXERROR = 'FailedOperation.ProcessMixError'
|
|
250
250
|
|
|
251
|
+
# 查询AIGC任务失败
|
|
252
|
+
FAILEDOPERATION_QUERYAIGCTASKFAILED = 'FailedOperation.QueryAIGCTaskFailed'
|
|
253
|
+
|
|
251
254
|
# 查询 upload 信息失败。
|
|
252
255
|
FAILEDOPERATION_QUERYUPLOADINFOFAILED = 'FailedOperation.QueryUploadInfoFailed'
|
|
253
256
|
|
|
@@ -1770,6 +1770,29 @@ class LiveClient(AbstractClient):
|
|
|
1770
1770
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1771
1771
|
|
|
1772
1772
|
|
|
1773
|
+
def DescribeAIGCTaskStatus(self, request):
|
|
1774
|
+
r"""查询视频转绘任务
|
|
1775
|
+
|
|
1776
|
+
:param request: Request instance for DescribeAIGCTaskStatus.
|
|
1777
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribeAIGCTaskStatusRequest`
|
|
1778
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribeAIGCTaskStatusResponse`
|
|
1779
|
+
|
|
1780
|
+
"""
|
|
1781
|
+
try:
|
|
1782
|
+
params = request._serialize()
|
|
1783
|
+
headers = request.headers
|
|
1784
|
+
body = self.call("DescribeAIGCTaskStatus", params, headers=headers)
|
|
1785
|
+
response = json.loads(body)
|
|
1786
|
+
model = models.DescribeAIGCTaskStatusResponse()
|
|
1787
|
+
model._deserialize(response["Response"])
|
|
1788
|
+
return model
|
|
1789
|
+
except Exception as e:
|
|
1790
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1791
|
+
raise
|
|
1792
|
+
else:
|
|
1793
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1794
|
+
|
|
1795
|
+
|
|
1773
1796
|
def DescribeAllStreamPlayInfoList(self, request):
|
|
1774
1797
|
r"""该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
1775
1798
|
输入某个时间点(1分钟维度),查询该时间点所有流的下行信息。
|
|
@@ -3624,6 +3647,7 @@ class LiveClient(AbstractClient):
|
|
|
3624
3647
|
|
|
3625
3648
|
def DescribeLogDownloadList(self, request):
|
|
3626
3649
|
r"""批量获取日志URL。
|
|
3650
|
+
日志数据打包存在一定延迟,24小时候数据包趋于完整。
|
|
3627
3651
|
|
|
3628
3652
|
:param request: Request instance for DescribeLogDownloadList.
|
|
3629
3653
|
:type request: :class:`tencentcloud.live.v20180801.models.DescribeLogDownloadListRequest`
|
|
@@ -1404,6 +1404,24 @@ class LiveClient(AbstractClient):
|
|
|
1404
1404
|
|
|
1405
1405
|
return await self.call_and_deserialize(**kwargs)
|
|
1406
1406
|
|
|
1407
|
+
async def DescribeAIGCTaskStatus(
|
|
1408
|
+
self,
|
|
1409
|
+
request: models.DescribeAIGCTaskStatusRequest,
|
|
1410
|
+
opts: Dict = None,
|
|
1411
|
+
) -> models.DescribeAIGCTaskStatusResponse:
|
|
1412
|
+
"""
|
|
1413
|
+
查询视频转绘任务
|
|
1414
|
+
"""
|
|
1415
|
+
|
|
1416
|
+
kwargs = {}
|
|
1417
|
+
kwargs["action"] = "DescribeAIGCTaskStatus"
|
|
1418
|
+
kwargs["params"] = request._serialize()
|
|
1419
|
+
kwargs["resp_cls"] = models.DescribeAIGCTaskStatusResponse
|
|
1420
|
+
kwargs["headers"] = request.headers
|
|
1421
|
+
kwargs["opts"] = opts or {}
|
|
1422
|
+
|
|
1423
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1424
|
+
|
|
1407
1425
|
async def DescribeAllStreamPlayInfoList(
|
|
1408
1426
|
self,
|
|
1409
1427
|
request: models.DescribeAllStreamPlayInfoListRequest,
|
|
@@ -2868,6 +2886,7 @@ class LiveClient(AbstractClient):
|
|
|
2868
2886
|
) -> models.DescribeLogDownloadListResponse:
|
|
2869
2887
|
"""
|
|
2870
2888
|
批量获取日志URL。
|
|
2889
|
+
日志数据打包存在一定延迟,24小时候数据包趋于完整。
|
|
2871
2890
|
"""
|
|
2872
2891
|
|
|
2873
2892
|
kwargs = {}
|
|
@@ -12115,23 +12115,21 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12115
12115
|
|
|
12116
12116
|
def __init__(self):
|
|
12117
12117
|
r"""
|
|
12118
|
-
:param _StreamName:
|
|
12118
|
+
:param _StreamName: <p>流名称。</p>
|
|
12119
12119
|
:type StreamName: str
|
|
12120
|
-
:param _DomainName:
|
|
12120
|
+
:param _DomainName: <p>推流域名。</p>
|
|
12121
12121
|
:type DomainName: str
|
|
12122
|
-
:param _AppName:
|
|
12122
|
+
:param _AppName: <p>推流路径。</p>
|
|
12123
12123
|
:type AppName: str
|
|
12124
|
-
:param _EndTime:
|
|
12124
|
+
:param _EndTime: <p>录制任务结束时间,Unix时间戳。设置时间必须大于StartTime及当前时间,且小于当前时间+7天。</p>
|
|
12125
12125
|
:type EndTime: int
|
|
12126
|
-
:param _StartTime:
|
|
12126
|
+
:param _StartTime: <p>录制任务开始时间,Unix时间戳。如果不填表示立即启动录制。EndTime - StartTime不能超过24小时。</p>
|
|
12127
12127
|
:type StartTime: int
|
|
12128
|
-
:param _StreamType:
|
|
12129
|
-
0-直播推流。
|
|
12130
|
-
1-合成流,即 A+B=C 类型混流。
|
|
12128
|
+
:param _StreamType: <p>推流类型,默认0。取值:<br>0-直播推流。<br>1-合成流,即 A+B=C 类型混流。</p>
|
|
12131
12129
|
:type StreamType: int
|
|
12132
|
-
:param _TemplateId:
|
|
12130
|
+
:param _TemplateId: <p>录制模板ID,CreateLiveRecordTemplate 返回值。如果不填或者传入错误ID,则默认录制 HLS 格式、永久存储至 VOD 主应用下。<br>示例值:0。</p>
|
|
12133
12131
|
:type TemplateId: int
|
|
12134
|
-
:param _Extension:
|
|
12132
|
+
:param _Extension: <p>扩展字段,暂无定义。默认为空。</p>
|
|
12135
12133
|
:type Extension: str
|
|
12136
12134
|
"""
|
|
12137
12135
|
self._StreamName = None
|
|
@@ -12145,7 +12143,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12145
12143
|
|
|
12146
12144
|
@property
|
|
12147
12145
|
def StreamName(self):
|
|
12148
|
-
r"""
|
|
12146
|
+
r"""<p>流名称。</p>
|
|
12149
12147
|
:rtype: str
|
|
12150
12148
|
"""
|
|
12151
12149
|
return self._StreamName
|
|
@@ -12156,7 +12154,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12156
12154
|
|
|
12157
12155
|
@property
|
|
12158
12156
|
def DomainName(self):
|
|
12159
|
-
r"""
|
|
12157
|
+
r"""<p>推流域名。</p>
|
|
12160
12158
|
:rtype: str
|
|
12161
12159
|
"""
|
|
12162
12160
|
return self._DomainName
|
|
@@ -12167,7 +12165,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12167
12165
|
|
|
12168
12166
|
@property
|
|
12169
12167
|
def AppName(self):
|
|
12170
|
-
r"""
|
|
12168
|
+
r"""<p>推流路径。</p>
|
|
12171
12169
|
:rtype: str
|
|
12172
12170
|
"""
|
|
12173
12171
|
return self._AppName
|
|
@@ -12178,7 +12176,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12178
12176
|
|
|
12179
12177
|
@property
|
|
12180
12178
|
def EndTime(self):
|
|
12181
|
-
r"""
|
|
12179
|
+
r"""<p>录制任务结束时间,Unix时间戳。设置时间必须大于StartTime及当前时间,且小于当前时间+7天。</p>
|
|
12182
12180
|
:rtype: int
|
|
12183
12181
|
"""
|
|
12184
12182
|
return self._EndTime
|
|
@@ -12189,7 +12187,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12189
12187
|
|
|
12190
12188
|
@property
|
|
12191
12189
|
def StartTime(self):
|
|
12192
|
-
r"""
|
|
12190
|
+
r"""<p>录制任务开始时间,Unix时间戳。如果不填表示立即启动录制。EndTime - StartTime不能超过24小时。</p>
|
|
12193
12191
|
:rtype: int
|
|
12194
12192
|
"""
|
|
12195
12193
|
return self._StartTime
|
|
@@ -12200,9 +12198,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12200
12198
|
|
|
12201
12199
|
@property
|
|
12202
12200
|
def StreamType(self):
|
|
12203
|
-
r"""
|
|
12204
|
-
0-直播推流。
|
|
12205
|
-
1-合成流,即 A+B=C 类型混流。
|
|
12201
|
+
r"""<p>推流类型,默认0。取值:<br>0-直播推流。<br>1-合成流,即 A+B=C 类型混流。</p>
|
|
12206
12202
|
:rtype: int
|
|
12207
12203
|
"""
|
|
12208
12204
|
return self._StreamType
|
|
@@ -12213,7 +12209,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12213
12209
|
|
|
12214
12210
|
@property
|
|
12215
12211
|
def TemplateId(self):
|
|
12216
|
-
r"""
|
|
12212
|
+
r"""<p>录制模板ID,CreateLiveRecordTemplate 返回值。如果不填或者传入错误ID,则默认录制 HLS 格式、永久存储至 VOD 主应用下。<br>示例值:0。</p>
|
|
12217
12213
|
:rtype: int
|
|
12218
12214
|
"""
|
|
12219
12215
|
return self._TemplateId
|
|
@@ -12224,7 +12220,7 @@ class CreateRecordTaskRequest(AbstractModel):
|
|
|
12224
12220
|
|
|
12225
12221
|
@property
|
|
12226
12222
|
def Extension(self):
|
|
12227
|
-
r"""
|
|
12223
|
+
r"""<p>扩展字段,暂无定义。默认为空。</p>
|
|
12228
12224
|
:rtype: str
|
|
12229
12225
|
"""
|
|
12230
12226
|
return self._Extension
|
|
@@ -12260,7 +12256,7 @@ class CreateRecordTaskResponse(AbstractModel):
|
|
|
12260
12256
|
|
|
12261
12257
|
def __init__(self):
|
|
12262
12258
|
r"""
|
|
12263
|
-
:param _TaskId:
|
|
12259
|
+
:param _TaskId: <p>任务ID,全局唯一标识录制任务。返回TaskId字段说明录制任务创建成功。</p>
|
|
12264
12260
|
:type TaskId: str
|
|
12265
12261
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12266
12262
|
:type RequestId: str
|
|
@@ -12270,7 +12266,7 @@ class CreateRecordTaskResponse(AbstractModel):
|
|
|
12270
12266
|
|
|
12271
12267
|
@property
|
|
12272
12268
|
def TaskId(self):
|
|
12273
|
-
r"""
|
|
12269
|
+
r"""<p>任务ID,全局唯一标识录制任务。返回TaskId字段说明录制任务创建成功。</p>
|
|
12274
12270
|
:rtype: str
|
|
12275
12271
|
"""
|
|
12276
12272
|
return self._TaskId
|
|
@@ -15198,6 +15194,192 @@ class DeleteScreenshotTaskResponse(AbstractModel):
|
|
|
15198
15194
|
self._RequestId = params.get("RequestId")
|
|
15199
15195
|
|
|
15200
15196
|
|
|
15197
|
+
class DescribeAIGCTaskStatusRequest(AbstractModel):
|
|
15198
|
+
r"""DescribeAIGCTaskStatus请求参数结构体
|
|
15199
|
+
|
|
15200
|
+
"""
|
|
15201
|
+
|
|
15202
|
+
def __init__(self):
|
|
15203
|
+
r"""
|
|
15204
|
+
:param _TaskId: <p>任务ID</p>
|
|
15205
|
+
:type TaskId: str
|
|
15206
|
+
"""
|
|
15207
|
+
self._TaskId = None
|
|
15208
|
+
|
|
15209
|
+
@property
|
|
15210
|
+
def TaskId(self):
|
|
15211
|
+
r"""<p>任务ID</p>
|
|
15212
|
+
:rtype: str
|
|
15213
|
+
"""
|
|
15214
|
+
return self._TaskId
|
|
15215
|
+
|
|
15216
|
+
@TaskId.setter
|
|
15217
|
+
def TaskId(self, TaskId):
|
|
15218
|
+
self._TaskId = TaskId
|
|
15219
|
+
|
|
15220
|
+
|
|
15221
|
+
def _deserialize(self, params):
|
|
15222
|
+
self._TaskId = params.get("TaskId")
|
|
15223
|
+
memeber_set = set(params.keys())
|
|
15224
|
+
for name, value in vars(self).items():
|
|
15225
|
+
property_name = name[1:]
|
|
15226
|
+
if property_name in memeber_set:
|
|
15227
|
+
memeber_set.remove(property_name)
|
|
15228
|
+
if len(memeber_set) > 0:
|
|
15229
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15230
|
+
|
|
15231
|
+
|
|
15232
|
+
|
|
15233
|
+
class DescribeAIGCTaskStatusResponse(AbstractModel):
|
|
15234
|
+
r"""DescribeAIGCTaskStatus返回参数结构体
|
|
15235
|
+
|
|
15236
|
+
"""
|
|
15237
|
+
|
|
15238
|
+
def __init__(self):
|
|
15239
|
+
r"""
|
|
15240
|
+
:param _TaskId: <p>任务ID</p>
|
|
15241
|
+
:type TaskId: str
|
|
15242
|
+
:param _TaskStatus: <p>状态</p><p>枚举值:</p><ul><li>FINISHED: 1</li></ul>
|
|
15243
|
+
:type TaskStatus: str
|
|
15244
|
+
:param _OutputUrl: <p>输出url</p>
|
|
15245
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15246
|
+
:type OutputUrl: str
|
|
15247
|
+
:param _CreateTime: <p>任务创建时间</p>
|
|
15248
|
+
:type CreateTime: str
|
|
15249
|
+
:param _ScheduledTime: <p>任务调度时间</p>
|
|
15250
|
+
:type ScheduledTime: str
|
|
15251
|
+
:param _FinishedTime: <p>任务完成时间</p>
|
|
15252
|
+
:type FinishedTime: str
|
|
15253
|
+
:param _TaskResultCode: <p>任务错误码</p>
|
|
15254
|
+
:type TaskResultCode: int
|
|
15255
|
+
:param _TaskResultMsg: <p>任务返回错误信息</p>
|
|
15256
|
+
:type TaskResultMsg: str
|
|
15257
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15258
|
+
:type RequestId: str
|
|
15259
|
+
"""
|
|
15260
|
+
self._TaskId = None
|
|
15261
|
+
self._TaskStatus = None
|
|
15262
|
+
self._OutputUrl = None
|
|
15263
|
+
self._CreateTime = None
|
|
15264
|
+
self._ScheduledTime = None
|
|
15265
|
+
self._FinishedTime = None
|
|
15266
|
+
self._TaskResultCode = None
|
|
15267
|
+
self._TaskResultMsg = None
|
|
15268
|
+
self._RequestId = None
|
|
15269
|
+
|
|
15270
|
+
@property
|
|
15271
|
+
def TaskId(self):
|
|
15272
|
+
r"""<p>任务ID</p>
|
|
15273
|
+
:rtype: str
|
|
15274
|
+
"""
|
|
15275
|
+
return self._TaskId
|
|
15276
|
+
|
|
15277
|
+
@TaskId.setter
|
|
15278
|
+
def TaskId(self, TaskId):
|
|
15279
|
+
self._TaskId = TaskId
|
|
15280
|
+
|
|
15281
|
+
@property
|
|
15282
|
+
def TaskStatus(self):
|
|
15283
|
+
r"""<p>状态</p><p>枚举值:</p><ul><li>FINISHED: 1</li></ul>
|
|
15284
|
+
:rtype: str
|
|
15285
|
+
"""
|
|
15286
|
+
return self._TaskStatus
|
|
15287
|
+
|
|
15288
|
+
@TaskStatus.setter
|
|
15289
|
+
def TaskStatus(self, TaskStatus):
|
|
15290
|
+
self._TaskStatus = TaskStatus
|
|
15291
|
+
|
|
15292
|
+
@property
|
|
15293
|
+
def OutputUrl(self):
|
|
15294
|
+
r"""<p>输出url</p>
|
|
15295
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15296
|
+
:rtype: str
|
|
15297
|
+
"""
|
|
15298
|
+
return self._OutputUrl
|
|
15299
|
+
|
|
15300
|
+
@OutputUrl.setter
|
|
15301
|
+
def OutputUrl(self, OutputUrl):
|
|
15302
|
+
self._OutputUrl = OutputUrl
|
|
15303
|
+
|
|
15304
|
+
@property
|
|
15305
|
+
def CreateTime(self):
|
|
15306
|
+
r"""<p>任务创建时间</p>
|
|
15307
|
+
:rtype: str
|
|
15308
|
+
"""
|
|
15309
|
+
return self._CreateTime
|
|
15310
|
+
|
|
15311
|
+
@CreateTime.setter
|
|
15312
|
+
def CreateTime(self, CreateTime):
|
|
15313
|
+
self._CreateTime = CreateTime
|
|
15314
|
+
|
|
15315
|
+
@property
|
|
15316
|
+
def ScheduledTime(self):
|
|
15317
|
+
r"""<p>任务调度时间</p>
|
|
15318
|
+
:rtype: str
|
|
15319
|
+
"""
|
|
15320
|
+
return self._ScheduledTime
|
|
15321
|
+
|
|
15322
|
+
@ScheduledTime.setter
|
|
15323
|
+
def ScheduledTime(self, ScheduledTime):
|
|
15324
|
+
self._ScheduledTime = ScheduledTime
|
|
15325
|
+
|
|
15326
|
+
@property
|
|
15327
|
+
def FinishedTime(self):
|
|
15328
|
+
r"""<p>任务完成时间</p>
|
|
15329
|
+
:rtype: str
|
|
15330
|
+
"""
|
|
15331
|
+
return self._FinishedTime
|
|
15332
|
+
|
|
15333
|
+
@FinishedTime.setter
|
|
15334
|
+
def FinishedTime(self, FinishedTime):
|
|
15335
|
+
self._FinishedTime = FinishedTime
|
|
15336
|
+
|
|
15337
|
+
@property
|
|
15338
|
+
def TaskResultCode(self):
|
|
15339
|
+
r"""<p>任务错误码</p>
|
|
15340
|
+
:rtype: int
|
|
15341
|
+
"""
|
|
15342
|
+
return self._TaskResultCode
|
|
15343
|
+
|
|
15344
|
+
@TaskResultCode.setter
|
|
15345
|
+
def TaskResultCode(self, TaskResultCode):
|
|
15346
|
+
self._TaskResultCode = TaskResultCode
|
|
15347
|
+
|
|
15348
|
+
@property
|
|
15349
|
+
def TaskResultMsg(self):
|
|
15350
|
+
r"""<p>任务返回错误信息</p>
|
|
15351
|
+
:rtype: str
|
|
15352
|
+
"""
|
|
15353
|
+
return self._TaskResultMsg
|
|
15354
|
+
|
|
15355
|
+
@TaskResultMsg.setter
|
|
15356
|
+
def TaskResultMsg(self, TaskResultMsg):
|
|
15357
|
+
self._TaskResultMsg = TaskResultMsg
|
|
15358
|
+
|
|
15359
|
+
@property
|
|
15360
|
+
def RequestId(self):
|
|
15361
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15362
|
+
:rtype: str
|
|
15363
|
+
"""
|
|
15364
|
+
return self._RequestId
|
|
15365
|
+
|
|
15366
|
+
@RequestId.setter
|
|
15367
|
+
def RequestId(self, RequestId):
|
|
15368
|
+
self._RequestId = RequestId
|
|
15369
|
+
|
|
15370
|
+
|
|
15371
|
+
def _deserialize(self, params):
|
|
15372
|
+
self._TaskId = params.get("TaskId")
|
|
15373
|
+
self._TaskStatus = params.get("TaskStatus")
|
|
15374
|
+
self._OutputUrl = params.get("OutputUrl")
|
|
15375
|
+
self._CreateTime = params.get("CreateTime")
|
|
15376
|
+
self._ScheduledTime = params.get("ScheduledTime")
|
|
15377
|
+
self._FinishedTime = params.get("FinishedTime")
|
|
15378
|
+
self._TaskResultCode = params.get("TaskResultCode")
|
|
15379
|
+
self._TaskResultMsg = params.get("TaskResultMsg")
|
|
15380
|
+
self._RequestId = params.get("RequestId")
|
|
15381
|
+
|
|
15382
|
+
|
|
15201
15383
|
class DescribeAllStreamPlayInfoListRequest(AbstractModel):
|
|
15202
15384
|
r"""DescribeAllStreamPlayInfoList请求参数结构体
|
|
15203
15385
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-live
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.67
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.63
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|