tencentcloud-sdk-python-live 3.1.31__tar.gz → 3.1.34__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.31 → tencentcloud_sdk_python_live-3.1.34}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/setup.py +1 -1
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/v20180801/live_client.py +47 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/v20180801/live_client_async.py +37 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/v20180801/models.py +289 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_live-3.1.34/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_live-3.1.31/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/README.rst +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/setup.cfg +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.31 → tencentcloud_sdk_python_live-3.1.34}/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.34
|
|
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.34
|
|
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.34,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Live SDK for Python',
|
|
@@ -517,6 +517,30 @@ class LiveClient(AbstractClient):
|
|
|
517
517
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
518
518
|
|
|
519
519
|
|
|
520
|
+
def CreateLiveCloudEffect(self, request):
|
|
521
|
+
r"""使用该接口生成云端特效。特效可用于叠加到直播流上,供播放端观看。
|
|
522
|
+
注意:云端特效生成需要一定时间,调用生成接口后,可通过查询接口,获取是否特效已生成。
|
|
523
|
+
|
|
524
|
+
:param request: Request instance for CreateLiveCloudEffect.
|
|
525
|
+
:type request: :class:`tencentcloud.live.v20180801.models.CreateLiveCloudEffectRequest`
|
|
526
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.CreateLiveCloudEffectResponse`
|
|
527
|
+
|
|
528
|
+
"""
|
|
529
|
+
try:
|
|
530
|
+
params = request._serialize()
|
|
531
|
+
headers = request.headers
|
|
532
|
+
body = self.call("CreateLiveCloudEffect", params, headers=headers)
|
|
533
|
+
response = json.loads(body)
|
|
534
|
+
model = models.CreateLiveCloudEffectResponse()
|
|
535
|
+
model._deserialize(response["Response"])
|
|
536
|
+
return model
|
|
537
|
+
except Exception as e:
|
|
538
|
+
if isinstance(e, TencentCloudSDKException):
|
|
539
|
+
raise
|
|
540
|
+
else:
|
|
541
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
542
|
+
|
|
543
|
+
|
|
520
544
|
def CreateLivePadRule(self, request):
|
|
521
545
|
r"""创建直播垫片规则。
|
|
522
546
|
|
|
@@ -2261,6 +2285,29 @@ class LiveClient(AbstractClient):
|
|
|
2261
2285
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2262
2286
|
|
|
2263
2287
|
|
|
2288
|
+
def DescribeLiveCloudEffectConfig(self, request):
|
|
2289
|
+
r"""使用该接口查询云端特效配置信息。
|
|
2290
|
+
|
|
2291
|
+
:param request: Request instance for DescribeLiveCloudEffectConfig.
|
|
2292
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribeLiveCloudEffectConfigRequest`
|
|
2293
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribeLiveCloudEffectConfigResponse`
|
|
2294
|
+
|
|
2295
|
+
"""
|
|
2296
|
+
try:
|
|
2297
|
+
params = request._serialize()
|
|
2298
|
+
headers = request.headers
|
|
2299
|
+
body = self.call("DescribeLiveCloudEffectConfig", params, headers=headers)
|
|
2300
|
+
response = json.loads(body)
|
|
2301
|
+
model = models.DescribeLiveCloudEffectConfigResponse()
|
|
2302
|
+
model._deserialize(response["Response"])
|
|
2303
|
+
return model
|
|
2304
|
+
except Exception as e:
|
|
2305
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2306
|
+
raise
|
|
2307
|
+
else:
|
|
2308
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2309
|
+
|
|
2310
|
+
|
|
2264
2311
|
def DescribeLiveCloudEffectList(self, request):
|
|
2265
2312
|
r"""使用该接口查询云端特效列表,特效列表中包含一部分官方精品特效,同时包含用户自定义生成的特效。
|
|
2266
2313
|
|
|
@@ -411,6 +411,25 @@ class LiveClient(AbstractClient):
|
|
|
411
411
|
|
|
412
412
|
return await self.call_and_deserialize(**kwargs)
|
|
413
413
|
|
|
414
|
+
async def CreateLiveCloudEffect(
|
|
415
|
+
self,
|
|
416
|
+
request: models.CreateLiveCloudEffectRequest,
|
|
417
|
+
opts: Dict = None,
|
|
418
|
+
) -> models.CreateLiveCloudEffectResponse:
|
|
419
|
+
"""
|
|
420
|
+
使用该接口生成云端特效。特效可用于叠加到直播流上,供播放端观看。
|
|
421
|
+
注意:云端特效生成需要一定时间,调用生成接口后,可通过查询接口,获取是否特效已生成。
|
|
422
|
+
"""
|
|
423
|
+
|
|
424
|
+
kwargs = {}
|
|
425
|
+
kwargs["action"] = "CreateLiveCloudEffect"
|
|
426
|
+
kwargs["params"] = request._serialize()
|
|
427
|
+
kwargs["resp_cls"] = models.CreateLiveCloudEffectResponse
|
|
428
|
+
kwargs["headers"] = request.headers
|
|
429
|
+
kwargs["opts"] = opts or {}
|
|
430
|
+
|
|
431
|
+
return await self.call_and_deserialize(**kwargs)
|
|
432
|
+
|
|
414
433
|
async def CreateLivePadRule(
|
|
415
434
|
self,
|
|
416
435
|
request: models.CreateLivePadRuleRequest,
|
|
@@ -1790,6 +1809,24 @@ class LiveClient(AbstractClient):
|
|
|
1790
1809
|
|
|
1791
1810
|
return await self.call_and_deserialize(**kwargs)
|
|
1792
1811
|
|
|
1812
|
+
async def DescribeLiveCloudEffectConfig(
|
|
1813
|
+
self,
|
|
1814
|
+
request: models.DescribeLiveCloudEffectConfigRequest,
|
|
1815
|
+
opts: Dict = None,
|
|
1816
|
+
) -> models.DescribeLiveCloudEffectConfigResponse:
|
|
1817
|
+
"""
|
|
1818
|
+
使用该接口查询云端特效配置信息。
|
|
1819
|
+
"""
|
|
1820
|
+
|
|
1821
|
+
kwargs = {}
|
|
1822
|
+
kwargs["action"] = "DescribeLiveCloudEffectConfig"
|
|
1823
|
+
kwargs["params"] = request._serialize()
|
|
1824
|
+
kwargs["resp_cls"] = models.DescribeLiveCloudEffectConfigResponse
|
|
1825
|
+
kwargs["headers"] = request.headers
|
|
1826
|
+
kwargs["opts"] = opts or {}
|
|
1827
|
+
|
|
1828
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1829
|
+
|
|
1793
1830
|
async def DescribeLiveCloudEffectList(
|
|
1794
1831
|
self,
|
|
1795
1832
|
request: models.DescribeLiveCloudEffectListRequest,
|
|
@@ -4860,6 +4860,102 @@ UGC : 用户上传特效。
|
|
|
4860
4860
|
|
|
4861
4861
|
|
|
4862
4862
|
|
|
4863
|
+
class CloudEffectTemplateInfo(AbstractModel):
|
|
4864
|
+
r"""云端特效模板信息。
|
|
4865
|
+
|
|
4866
|
+
"""
|
|
4867
|
+
|
|
4868
|
+
def __init__(self):
|
|
4869
|
+
r"""
|
|
4870
|
+
:param _TemplateId: <p>特效模板ID。</p>
|
|
4871
|
+
:type TemplateId: str
|
|
4872
|
+
:param _TemplateName: <p>特效模板名称。</p>
|
|
4873
|
+
:type TemplateName: str
|
|
4874
|
+
:param _VideoUrl: <p>模板预览URL。</p>
|
|
4875
|
+
:type VideoUrl: str
|
|
4876
|
+
:param _CoverImageUrl: <p>模板封面图片URL。</p>
|
|
4877
|
+
:type CoverImageUrl: str
|
|
4878
|
+
:param _VideoRatio: <p>模板视频宽高比。</p>
|
|
4879
|
+
:type VideoRatio: str
|
|
4880
|
+
"""
|
|
4881
|
+
self._TemplateId = None
|
|
4882
|
+
self._TemplateName = None
|
|
4883
|
+
self._VideoUrl = None
|
|
4884
|
+
self._CoverImageUrl = None
|
|
4885
|
+
self._VideoRatio = None
|
|
4886
|
+
|
|
4887
|
+
@property
|
|
4888
|
+
def TemplateId(self):
|
|
4889
|
+
r"""<p>特效模板ID。</p>
|
|
4890
|
+
:rtype: str
|
|
4891
|
+
"""
|
|
4892
|
+
return self._TemplateId
|
|
4893
|
+
|
|
4894
|
+
@TemplateId.setter
|
|
4895
|
+
def TemplateId(self, TemplateId):
|
|
4896
|
+
self._TemplateId = TemplateId
|
|
4897
|
+
|
|
4898
|
+
@property
|
|
4899
|
+
def TemplateName(self):
|
|
4900
|
+
r"""<p>特效模板名称。</p>
|
|
4901
|
+
:rtype: str
|
|
4902
|
+
"""
|
|
4903
|
+
return self._TemplateName
|
|
4904
|
+
|
|
4905
|
+
@TemplateName.setter
|
|
4906
|
+
def TemplateName(self, TemplateName):
|
|
4907
|
+
self._TemplateName = TemplateName
|
|
4908
|
+
|
|
4909
|
+
@property
|
|
4910
|
+
def VideoUrl(self):
|
|
4911
|
+
r"""<p>模板预览URL。</p>
|
|
4912
|
+
:rtype: str
|
|
4913
|
+
"""
|
|
4914
|
+
return self._VideoUrl
|
|
4915
|
+
|
|
4916
|
+
@VideoUrl.setter
|
|
4917
|
+
def VideoUrl(self, VideoUrl):
|
|
4918
|
+
self._VideoUrl = VideoUrl
|
|
4919
|
+
|
|
4920
|
+
@property
|
|
4921
|
+
def CoverImageUrl(self):
|
|
4922
|
+
r"""<p>模板封面图片URL。</p>
|
|
4923
|
+
:rtype: str
|
|
4924
|
+
"""
|
|
4925
|
+
return self._CoverImageUrl
|
|
4926
|
+
|
|
4927
|
+
@CoverImageUrl.setter
|
|
4928
|
+
def CoverImageUrl(self, CoverImageUrl):
|
|
4929
|
+
self._CoverImageUrl = CoverImageUrl
|
|
4930
|
+
|
|
4931
|
+
@property
|
|
4932
|
+
def VideoRatio(self):
|
|
4933
|
+
r"""<p>模板视频宽高比。</p>
|
|
4934
|
+
:rtype: str
|
|
4935
|
+
"""
|
|
4936
|
+
return self._VideoRatio
|
|
4937
|
+
|
|
4938
|
+
@VideoRatio.setter
|
|
4939
|
+
def VideoRatio(self, VideoRatio):
|
|
4940
|
+
self._VideoRatio = VideoRatio
|
|
4941
|
+
|
|
4942
|
+
|
|
4943
|
+
def _deserialize(self, params):
|
|
4944
|
+
self._TemplateId = params.get("TemplateId")
|
|
4945
|
+
self._TemplateName = params.get("TemplateName")
|
|
4946
|
+
self._VideoUrl = params.get("VideoUrl")
|
|
4947
|
+
self._CoverImageUrl = params.get("CoverImageUrl")
|
|
4948
|
+
self._VideoRatio = params.get("VideoRatio")
|
|
4949
|
+
memeber_set = set(params.keys())
|
|
4950
|
+
for name, value in vars(self).items():
|
|
4951
|
+
property_name = name[1:]
|
|
4952
|
+
if property_name in memeber_set:
|
|
4953
|
+
memeber_set.remove(property_name)
|
|
4954
|
+
if len(memeber_set) > 0:
|
|
4955
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4956
|
+
|
|
4957
|
+
|
|
4958
|
+
|
|
4863
4959
|
class CommonMixControlParams(AbstractModel):
|
|
4864
4960
|
r"""通用混流控制参数
|
|
4865
4961
|
|
|
@@ -7144,6 +7240,145 @@ class CreateLiveCallbackTemplateResponse(AbstractModel):
|
|
|
7144
7240
|
self._RequestId = params.get("RequestId")
|
|
7145
7241
|
|
|
7146
7242
|
|
|
7243
|
+
class CreateLiveCloudEffectRequest(AbstractModel):
|
|
7244
|
+
r"""CreateLiveCloudEffect请求参数结构体
|
|
7245
|
+
|
|
7246
|
+
"""
|
|
7247
|
+
|
|
7248
|
+
def __init__(self):
|
|
7249
|
+
r"""
|
|
7250
|
+
:param _Prompt: <p>用于生成云端特效的 Prompt。示例:飞鸟。Prompt 和 ImageUrl 二选一。</p>
|
|
7251
|
+
:type Prompt: str
|
|
7252
|
+
:param _TemplateId: <p>模板生礼物的模板ID。目前支持的模板ID:queen_accession, wizard_of_oz,red_envelopes,fishermen,captain_america。</p>
|
|
7253
|
+
:type TemplateId: str
|
|
7254
|
+
:param _ImageUrl: <p>输入我的图片地址,用于生成云端特效。ImageUrl 和 Prompt 二选一。</p>
|
|
7255
|
+
:type ImageUrl: str
|
|
7256
|
+
:param _Type: <p>指定生成云端特效的方式。默认自动选取。标准方式:text2video,高品质方式:text2video_hq。</p>
|
|
7257
|
+
:type Type: str
|
|
7258
|
+
:param _Operator: <p>操作者名称。</p>
|
|
7259
|
+
:type Operator: str
|
|
7260
|
+
"""
|
|
7261
|
+
self._Prompt = None
|
|
7262
|
+
self._TemplateId = None
|
|
7263
|
+
self._ImageUrl = None
|
|
7264
|
+
self._Type = None
|
|
7265
|
+
self._Operator = None
|
|
7266
|
+
|
|
7267
|
+
@property
|
|
7268
|
+
def Prompt(self):
|
|
7269
|
+
r"""<p>用于生成云端特效的 Prompt。示例:飞鸟。Prompt 和 ImageUrl 二选一。</p>
|
|
7270
|
+
:rtype: str
|
|
7271
|
+
"""
|
|
7272
|
+
return self._Prompt
|
|
7273
|
+
|
|
7274
|
+
@Prompt.setter
|
|
7275
|
+
def Prompt(self, Prompt):
|
|
7276
|
+
self._Prompt = Prompt
|
|
7277
|
+
|
|
7278
|
+
@property
|
|
7279
|
+
def TemplateId(self):
|
|
7280
|
+
r"""<p>模板生礼物的模板ID。目前支持的模板ID:queen_accession, wizard_of_oz,red_envelopes,fishermen,captain_america。</p>
|
|
7281
|
+
:rtype: str
|
|
7282
|
+
"""
|
|
7283
|
+
return self._TemplateId
|
|
7284
|
+
|
|
7285
|
+
@TemplateId.setter
|
|
7286
|
+
def TemplateId(self, TemplateId):
|
|
7287
|
+
self._TemplateId = TemplateId
|
|
7288
|
+
|
|
7289
|
+
@property
|
|
7290
|
+
def ImageUrl(self):
|
|
7291
|
+
r"""<p>输入我的图片地址,用于生成云端特效。ImageUrl 和 Prompt 二选一。</p>
|
|
7292
|
+
:rtype: str
|
|
7293
|
+
"""
|
|
7294
|
+
return self._ImageUrl
|
|
7295
|
+
|
|
7296
|
+
@ImageUrl.setter
|
|
7297
|
+
def ImageUrl(self, ImageUrl):
|
|
7298
|
+
self._ImageUrl = ImageUrl
|
|
7299
|
+
|
|
7300
|
+
@property
|
|
7301
|
+
def Type(self):
|
|
7302
|
+
r"""<p>指定生成云端特效的方式。默认自动选取。标准方式:text2video,高品质方式:text2video_hq。</p>
|
|
7303
|
+
:rtype: str
|
|
7304
|
+
"""
|
|
7305
|
+
return self._Type
|
|
7306
|
+
|
|
7307
|
+
@Type.setter
|
|
7308
|
+
def Type(self, Type):
|
|
7309
|
+
self._Type = Type
|
|
7310
|
+
|
|
7311
|
+
@property
|
|
7312
|
+
def Operator(self):
|
|
7313
|
+
r"""<p>操作者名称。</p>
|
|
7314
|
+
:rtype: str
|
|
7315
|
+
"""
|
|
7316
|
+
return self._Operator
|
|
7317
|
+
|
|
7318
|
+
@Operator.setter
|
|
7319
|
+
def Operator(self, Operator):
|
|
7320
|
+
self._Operator = Operator
|
|
7321
|
+
|
|
7322
|
+
|
|
7323
|
+
def _deserialize(self, params):
|
|
7324
|
+
self._Prompt = params.get("Prompt")
|
|
7325
|
+
self._TemplateId = params.get("TemplateId")
|
|
7326
|
+
self._ImageUrl = params.get("ImageUrl")
|
|
7327
|
+
self._Type = params.get("Type")
|
|
7328
|
+
self._Operator = params.get("Operator")
|
|
7329
|
+
memeber_set = set(params.keys())
|
|
7330
|
+
for name, value in vars(self).items():
|
|
7331
|
+
property_name = name[1:]
|
|
7332
|
+
if property_name in memeber_set:
|
|
7333
|
+
memeber_set.remove(property_name)
|
|
7334
|
+
if len(memeber_set) > 0:
|
|
7335
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7336
|
+
|
|
7337
|
+
|
|
7338
|
+
|
|
7339
|
+
class CreateLiveCloudEffectResponse(AbstractModel):
|
|
7340
|
+
r"""CreateLiveCloudEffect返回参数结构体
|
|
7341
|
+
|
|
7342
|
+
"""
|
|
7343
|
+
|
|
7344
|
+
def __init__(self):
|
|
7345
|
+
r"""
|
|
7346
|
+
:param _Id: <p>云端特效 ID。</p>
|
|
7347
|
+
:type Id: str
|
|
7348
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7349
|
+
:type RequestId: str
|
|
7350
|
+
"""
|
|
7351
|
+
self._Id = None
|
|
7352
|
+
self._RequestId = None
|
|
7353
|
+
|
|
7354
|
+
@property
|
|
7355
|
+
def Id(self):
|
|
7356
|
+
r"""<p>云端特效 ID。</p>
|
|
7357
|
+
:rtype: str
|
|
7358
|
+
"""
|
|
7359
|
+
return self._Id
|
|
7360
|
+
|
|
7361
|
+
@Id.setter
|
|
7362
|
+
def Id(self, Id):
|
|
7363
|
+
self._Id = Id
|
|
7364
|
+
|
|
7365
|
+
@property
|
|
7366
|
+
def RequestId(self):
|
|
7367
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7368
|
+
:rtype: str
|
|
7369
|
+
"""
|
|
7370
|
+
return self._RequestId
|
|
7371
|
+
|
|
7372
|
+
@RequestId.setter
|
|
7373
|
+
def RequestId(self, RequestId):
|
|
7374
|
+
self._RequestId = RequestId
|
|
7375
|
+
|
|
7376
|
+
|
|
7377
|
+
def _deserialize(self, params):
|
|
7378
|
+
self._Id = params.get("Id")
|
|
7379
|
+
self._RequestId = params.get("RequestId")
|
|
7380
|
+
|
|
7381
|
+
|
|
7147
7382
|
class CreateLivePadRuleRequest(AbstractModel):
|
|
7148
7383
|
r"""CreateLivePadRule请求参数结构体
|
|
7149
7384
|
|
|
@@ -16468,6 +16703,60 @@ class DescribeLiveCertsResponse(AbstractModel):
|
|
|
16468
16703
|
self._RequestId = params.get("RequestId")
|
|
16469
16704
|
|
|
16470
16705
|
|
|
16706
|
+
class DescribeLiveCloudEffectConfigRequest(AbstractModel):
|
|
16707
|
+
r"""DescribeLiveCloudEffectConfig请求参数结构体
|
|
16708
|
+
|
|
16709
|
+
"""
|
|
16710
|
+
|
|
16711
|
+
|
|
16712
|
+
class DescribeLiveCloudEffectConfigResponse(AbstractModel):
|
|
16713
|
+
r"""DescribeLiveCloudEffectConfig返回参数结构体
|
|
16714
|
+
|
|
16715
|
+
"""
|
|
16716
|
+
|
|
16717
|
+
def __init__(self):
|
|
16718
|
+
r"""
|
|
16719
|
+
:param _EffectTemplateList: <p>模板生礼物的模板信息列表。</p>
|
|
16720
|
+
:type EffectTemplateList: list of CloudEffectTemplateInfo
|
|
16721
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
16722
|
+
:type RequestId: str
|
|
16723
|
+
"""
|
|
16724
|
+
self._EffectTemplateList = None
|
|
16725
|
+
self._RequestId = None
|
|
16726
|
+
|
|
16727
|
+
@property
|
|
16728
|
+
def EffectTemplateList(self):
|
|
16729
|
+
r"""<p>模板生礼物的模板信息列表。</p>
|
|
16730
|
+
:rtype: list of CloudEffectTemplateInfo
|
|
16731
|
+
"""
|
|
16732
|
+
return self._EffectTemplateList
|
|
16733
|
+
|
|
16734
|
+
@EffectTemplateList.setter
|
|
16735
|
+
def EffectTemplateList(self, EffectTemplateList):
|
|
16736
|
+
self._EffectTemplateList = EffectTemplateList
|
|
16737
|
+
|
|
16738
|
+
@property
|
|
16739
|
+
def RequestId(self):
|
|
16740
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
16741
|
+
:rtype: str
|
|
16742
|
+
"""
|
|
16743
|
+
return self._RequestId
|
|
16744
|
+
|
|
16745
|
+
@RequestId.setter
|
|
16746
|
+
def RequestId(self, RequestId):
|
|
16747
|
+
self._RequestId = RequestId
|
|
16748
|
+
|
|
16749
|
+
|
|
16750
|
+
def _deserialize(self, params):
|
|
16751
|
+
if params.get("EffectTemplateList") is not None:
|
|
16752
|
+
self._EffectTemplateList = []
|
|
16753
|
+
for item in params.get("EffectTemplateList"):
|
|
16754
|
+
obj = CloudEffectTemplateInfo()
|
|
16755
|
+
obj._deserialize(item)
|
|
16756
|
+
self._EffectTemplateList.append(obj)
|
|
16757
|
+
self._RequestId = params.get("RequestId")
|
|
16758
|
+
|
|
16759
|
+
|
|
16471
16760
|
class DescribeLiveCloudEffectListRequest(AbstractModel):
|
|
16472
16761
|
r"""DescribeLiveCloudEffectList请求参数结构体
|
|
16473
16762
|
|
|
@@ -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.34
|
|
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.34
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.34
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.31
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|