tencentcloud-sdk-python-live 3.1.19__tar.gz → 3.1.28__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.19 → tencentcloud_sdk_python_live-3.1.28}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/setup.py +1 -1
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/v20180801/live_client.py +26 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/v20180801/live_client_async.py +21 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/v20180801/models.py +163 -26
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_live-3.1.28/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_live-3.1.19/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/README.rst +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/setup.cfg +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.19 → tencentcloud_sdk_python_live-3.1.28}/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.28
|
|
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.28
|
|
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.28,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Live SDK for Python',
|
|
@@ -3895,6 +3895,32 @@ class LiveClient(AbstractClient):
|
|
|
3895
3895
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3896
3896
|
|
|
3897
3897
|
|
|
3898
|
+
def InsertTaskTemporaryFiles(self, request):
|
|
3899
|
+
r"""可通过调用该接口,对点播源的直播拉流任务进行插播操作。
|
|
3900
|
+
注意:
|
|
3901
|
+
1. 仅支持对有效且运行中的点播源任务进行插播操作。
|
|
3902
|
+
2. 拉转推插播文件时,事件及回调中的索引均保持为插播前的值。
|
|
3903
|
+
|
|
3904
|
+
:param request: Request instance for InsertTaskTemporaryFiles.
|
|
3905
|
+
:type request: :class:`tencentcloud.live.v20180801.models.InsertTaskTemporaryFilesRequest`
|
|
3906
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.InsertTaskTemporaryFilesResponse`
|
|
3907
|
+
|
|
3908
|
+
"""
|
|
3909
|
+
try:
|
|
3910
|
+
params = request._serialize()
|
|
3911
|
+
headers = request.headers
|
|
3912
|
+
body = self.call("InsertTaskTemporaryFiles", params, headers=headers)
|
|
3913
|
+
response = json.loads(body)
|
|
3914
|
+
model = models.InsertTaskTemporaryFilesResponse()
|
|
3915
|
+
model._deserialize(response["Response"])
|
|
3916
|
+
return model
|
|
3917
|
+
except Exception as e:
|
|
3918
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3919
|
+
raise
|
|
3920
|
+
else:
|
|
3921
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3922
|
+
|
|
3923
|
+
|
|
3898
3924
|
def ModifyCaster(self, request):
|
|
3899
3925
|
r"""该接口用来设置导播台的描述、名称、录制模板id等参数。
|
|
3900
3926
|
|
|
@@ -3079,6 +3079,27 @@ class LiveClient(AbstractClient):
|
|
|
3079
3079
|
|
|
3080
3080
|
return await self.call_and_deserialize(**kwargs)
|
|
3081
3081
|
|
|
3082
|
+
async def InsertTaskTemporaryFiles(
|
|
3083
|
+
self,
|
|
3084
|
+
request: models.InsertTaskTemporaryFilesRequest,
|
|
3085
|
+
opts: Dict = None,
|
|
3086
|
+
) -> models.InsertTaskTemporaryFilesResponse:
|
|
3087
|
+
"""
|
|
3088
|
+
可通过调用该接口,对点播源的直播拉流任务进行插播操作。
|
|
3089
|
+
注意:
|
|
3090
|
+
1. 仅支持对有效且运行中的点播源任务进行插播操作。
|
|
3091
|
+
2. 拉转推插播文件时,事件及回调中的索引均保持为插播前的值。
|
|
3092
|
+
"""
|
|
3093
|
+
|
|
3094
|
+
kwargs = {}
|
|
3095
|
+
kwargs["action"] = "InsertTaskTemporaryFiles"
|
|
3096
|
+
kwargs["params"] = request._serialize()
|
|
3097
|
+
kwargs["resp_cls"] = models.InsertTaskTemporaryFilesResponse
|
|
3098
|
+
kwargs["headers"] = request.headers
|
|
3099
|
+
kwargs["opts"] = opts or {}
|
|
3100
|
+
|
|
3101
|
+
return await self.call_and_deserialize(**kwargs)
|
|
3102
|
+
|
|
3082
3103
|
async def ModifyCaster(
|
|
3083
3104
|
self,
|
|
3084
3105
|
request: models.ModifyCasterRequest,
|
|
@@ -21290,21 +21290,13 @@ class DescribeLiveTranscodeTotalInfoRequest(AbstractModel):
|
|
|
21290
21290
|
|
|
21291
21291
|
def __init__(self):
|
|
21292
21292
|
r"""
|
|
21293
|
-
:param _StartTime:
|
|
21294
|
-
1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
21295
|
-
2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
|
|
21293
|
+
:param _StartTime: <p>开始时间,支持最近三个月的数据查询,起始时间和结束时间跨度不能超过三个月。接口查询支持两种时间格式:1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 <a href="https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F">ISO 日期格式说明</a>2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。</p>
|
|
21296
21294
|
:type StartTime: str
|
|
21297
|
-
:param _EndTime:
|
|
21298
|
-
1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
21299
|
-
2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
|
|
21295
|
+
:param _EndTime: <p>结束时间,支持最近三个月的数据查询,起始时间和结束时间跨度不能超过三个月。接口查询支持两种时间格式:1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 <a href="https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F">ISO 日期格式说明</a>2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。</p>
|
|
21300
21296
|
:type EndTime: str
|
|
21301
|
-
:param _PushDomains:
|
|
21302
|
-
指定域名时返回1小时粒度数据。
|
|
21297
|
+
:param _PushDomains: <p>推流域名列表,若不填,表示查询所有域名总体数据。指定域名时返回1小时粒度数据。</p>
|
|
21303
21298
|
:type PushDomains: list of str
|
|
21304
|
-
:param _MainlandOrOversea:
|
|
21305
|
-
Mainland:查询中国大陆(境内)数据,
|
|
21306
|
-
Oversea:则查询国际/港澳台(境外)数据,
|
|
21307
|
-
默认:查询全球地区(境内+境外)的数据。
|
|
21299
|
+
:param _MainlandOrOversea: <p>可选值:Mainland:查询中国大陆(境内)数据,Oversea:则查询国际/港澳台(境外)数据,默认:查询全球地区(境内+境外)的数据。</p>
|
|
21308
21300
|
:type MainlandOrOversea: str
|
|
21309
21301
|
"""
|
|
21310
21302
|
self._StartTime = None
|
|
@@ -21314,9 +21306,7 @@ Oversea:则查询国际/港澳台(境外)数据,
|
|
|
21314
21306
|
|
|
21315
21307
|
@property
|
|
21316
21308
|
def StartTime(self):
|
|
21317
|
-
r"""
|
|
21318
|
-
1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
21319
|
-
2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
|
|
21309
|
+
r"""<p>开始时间,支持最近三个月的数据查询,起始时间和结束时间跨度不能超过三个月。接口查询支持两种时间格式:1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 <a href="https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F">ISO 日期格式说明</a>2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。</p>
|
|
21320
21310
|
:rtype: str
|
|
21321
21311
|
"""
|
|
21322
21312
|
return self._StartTime
|
|
@@ -21327,9 +21317,7 @@ Oversea:则查询国际/港澳台(境外)数据,
|
|
|
21327
21317
|
|
|
21328
21318
|
@property
|
|
21329
21319
|
def EndTime(self):
|
|
21330
|
-
r"""
|
|
21331
|
-
1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F)
|
|
21332
|
-
2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
|
|
21320
|
+
r"""<p>结束时间,支持最近三个月的数据查询,起始时间和结束时间跨度不能超过三个月。接口查询支持两种时间格式:1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见 <a href="https://cloud.tencent.com/document/product/267/38543#:~:text=I-,ISO,-%E6%97%A5%E6%9C%9F%E6%A0%BC%E5%BC%8F">ISO 日期格式说明</a>2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。</p>
|
|
21333
21321
|
:rtype: str
|
|
21334
21322
|
"""
|
|
21335
21323
|
return self._EndTime
|
|
@@ -21340,8 +21328,7 @@ Oversea:则查询国际/港澳台(境外)数据,
|
|
|
21340
21328
|
|
|
21341
21329
|
@property
|
|
21342
21330
|
def PushDomains(self):
|
|
21343
|
-
r"""
|
|
21344
|
-
指定域名时返回1小时粒度数据。
|
|
21331
|
+
r"""<p>推流域名列表,若不填,表示查询所有域名总体数据。指定域名时返回1小时粒度数据。</p>
|
|
21345
21332
|
:rtype: list of str
|
|
21346
21333
|
"""
|
|
21347
21334
|
return self._PushDomains
|
|
@@ -21352,10 +21339,7 @@ Oversea:则查询国际/港澳台(境外)数据,
|
|
|
21352
21339
|
|
|
21353
21340
|
@property
|
|
21354
21341
|
def MainlandOrOversea(self):
|
|
21355
|
-
r"""
|
|
21356
|
-
Mainland:查询中国大陆(境内)数据,
|
|
21357
|
-
Oversea:则查询国际/港澳台(境外)数据,
|
|
21358
|
-
默认:查询全球地区(境内+境外)的数据。
|
|
21342
|
+
r"""<p>可选值:Mainland:查询中国大陆(境内)数据,Oversea:则查询国际/港澳台(境外)数据,默认:查询全球地区(境内+境外)的数据。</p>
|
|
21359
21343
|
:rtype: str
|
|
21360
21344
|
"""
|
|
21361
21345
|
return self._MainlandOrOversea
|
|
@@ -21387,7 +21371,7 @@ class DescribeLiveTranscodeTotalInfoResponse(AbstractModel):
|
|
|
21387
21371
|
|
|
21388
21372
|
def __init__(self):
|
|
21389
21373
|
r"""
|
|
21390
|
-
:param _DataInfoList:
|
|
21374
|
+
:param _DataInfoList: <p>统计数据列表。</p>
|
|
21391
21375
|
:type DataInfoList: list of TranscodeTotalInfo
|
|
21392
21376
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21393
21377
|
:type RequestId: str
|
|
@@ -21397,7 +21381,7 @@ class DescribeLiveTranscodeTotalInfoResponse(AbstractModel):
|
|
|
21397
21381
|
|
|
21398
21382
|
@property
|
|
21399
21383
|
def DataInfoList(self):
|
|
21400
|
-
r"""
|
|
21384
|
+
r"""<p>统计数据列表。</p>
|
|
21401
21385
|
:rtype: list of TranscodeTotalInfo
|
|
21402
21386
|
"""
|
|
21403
21387
|
return self._DataInfoList
|
|
@@ -27614,6 +27598,159 @@ class HttpStatusInfo(AbstractModel):
|
|
|
27614
27598
|
|
|
27615
27599
|
|
|
27616
27600
|
|
|
27601
|
+
class InsertTaskTemporaryFilesRequest(AbstractModel):
|
|
27602
|
+
r"""InsertTaskTemporaryFiles请求参数结构体
|
|
27603
|
+
|
|
27604
|
+
"""
|
|
27605
|
+
|
|
27606
|
+
def __init__(self):
|
|
27607
|
+
r"""
|
|
27608
|
+
:param _TaskId: 直播拉流任务 ID。
|
|
27609
|
+
:type TaskId: str
|
|
27610
|
+
:param _TemporaryFiles: 插播文件列表,支持一次性插播多个文件,文件个数最大支持30个。可在轮播过程中追加新的插播文件。
|
|
27611
|
+
:type TemporaryFiles: list of str
|
|
27612
|
+
:param _Operator: 操作人名称。
|
|
27613
|
+
:type Operator: str
|
|
27614
|
+
:param _InsertAfterIndex: 将文件插在当前轮播序列的指定位置后面。索引序列从1开始。默认为:0,表示播完当前文件立即播放插入文件。注意:索引不要超过当前总文件个数,否则按播完全部文件后再处理插播文件。
|
|
27615
|
+
:type InsertAfterIndex: int
|
|
27616
|
+
:param _InsertPriorityType: 用于多个文件插播在同一个轮播序号之后时,可指定队列顺序。
|
|
27617
|
+
0 - 最高优先级队列。默认值。
|
|
27618
|
+
1 - 中等优先级队列。
|
|
27619
|
+
2 - 最低优先级队列。
|
|
27620
|
+
场景示例:
|
|
27621
|
+
比如当前播放第2个文件,多个新文件插播在第2个文件之后,播完第二个轮播文件之后,优先播放InsertPriorityType为0的插播队列中的文件,再播放InsertPriorityType为1的插播队列中的文件,最后播放InsertPriorityType为2的插播队列文件。
|
|
27622
|
+
如果插播无队列优先级要求,则无需使用此参数。
|
|
27623
|
+
:type InsertPriorityType: int
|
|
27624
|
+
:param _InsertContext: 插播上下文信息。由用户自定义传入。当播放到使用本此插播请求插入的文件时,在文件播放开始和文件播放结束的回调时,将此上下文信息通过创建任务携带的回调地址回调给用户。
|
|
27625
|
+
注意:如果有关联每个插播文件的信息需要回调时,可将需要回调的信息自行拼接到插播文件URL上,通过回调信息中的URL进行读取使用。
|
|
27626
|
+
:type InsertContext: str
|
|
27627
|
+
"""
|
|
27628
|
+
self._TaskId = None
|
|
27629
|
+
self._TemporaryFiles = None
|
|
27630
|
+
self._Operator = None
|
|
27631
|
+
self._InsertAfterIndex = None
|
|
27632
|
+
self._InsertPriorityType = None
|
|
27633
|
+
self._InsertContext = None
|
|
27634
|
+
|
|
27635
|
+
@property
|
|
27636
|
+
def TaskId(self):
|
|
27637
|
+
r"""直播拉流任务 ID。
|
|
27638
|
+
:rtype: str
|
|
27639
|
+
"""
|
|
27640
|
+
return self._TaskId
|
|
27641
|
+
|
|
27642
|
+
@TaskId.setter
|
|
27643
|
+
def TaskId(self, TaskId):
|
|
27644
|
+
self._TaskId = TaskId
|
|
27645
|
+
|
|
27646
|
+
@property
|
|
27647
|
+
def TemporaryFiles(self):
|
|
27648
|
+
r"""插播文件列表,支持一次性插播多个文件,文件个数最大支持30个。可在轮播过程中追加新的插播文件。
|
|
27649
|
+
:rtype: list of str
|
|
27650
|
+
"""
|
|
27651
|
+
return self._TemporaryFiles
|
|
27652
|
+
|
|
27653
|
+
@TemporaryFiles.setter
|
|
27654
|
+
def TemporaryFiles(self, TemporaryFiles):
|
|
27655
|
+
self._TemporaryFiles = TemporaryFiles
|
|
27656
|
+
|
|
27657
|
+
@property
|
|
27658
|
+
def Operator(self):
|
|
27659
|
+
r"""操作人名称。
|
|
27660
|
+
:rtype: str
|
|
27661
|
+
"""
|
|
27662
|
+
return self._Operator
|
|
27663
|
+
|
|
27664
|
+
@Operator.setter
|
|
27665
|
+
def Operator(self, Operator):
|
|
27666
|
+
self._Operator = Operator
|
|
27667
|
+
|
|
27668
|
+
@property
|
|
27669
|
+
def InsertAfterIndex(self):
|
|
27670
|
+
r"""将文件插在当前轮播序列的指定位置后面。索引序列从1开始。默认为:0,表示播完当前文件立即播放插入文件。注意:索引不要超过当前总文件个数,否则按播完全部文件后再处理插播文件。
|
|
27671
|
+
:rtype: int
|
|
27672
|
+
"""
|
|
27673
|
+
return self._InsertAfterIndex
|
|
27674
|
+
|
|
27675
|
+
@InsertAfterIndex.setter
|
|
27676
|
+
def InsertAfterIndex(self, InsertAfterIndex):
|
|
27677
|
+
self._InsertAfterIndex = InsertAfterIndex
|
|
27678
|
+
|
|
27679
|
+
@property
|
|
27680
|
+
def InsertPriorityType(self):
|
|
27681
|
+
r"""用于多个文件插播在同一个轮播序号之后时,可指定队列顺序。
|
|
27682
|
+
0 - 最高优先级队列。默认值。
|
|
27683
|
+
1 - 中等优先级队列。
|
|
27684
|
+
2 - 最低优先级队列。
|
|
27685
|
+
场景示例:
|
|
27686
|
+
比如当前播放第2个文件,多个新文件插播在第2个文件之后,播完第二个轮播文件之后,优先播放InsertPriorityType为0的插播队列中的文件,再播放InsertPriorityType为1的插播队列中的文件,最后播放InsertPriorityType为2的插播队列文件。
|
|
27687
|
+
如果插播无队列优先级要求,则无需使用此参数。
|
|
27688
|
+
:rtype: int
|
|
27689
|
+
"""
|
|
27690
|
+
return self._InsertPriorityType
|
|
27691
|
+
|
|
27692
|
+
@InsertPriorityType.setter
|
|
27693
|
+
def InsertPriorityType(self, InsertPriorityType):
|
|
27694
|
+
self._InsertPriorityType = InsertPriorityType
|
|
27695
|
+
|
|
27696
|
+
@property
|
|
27697
|
+
def InsertContext(self):
|
|
27698
|
+
r"""插播上下文信息。由用户自定义传入。当播放到使用本此插播请求插入的文件时,在文件播放开始和文件播放结束的回调时,将此上下文信息通过创建任务携带的回调地址回调给用户。
|
|
27699
|
+
注意:如果有关联每个插播文件的信息需要回调时,可将需要回调的信息自行拼接到插播文件URL上,通过回调信息中的URL进行读取使用。
|
|
27700
|
+
:rtype: str
|
|
27701
|
+
"""
|
|
27702
|
+
return self._InsertContext
|
|
27703
|
+
|
|
27704
|
+
@InsertContext.setter
|
|
27705
|
+
def InsertContext(self, InsertContext):
|
|
27706
|
+
self._InsertContext = InsertContext
|
|
27707
|
+
|
|
27708
|
+
|
|
27709
|
+
def _deserialize(self, params):
|
|
27710
|
+
self._TaskId = params.get("TaskId")
|
|
27711
|
+
self._TemporaryFiles = params.get("TemporaryFiles")
|
|
27712
|
+
self._Operator = params.get("Operator")
|
|
27713
|
+
self._InsertAfterIndex = params.get("InsertAfterIndex")
|
|
27714
|
+
self._InsertPriorityType = params.get("InsertPriorityType")
|
|
27715
|
+
self._InsertContext = params.get("InsertContext")
|
|
27716
|
+
memeber_set = set(params.keys())
|
|
27717
|
+
for name, value in vars(self).items():
|
|
27718
|
+
property_name = name[1:]
|
|
27719
|
+
if property_name in memeber_set:
|
|
27720
|
+
memeber_set.remove(property_name)
|
|
27721
|
+
if len(memeber_set) > 0:
|
|
27722
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
27723
|
+
|
|
27724
|
+
|
|
27725
|
+
|
|
27726
|
+
class InsertTaskTemporaryFilesResponse(AbstractModel):
|
|
27727
|
+
r"""InsertTaskTemporaryFiles返回参数结构体
|
|
27728
|
+
|
|
27729
|
+
"""
|
|
27730
|
+
|
|
27731
|
+
def __init__(self):
|
|
27732
|
+
r"""
|
|
27733
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
27734
|
+
:type RequestId: str
|
|
27735
|
+
"""
|
|
27736
|
+
self._RequestId = None
|
|
27737
|
+
|
|
27738
|
+
@property
|
|
27739
|
+
def RequestId(self):
|
|
27740
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
27741
|
+
:rtype: str
|
|
27742
|
+
"""
|
|
27743
|
+
return self._RequestId
|
|
27744
|
+
|
|
27745
|
+
@RequestId.setter
|
|
27746
|
+
def RequestId(self, RequestId):
|
|
27747
|
+
self._RequestId = RequestId
|
|
27748
|
+
|
|
27749
|
+
|
|
27750
|
+
def _deserialize(self, params):
|
|
27751
|
+
self._RequestId = params.get("RequestId")
|
|
27752
|
+
|
|
27753
|
+
|
|
27617
27754
|
class LiveCertDomainInfo(AbstractModel):
|
|
27618
27755
|
r"""用作批量绑定域名和证书。
|
|
27619
27756
|
|
|
@@ -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.28
|
|
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.28
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.28
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|