tencentcloud-sdk-python 3.0.1405__py2.py3-none-any.whl → 3.0.1407__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +4 -4
- tencentcloud/asr/v20190614/models.py +2 -2
- tencentcloud/captcha/v20190722/models.py +15 -0
- tencentcloud/cdb/v20170320/models.py +2 -0
- tencentcloud/cdwdoris/v20211228/models.py +4 -4
- tencentcloud/cfs/v20190719/models.py +6 -6
- tencentcloud/cfw/v20190904/models.py +15 -0
- tencentcloud/cme/v20191029/cme_client.py +13 -13
- tencentcloud/csip/v20221121/models.py +15 -0
- tencentcloud/domain/v20180808/errorcodes.py +6 -0
- tencentcloud/es/v20250101/models.py +117 -0
- tencentcloud/ess/v20201111/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +51 -0
- tencentcloud/ess/v20201111/models.py +409 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +54 -1
- tencentcloud/essbasic/v20210526/models.py +367 -0
- tencentcloud/gs/v20191118/models.py +17 -2
- tencentcloud/hunyuan/v20230901/models.py +9 -5
- tencentcloud/lighthouse/v20200324/errorcodes.py +21 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +29 -0
- tencentcloud/lighthouse/v20200324/models.py +79 -0
- tencentcloud/live/v20180801/live_client.py +115 -0
- tencentcloud/live/v20180801/models.py +1006 -48
- tencentcloud/lke/v20231130/lke_client.py +46 -0
- tencentcloud/lke/v20231130/models.py +248 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/lkeap/v20240522/models.py +8 -4
- tencentcloud/mps/v20190612/models.py +202 -2
- tencentcloud/tdmq/v20200217/models.py +247 -33
- tencentcloud/teo/v20220901/models.py +2 -2
- tencentcloud/tiia/v20190529/models.py +0 -262
- tencentcloud/tiia/v20190529/tiia_client.py +0 -26
- tencentcloud/tione/v20211111/models.py +348 -0
- tencentcloud/tione/v20211111/tione_client.py +92 -0
- tencentcloud/tke/v20180525/errorcodes.py +1 -1
- tencentcloud/tke/v20220501/errorcodes.py +1 -1
- tencentcloud/trocket/v20230308/models.py +581 -2
- tencentcloud/trocket/v20230308/trocket_client.py +56 -0
- tencentcloud/trtc/v20190722/models.py +1 -1
- tencentcloud/tsf/v20180326/models.py +8 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1405.dist-info → tencentcloud_sdk_python-3.0.1407.dist-info}/top_level.txt +0 -0
@@ -18096,6 +18096,85 @@ BUNDLE_BANDWIDTH_NOT_SUPPORT: 套餐带宽不支持
|
|
18096
18096
|
|
18097
18097
|
|
18098
18098
|
|
18099
|
+
class SyncBlueprintRequest(AbstractModel):
|
18100
|
+
"""SyncBlueprint请求参数结构体
|
18101
|
+
|
18102
|
+
"""
|
18103
|
+
|
18104
|
+
def __init__(self):
|
18105
|
+
r"""
|
18106
|
+
:param _BlueprintId: 镜像ID。
|
18107
|
+
:type BlueprintId: str
|
18108
|
+
:param _DestinationRegions: 同步镜像的目的地域列表。
|
18109
|
+
:type DestinationRegions: list of str
|
18110
|
+
"""
|
18111
|
+
self._BlueprintId = None
|
18112
|
+
self._DestinationRegions = None
|
18113
|
+
|
18114
|
+
@property
|
18115
|
+
def BlueprintId(self):
|
18116
|
+
"""镜像ID。
|
18117
|
+
:rtype: str
|
18118
|
+
"""
|
18119
|
+
return self._BlueprintId
|
18120
|
+
|
18121
|
+
@BlueprintId.setter
|
18122
|
+
def BlueprintId(self, BlueprintId):
|
18123
|
+
self._BlueprintId = BlueprintId
|
18124
|
+
|
18125
|
+
@property
|
18126
|
+
def DestinationRegions(self):
|
18127
|
+
"""同步镜像的目的地域列表。
|
18128
|
+
:rtype: list of str
|
18129
|
+
"""
|
18130
|
+
return self._DestinationRegions
|
18131
|
+
|
18132
|
+
@DestinationRegions.setter
|
18133
|
+
def DestinationRegions(self, DestinationRegions):
|
18134
|
+
self._DestinationRegions = DestinationRegions
|
18135
|
+
|
18136
|
+
|
18137
|
+
def _deserialize(self, params):
|
18138
|
+
self._BlueprintId = params.get("BlueprintId")
|
18139
|
+
self._DestinationRegions = params.get("DestinationRegions")
|
18140
|
+
memeber_set = set(params.keys())
|
18141
|
+
for name, value in vars(self).items():
|
18142
|
+
property_name = name[1:]
|
18143
|
+
if property_name in memeber_set:
|
18144
|
+
memeber_set.remove(property_name)
|
18145
|
+
if len(memeber_set) > 0:
|
18146
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
18147
|
+
|
18148
|
+
|
18149
|
+
|
18150
|
+
class SyncBlueprintResponse(AbstractModel):
|
18151
|
+
"""SyncBlueprint返回参数结构体
|
18152
|
+
|
18153
|
+
"""
|
18154
|
+
|
18155
|
+
def __init__(self):
|
18156
|
+
r"""
|
18157
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18158
|
+
:type RequestId: str
|
18159
|
+
"""
|
18160
|
+
self._RequestId = None
|
18161
|
+
|
18162
|
+
@property
|
18163
|
+
def RequestId(self):
|
18164
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18165
|
+
:rtype: str
|
18166
|
+
"""
|
18167
|
+
return self._RequestId
|
18168
|
+
|
18169
|
+
@RequestId.setter
|
18170
|
+
def RequestId(self, RequestId):
|
18171
|
+
self._RequestId = RequestId
|
18172
|
+
|
18173
|
+
|
18174
|
+
def _deserialize(self, params):
|
18175
|
+
self._RequestId = params.get("RequestId")
|
18176
|
+
|
18177
|
+
|
18099
18178
|
class SystemDisk(AbstractModel):
|
18100
18179
|
"""描述了操作系统所在块设备即系统盘的信息。
|
18101
18180
|
|
@@ -2146,6 +2146,29 @@ class LiveClient(AbstractClient):
|
|
2146
2146
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2147
2147
|
|
2148
2148
|
|
2149
|
+
def DescribeLiveCloudEffectList(self, request):
|
2150
|
+
"""使用该接口查询云端特效列表,特效列表中包含一部分官方精品特效,同时包含用户自定义生成的特效。
|
2151
|
+
|
2152
|
+
:param request: Request instance for DescribeLiveCloudEffectList.
|
2153
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribeLiveCloudEffectListRequest`
|
2154
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribeLiveCloudEffectListResponse`
|
2155
|
+
|
2156
|
+
"""
|
2157
|
+
try:
|
2158
|
+
params = request._serialize()
|
2159
|
+
headers = request.headers
|
2160
|
+
body = self.call("DescribeLiveCloudEffectList", params, headers=headers)
|
2161
|
+
response = json.loads(body)
|
2162
|
+
model = models.DescribeLiveCloudEffectListResponse()
|
2163
|
+
model._deserialize(response["Response"])
|
2164
|
+
return model
|
2165
|
+
except Exception as e:
|
2166
|
+
if isinstance(e, TencentCloudSDKException):
|
2167
|
+
raise
|
2168
|
+
else:
|
2169
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2170
|
+
|
2171
|
+
|
2149
2172
|
def DescribeLiveDelayInfoList(self, request):
|
2150
2173
|
"""获取直播延播列表。
|
2151
2174
|
|
@@ -2426,6 +2449,29 @@ class LiveClient(AbstractClient):
|
|
2426
2449
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2427
2450
|
|
2428
2451
|
|
2452
|
+
def DescribeLivePadStreamList(self, request):
|
2453
|
+
"""使用该接口查询垫片流列表。垫片流状态更新存在一定延迟,可间隔30秒以上查询,避免频繁查询该接口。
|
2454
|
+
|
2455
|
+
:param request: Request instance for DescribeLivePadStreamList.
|
2456
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribeLivePadStreamListRequest`
|
2457
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribeLivePadStreamListResponse`
|
2458
|
+
|
2459
|
+
"""
|
2460
|
+
try:
|
2461
|
+
params = request._serialize()
|
2462
|
+
headers = request.headers
|
2463
|
+
body = self.call("DescribeLivePadStreamList", params, headers=headers)
|
2464
|
+
response = json.loads(body)
|
2465
|
+
model = models.DescribeLivePadStreamListResponse()
|
2466
|
+
model._deserialize(response["Response"])
|
2467
|
+
return model
|
2468
|
+
except Exception as e:
|
2469
|
+
if isinstance(e, TencentCloudSDKException):
|
2470
|
+
raise
|
2471
|
+
else:
|
2472
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2473
|
+
|
2474
|
+
|
2429
2475
|
def DescribeLivePadTemplate(self, request):
|
2430
2476
|
"""获取单个直播垫片模板
|
2431
2477
|
|
@@ -4391,6 +4437,52 @@ class LiveClient(AbstractClient):
|
|
4391
4437
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4392
4438
|
|
4393
4439
|
|
4440
|
+
def SendLiveCloudEffect(self, request):
|
4441
|
+
"""使用该接口发送云端特效到线上正活跃的直播流,观众可在播放端看到特效从直播流画面中展示。
|
4442
|
+
|
4443
|
+
:param request: Request instance for SendLiveCloudEffect.
|
4444
|
+
:type request: :class:`tencentcloud.live.v20180801.models.SendLiveCloudEffectRequest`
|
4445
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.SendLiveCloudEffectResponse`
|
4446
|
+
|
4447
|
+
"""
|
4448
|
+
try:
|
4449
|
+
params = request._serialize()
|
4450
|
+
headers = request.headers
|
4451
|
+
body = self.call("SendLiveCloudEffect", params, headers=headers)
|
4452
|
+
response = json.loads(body)
|
4453
|
+
model = models.SendLiveCloudEffectResponse()
|
4454
|
+
model._deserialize(response["Response"])
|
4455
|
+
return model
|
4456
|
+
except Exception as e:
|
4457
|
+
if isinstance(e, TencentCloudSDKException):
|
4458
|
+
raise
|
4459
|
+
else:
|
4460
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4461
|
+
|
4462
|
+
|
4463
|
+
def StartLivePadStream(self, request):
|
4464
|
+
"""使用该接口将直播流开始切入垫片。
|
4465
|
+
|
4466
|
+
:param request: Request instance for StartLivePadStream.
|
4467
|
+
:type request: :class:`tencentcloud.live.v20180801.models.StartLivePadStreamRequest`
|
4468
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.StartLivePadStreamResponse`
|
4469
|
+
|
4470
|
+
"""
|
4471
|
+
try:
|
4472
|
+
params = request._serialize()
|
4473
|
+
headers = request.headers
|
4474
|
+
body = self.call("StartLivePadStream", params, headers=headers)
|
4475
|
+
response = json.loads(body)
|
4476
|
+
model = models.StartLivePadStreamResponse()
|
4477
|
+
model._deserialize(response["Response"])
|
4478
|
+
return model
|
4479
|
+
except Exception as e:
|
4480
|
+
if isinstance(e, TencentCloudSDKException):
|
4481
|
+
raise
|
4482
|
+
else:
|
4483
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4484
|
+
|
4485
|
+
|
4394
4486
|
def StartLiveStreamMonitor(self, request):
|
4395
4487
|
"""该接口用来启动直播流监播任务。
|
4396
4488
|
|
@@ -4484,6 +4576,29 @@ class LiveClient(AbstractClient):
|
|
4484
4576
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4485
4577
|
|
4486
4578
|
|
4579
|
+
def StopLivePadStream(self, request):
|
4580
|
+
"""使用该接口将直播流停止切入垫片。
|
4581
|
+
|
4582
|
+
:param request: Request instance for StopLivePadStream.
|
4583
|
+
:type request: :class:`tencentcloud.live.v20180801.models.StopLivePadStreamRequest`
|
4584
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.StopLivePadStreamResponse`
|
4585
|
+
|
4586
|
+
"""
|
4587
|
+
try:
|
4588
|
+
params = request._serialize()
|
4589
|
+
headers = request.headers
|
4590
|
+
body = self.call("StopLivePadStream", params, headers=headers)
|
4591
|
+
response = json.loads(body)
|
4592
|
+
model = models.StopLivePadStreamResponse()
|
4593
|
+
model._deserialize(response["Response"])
|
4594
|
+
return model
|
4595
|
+
except Exception as e:
|
4596
|
+
if isinstance(e, TencentCloudSDKException):
|
4597
|
+
raise
|
4598
|
+
else:
|
4599
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
4600
|
+
|
4601
|
+
|
4487
4602
|
def StopLiveRecord(self, request):
|
4488
4603
|
"""说明:录制后的文件存放于点播平台。用户如需使用录制功能,需首先自行开通点播账号并确保账号可用。录制文件存放后,相关费用(含存储以及下行播放流量)按照点播平台计费方式收取,请参考对应文档。
|
4489
4604
|
|