tencentcloud-sdk-python 3.0.1142__py2.py3-none-any.whl → 3.0.1144__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/aiart/v20221229/aiart_client.py +2 -2
- tencentcloud/aiart/v20221229/models.py +1 -1
- tencentcloud/apm/v20210622/models.py +1 -1
- tencentcloud/batch/v20170312/models.py +5 -1
- tencentcloud/billing/v20180709/models.py +2 -2
- tencentcloud/captcha/v20190722/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +19 -2
- tencentcloud/cdb/v20170320/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +11 -58
- tencentcloud/csip/v20221121/models.py +124 -2
- tencentcloud/cvm/v20170312/models.py +5 -1
- tencentcloud/cwp/v20180228/models.py +16 -3
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +115 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +168 -0
- tencentcloud/dlc/v20210125/models.py +89 -1
- tencentcloud/ess/v20201111/ess_client.py +53 -2
- tencentcloud/ess/v20201111/models.py +303 -3
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +6 -3
- tencentcloud/faceid/v20180301/models.py +5 -11
- tencentcloud/fmu/v20191213/models.py +1 -1
- tencentcloud/hai/v20230812/models.py +1 -1
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +52 -0
- tencentcloud/hunyuan/v20230901/models.py +277 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +21 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +115 -0
- tencentcloud/iotexplorer/v20190423/models.py +554 -18
- tencentcloud/iss/v20230517/models.py +13 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +15 -15
- tencentcloud/lighthouse/v20200324/models.py +22 -11
- tencentcloud/live/v20180801/live_client.py +46 -0
- tencentcloud/live/v20180801/models.py +190 -0
- tencentcloud/lke/v20231130/lke_client.py +4 -4
- tencentcloud/lke/v20231130/models.py +158 -1
- tencentcloud/mrs/v20200910/models.py +3134 -906
- tencentcloud/mrs/v20200910/mrs_client.py +23 -0
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/rce/v20201103/models.py +0 -331
- tencentcloud/rce/v20201103/rce_client.py +0 -23
- tencentcloud/ssl/v20191205/errorcodes.py +9 -0
- tencentcloud/ssl/v20191205/models.py +94 -0
- tencentcloud/ssl/v20191205/ssl_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +39 -0
- tencentcloud/teo/v20220901/models.py +62 -0
- tencentcloud/tke/v20180525/models.py +1 -1
- tencentcloud/tke/v20220501/errorcodes.py +10 -1
- tencentcloud/tke/v20220501/models.py +2666 -635
- tencentcloud/tke/v20220501/tke_client.py +69 -0
- tencentcloud/trtc/v20190722/models.py +3 -3
- tencentcloud/tse/v20201207/models.py +4 -0
- tencentcloud/waf/v20180125/models.py +607 -9
- tencentcloud/waf/v20180125/waf_client.py +92 -0
- {tencentcloud_sdk_python-3.0.1142.dist-info → tencentcloud_sdk_python-3.0.1144.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1142.dist-info → tencentcloud_sdk_python-3.0.1144.dist-info}/RECORD +60 -60
- {tencentcloud_sdk_python-3.0.1142.dist-info → tencentcloud_sdk_python-3.0.1144.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1142.dist-info → tencentcloud_sdk_python-3.0.1144.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1142.dist-info → tencentcloud_sdk_python-3.0.1144.dist-info}/top_level.txt +0 -0
@@ -5600,6 +5600,9 @@ class DescribeDomainData(AbstractModel):
|
|
5600
5600
|
:param _AppId: 用户ID
|
5601
5601
|
注意:此字段可能返回 null,表示取不到有效值。
|
5602
5602
|
:type AppId: int
|
5603
|
+
:param _CertId: 证书ID
|
5604
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5605
|
+
:type CertId: str
|
5603
5606
|
"""
|
5604
5607
|
self._Id = None
|
5605
5608
|
self._PlayDomain = None
|
@@ -5608,6 +5611,7 @@ class DescribeDomainData(AbstractModel):
|
|
5608
5611
|
self._ClusterId = None
|
5609
5612
|
self._ClusterName = None
|
5610
5613
|
self._AppId = None
|
5614
|
+
self._CertId = None
|
5611
5615
|
|
5612
5616
|
@property
|
5613
5617
|
def Id(self):
|
@@ -5665,6 +5669,14 @@ class DescribeDomainData(AbstractModel):
|
|
5665
5669
|
def AppId(self, AppId):
|
5666
5670
|
self._AppId = AppId
|
5667
5671
|
|
5672
|
+
@property
|
5673
|
+
def CertId(self):
|
5674
|
+
return self._CertId
|
5675
|
+
|
5676
|
+
@CertId.setter
|
5677
|
+
def CertId(self, CertId):
|
5678
|
+
self._CertId = CertId
|
5679
|
+
|
5668
5680
|
|
5669
5681
|
def _deserialize(self, params):
|
5670
5682
|
self._Id = params.get("Id")
|
@@ -5674,6 +5686,7 @@ class DescribeDomainData(AbstractModel):
|
|
5674
5686
|
self._ClusterId = params.get("ClusterId")
|
5675
5687
|
self._ClusterName = params.get("ClusterName")
|
5676
5688
|
self._AppId = params.get("AppId")
|
5689
|
+
self._CertId = params.get("CertId")
|
5677
5690
|
memeber_set = set(params.keys())
|
5678
5691
|
for name, value in vars(self).items():
|
5679
5692
|
property_name = name[1:]
|
@@ -111,7 +111,7 @@ class LighthouseClient(AbstractClient):
|
|
111
111
|
* 如果实例原来绑定过密钥,那么原来的密钥将失效。
|
112
112
|
* 如果实例原来是通过密码登录,绑定密钥后无法使用密码登录。
|
113
113
|
* 支持批量操作。每次请求批量实例的上限为 100。如果批量实例存在不允许操作的实例,操作会以特定错误码返回。
|
114
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
114
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
115
115
|
|
116
116
|
:param request: Request instance for AssociateInstancesKeyPairs.
|
117
117
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.AssociateInstancesKeyPairsRequest`
|
@@ -570,7 +570,7 @@ class LighthouseClient(AbstractClient):
|
|
570
570
|
|
571
571
|
def DeleteSnapshots(self, request):
|
572
572
|
"""本接口(DeleteSnapshots)用于删除快照。
|
573
|
-
快照必须处于 NORMAL 状态,快照状态可以通过 DescribeSnapshots 接口查询,见输出参数中 SnapshotState 字段解释。
|
573
|
+
快照必须处于 NORMAL 状态,快照状态可以通过 <a href="https://cloud.tencent.com/document/product/1207/54388" target="_blank">DescribeSnapshots</a> 接口查询,见输出参数中 SnapshotState 字段解释。
|
574
574
|
|
575
575
|
:param request: Request instance for DeleteSnapshots.
|
576
576
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.DeleteSnapshotsRequest`
|
@@ -1580,9 +1580,9 @@ class LighthouseClient(AbstractClient):
|
|
1580
1580
|
|
1581
1581
|
* 只支持 [RUNNING, STOPPED] 状态的 LINUX_UNIX 操作系统的实例。处于 RUNNING 状态的实例会强制关机,然后解绑。
|
1582
1582
|
* 解绑密钥后,实例可以通过原来设置的密码登录。
|
1583
|
-
* 如果原来没有设置密码,解绑后将无法使用 SSH 登录。可以调用 ResetInstancesPassword 接口来设置登录密码。
|
1583
|
+
* 如果原来没有设置密码,解绑后将无法使用 SSH 登录。可以调用 <a href="https://cloud.tencent.com/document/product/1207/55546" target="_blank">ResetInstancesPassword</a> 接口来设置登录密码。
|
1584
1584
|
* 支持批量操作。每次请求批量实例的上限为 100。
|
1585
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
1585
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
1586
1586
|
|
1587
1587
|
:param request: Request instance for DisassociateInstancesKeyPairs.
|
1588
1588
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.DisassociateInstancesKeyPairsRequest`
|
@@ -1775,7 +1775,7 @@ class LighthouseClient(AbstractClient):
|
|
1775
1775
|
* 只有状态为 RUNNING 或 STOPPED 的实例才可以进行此操作。
|
1776
1776
|
* 接口调用成功后,实例会进入SHUTDOWN 状态。
|
1777
1777
|
* 支持批量操作。每次请求批量资源(包括实例与数据盘)的上限为 20。
|
1778
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
1778
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
1779
1779
|
|
1780
1780
|
:param request: Request instance for IsolateInstances.
|
1781
1781
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.IsolateInstancesRequest`
|
@@ -1913,7 +1913,7 @@ class LighthouseClient(AbstractClient):
|
|
1913
1913
|
|
1914
1914
|
|
1915
1915
|
def ModifyDockerContainer(self, request):
|
1916
|
-
"""修改实例内的Docker容器,之后可以通过返回的ActivityId
|
1916
|
+
"""修改实例内的Docker容器,之后可以通过返回的ActivityId调用<a href="https://cloud.tencent.com/document/product/1207/95476" target="_blank">DescribeDockerActivities</a>接口查询重建情况。
|
1917
1917
|
请注意:本接口会重新创建并运行实例内的Docker容器。
|
1918
1918
|
|
1919
1919
|
:param request: Request instance for ModifyDockerContainer.
|
@@ -2056,7 +2056,7 @@ class LighthouseClient(AbstractClient):
|
|
2056
2056
|
"""本接口(ModifyInstancesBundle)用于变更一个或多个轻量应用服务器实例套餐。
|
2057
2057
|
* 只有状态为 RUNNING,STOPPED的实例才可以进行此操作。
|
2058
2058
|
* 支持批量操作。每次请求批量实例的上限为 30。
|
2059
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2059
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2060
2060
|
|
2061
2061
|
:param request: Request instance for ModifyInstancesBundle.
|
2062
2062
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.ModifyInstancesBundleRequest`
|
@@ -2158,7 +2158,7 @@ class LighthouseClient(AbstractClient):
|
|
2158
2158
|
* 只有状态为 RUNNING 的实例才可以进行此操作。
|
2159
2159
|
* 接口调用成功时,实例会进入 REBOOTING 状态;重启实例成功时,实例会进入 RUNNING 状态。
|
2160
2160
|
* 支持批量操作,每次请求批量实例的上限为 100。
|
2161
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2161
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2162
2162
|
|
2163
2163
|
:param request: Request instance for RebootInstances.
|
2164
2164
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.RebootInstancesRequest`
|
@@ -2257,7 +2257,7 @@ class LighthouseClient(AbstractClient):
|
|
2257
2257
|
"""本接口(RenewInstances)用于续费一个或多个轻量应用服务器实例。
|
2258
2258
|
* 只有状态为 RUNNING,STOPPED 或 SHUTDOWN 的实例才可以进行此操作。
|
2259
2259
|
* 支持批量操作。每次请求批量实例的上限为 100。
|
2260
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2260
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2261
2261
|
|
2262
2262
|
:param request: Request instance for RenewInstances.
|
2263
2263
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.RenewInstancesRequest`
|
@@ -2377,7 +2377,7 @@ class LighthouseClient(AbstractClient):
|
|
2377
2377
|
* 如果指定了 BlueprintId 参数,则使用指定的镜像重装;否则按照当前实例使用的镜像进行重装。
|
2378
2378
|
* 系统盘将会被格式化,并重置;请确保系统盘中无重要文件。
|
2379
2379
|
* 目前不支持实例使用该接口实现 LINUX_UNIX 和 WINDOWS 操作系统切换。
|
2380
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2380
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2381
2381
|
|
2382
2382
|
:param request: Request instance for ResetInstance.
|
2383
2383
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.ResetInstanceRequest`
|
@@ -2404,7 +2404,7 @@ class LighthouseClient(AbstractClient):
|
|
2404
2404
|
* 只修改管理员账号的密码。实例的操作系统不同,管理员账号也会不一样(Windows 为 Administrator,Ubuntu 为 ubuntu ,其它系统为 root)。
|
2405
2405
|
* 支持批量操作。将多个实例操作系统的密码重置为相同的密码。每次请求批量实例的上限为 100。
|
2406
2406
|
* 建议对运行中的实例先手动关机,然后再进行密码重置。如实例处于运行中状态,本接口操作过程中会对实例进行关机操作,尝试正常关机失败后进行强制关机。
|
2407
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2407
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2408
2408
|
注意:强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏。
|
2409
2409
|
|
2410
2410
|
:param request: Request instance for ResetInstancesPassword.
|
@@ -2474,7 +2474,7 @@ class LighthouseClient(AbstractClient):
|
|
2474
2474
|
|
2475
2475
|
|
2476
2476
|
def RunDockerContainers(self, request):
|
2477
|
-
"""创建并运行多个Docker容器,之后可以通过返回的ActivityIds
|
2477
|
+
"""创建并运行多个Docker容器,之后可以通过返回的ActivityIds调用<a href="https://cloud.tencent.com/document/product/1207/95476" target="_blank">DescribeDockerActivities</a>接口查询创建情况。
|
2478
2478
|
|
2479
2479
|
:param request: Request instance for RunDockerContainers.
|
2480
2480
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.RunDockerContainersRequest`
|
@@ -2550,7 +2550,7 @@ class LighthouseClient(AbstractClient):
|
|
2550
2550
|
* 只有状态为 STOPPED 的实例才可以进行此操作。
|
2551
2551
|
* 接口调用成功时,实例会进入 STARTING 状态;启动实例成功时,实例会进入 RUNNING 状态。
|
2552
2552
|
* 支持批量操作。每次请求批量实例的上限为 100。
|
2553
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2553
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2554
2554
|
|
2555
2555
|
:param request: Request instance for StartInstances.
|
2556
2556
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.StartInstancesRequest`
|
@@ -2600,7 +2600,7 @@ class LighthouseClient(AbstractClient):
|
|
2600
2600
|
* 只有状态为 RUNNING 的实例才可以进行此操作。
|
2601
2601
|
* 接口调用成功时,实例会进入 STOPPING 状态;关闭实例成功时,实例会进入 STOPPED 状态。
|
2602
2602
|
* 支持批量操作。每次请求批量实例的上限为 100。
|
2603
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2603
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。
|
2604
2604
|
|
2605
2605
|
:param request: Request instance for StopInstances.
|
2606
2606
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.StopInstancesRequest`
|
@@ -2650,7 +2650,7 @@ class LighthouseClient(AbstractClient):
|
|
2650
2650
|
|
2651
2651
|
* 处于 SHUTDOWN 状态的实例,可通过本接口销毁,且不可恢复。
|
2652
2652
|
* 支持批量操作,每次请求批量实例的上限为100。
|
2653
|
-
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 DescribeInstances 接口查询,如果实例的最新操作状态 (LatestOperationState) 为“SUCCESS”,则代表操作成功。
|
2653
|
+
* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href="https://cloud.tencent.com/document/product/1207/47573" target="_blank">DescribeInstances</a> 接口查询,如果实例的最新操作状态 (LatestOperationState) 为“SUCCESS”,则代表操作成功。
|
2654
2654
|
|
2655
2655
|
:param request: Request instance for TerminateInstances.
|
2656
2656
|
:type request: :class:`tencentcloud.lighthouse.v20200324.models.TerminateInstancesRequest`
|
@@ -2196,9 +2196,9 @@ class CreateInstancesRequest(AbstractModel):
|
|
2196
2196
|
|
2197
2197
|
def __init__(self):
|
2198
2198
|
r"""
|
2199
|
-
:param _BundleId: 套餐ID。可以通过调用 [
|
2199
|
+
:param _BundleId: 套餐ID。可以通过调用 [DescribeBundles](https://cloud.tencent.com/document/api/1207/47575) 接口获取。
|
2200
2200
|
:type BundleId: str
|
2201
|
-
:param _BlueprintId: 镜像ID。可以通过调用 [
|
2201
|
+
:param _BlueprintId: 镜像ID。可以通过调用 [DescribeBlueprints](https://cloud.tencent.com/document/api/1207/47689) 接口获取。
|
2202
2202
|
:type BlueprintId: str
|
2203
2203
|
:param _InstanceChargePrepaid: 当前实例仅支持预付费模式,即包年包月相关参数设置,单位(月)。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。该参数必传。
|
2204
2204
|
:type InstanceChargePrepaid: :class:`tencentcloud.lighthouse.v20200324.models.InstanceChargePrepaid`
|
@@ -3004,7 +3004,7 @@ class DeleteSnapshotsRequest(AbstractModel):
|
|
3004
3004
|
|
3005
3005
|
def __init__(self):
|
3006
3006
|
r"""
|
3007
|
-
:param _SnapshotIds: 要删除的快照 ID 列表,可通过 DescribeSnapshots
|
3007
|
+
:param _SnapshotIds: 要删除的快照 ID 列表,可通过 <a href="https://cloud.tencent.com/document/product/1207/54388" target="_blank">DescribeSnapshots</a>查询。
|
3008
3008
|
:type SnapshotIds: list of str
|
3009
3009
|
"""
|
3010
3010
|
self._SnapshotIds = None
|
@@ -3759,7 +3759,7 @@ class DescribeDiskBackupsDeniedActionsRequest(AbstractModel):
|
|
3759
3759
|
|
3760
3760
|
def __init__(self):
|
3761
3761
|
r"""
|
3762
|
-
:param _DiskBackupIds: 云硬盘备份点 ID 列表,
|
3762
|
+
:param _DiskBackupIds: 云硬盘备份点 ID 列表, 可通过<a href="https://cloud.tencent.com/document/product/1207/84379" target="_blank">DescribeDiskBackups</a>接口查询。
|
3763
3763
|
:type DiskBackupIds: list of str
|
3764
3764
|
"""
|
3765
3765
|
self._DiskBackupIds = None
|
@@ -4060,9 +4060,9 @@ class DescribeDiskDiscountRequest(AbstractModel):
|
|
4060
4060
|
|
4061
4061
|
def __init__(self):
|
4062
4062
|
r"""
|
4063
|
-
:param _DiskType: 云硬盘类型,
|
4063
|
+
:param _DiskType: 云硬盘类型, 取值范围: CLOUD_PREMIUM: 高性能云硬盘,CLOUD_SSD: SSD云硬盘
|
4064
4064
|
:type DiskType: str
|
4065
|
-
:param _DiskSize:
|
4065
|
+
:param _DiskSize: 云硬盘大小, 单位: GB。
|
4066
4066
|
:type DiskSize: int
|
4067
4067
|
:param _DiskBackupQuota: 指定云硬盘备份点配额,不传时默认为不带备份点配额。目前只支持不带或设置1个云硬盘备份点配额。
|
4068
4068
|
:type DiskBackupQuota: int
|
@@ -7027,7 +7027,7 @@ class DescribeSnapshotsDeniedActionsRequest(AbstractModel):
|
|
7027
7027
|
|
7028
7028
|
def __init__(self):
|
7029
7029
|
r"""
|
7030
|
-
:param _SnapshotIds: 快照 ID 列表, 可通过 DescribeSnapshots 查询。
|
7030
|
+
:param _SnapshotIds: 快照 ID 列表, 可通过 <a href="https://cloud.tencent.com/document/product/1207/54388" target="_blank">DescribeSnapshots</a> 查询。
|
7031
7031
|
:type SnapshotIds: list of str
|
7032
7032
|
"""
|
7033
7033
|
self._SnapshotIds = None
|
@@ -10374,6 +10374,9 @@ FAILED:表示操作失败
|
|
10374
10374
|
:param _LatestOperationRequestId: 实例最新操作的唯一请求 ID。
|
10375
10375
|
注意:此字段可能返回 空值,表示取不到有效值。
|
10376
10376
|
:type LatestOperationRequestId: str
|
10377
|
+
:param _LatestOperationStartedTime: 实例最新操作的开始时间。
|
10378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10379
|
+
:type LatestOperationStartedTime: str
|
10377
10380
|
:param _IsolatedTime: 隔离时间。按照 ISO8601 标准表示,并且使用 UTC 时间。
|
10378
10381
|
格式为: YYYY-MM-DDThh:mm:ssZ。
|
10379
10382
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -10420,6 +10423,7 @@ FAILED:表示操作失败
|
|
10420
10423
|
self._LatestOperation = None
|
10421
10424
|
self._LatestOperationState = None
|
10422
10425
|
self._LatestOperationRequestId = None
|
10426
|
+
self._LatestOperationStartedTime = None
|
10423
10427
|
self._IsolatedTime = None
|
10424
10428
|
self._CreatedTime = None
|
10425
10429
|
self._ExpiredTime = None
|
@@ -10575,6 +10579,14 @@ FAILED:表示操作失败
|
|
10575
10579
|
def LatestOperationRequestId(self, LatestOperationRequestId):
|
10576
10580
|
self._LatestOperationRequestId = LatestOperationRequestId
|
10577
10581
|
|
10582
|
+
@property
|
10583
|
+
def LatestOperationStartedTime(self):
|
10584
|
+
return self._LatestOperationStartedTime
|
10585
|
+
|
10586
|
+
@LatestOperationStartedTime.setter
|
10587
|
+
def LatestOperationStartedTime(self, LatestOperationStartedTime):
|
10588
|
+
self._LatestOperationStartedTime = LatestOperationStartedTime
|
10589
|
+
|
10578
10590
|
@property
|
10579
10591
|
def IsolatedTime(self):
|
10580
10592
|
return self._IsolatedTime
|
@@ -10681,6 +10693,7 @@ FAILED:表示操作失败
|
|
10681
10693
|
self._LatestOperation = params.get("LatestOperation")
|
10682
10694
|
self._LatestOperationState = params.get("LatestOperationState")
|
10683
10695
|
self._LatestOperationRequestId = params.get("LatestOperationRequestId")
|
10696
|
+
self._LatestOperationStartedTime = params.get("LatestOperationStartedTime")
|
10684
10697
|
self._IsolatedTime = params.get("IsolatedTime")
|
10685
10698
|
self._CreatedTime = params.get("CreatedTime")
|
10686
10699
|
self._ExpiredTime = params.get("ExpiredTime")
|
@@ -12645,7 +12658,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
|
|
12645
12658
|
|
12646
12659
|
def __init__(self):
|
12647
12660
|
r"""
|
12648
|
-
:param _SnapshotId: 快照 ID, 可通过 DescribeSnapshots 查询。
|
12661
|
+
:param _SnapshotId: 快照 ID, 可通过 <a href="https://cloud.tencent.com/document/product/1207/54388">DescribeSnapshots</a> 查询。
|
12649
12662
|
:type SnapshotId: str
|
12650
12663
|
:param _SnapshotName: 新的快照名称,最长为 60 个字符。
|
12651
12664
|
:type SnapshotName: str
|
@@ -13879,9 +13892,7 @@ class ResetInstancesPasswordRequest(AbstractModel):
|
|
13879
13892
|
r"""
|
13880
13893
|
:param _InstanceIds: 实例 ID 列表。每次请求批量实例的上限为 100。
|
13881
13894
|
:type InstanceIds: list of str
|
13882
|
-
:param _Password:
|
13883
|
-
`LINUX_UNIX` 实例密码必须 8-30 位,推荐使用 12 位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:<br><li>小写字母:[a-z]<br><li>大写字母:[A-Z]<br><li>数字:0-9<br><li>特殊字符: ()\`\~!@#$%^&\*-+=\_|{}[]:;' <>,.?/</li>
|
13884
|
-
`WINDOWS` 实例密码必须 12-30 位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符<br><li>小写字母:[a-z]<br><li>大写字母:[A-Z]<br><li>数字: 0-9<br><li>特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/<br><li>如果实例即包含 `LINUX_UNIX` 实例又包含 `WINDOWS` 实例,则密码复杂度限制按照 `WINDOWS` 实例的限制。
|
13895
|
+
:param _Password: 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:</br> `LINUX_UNIX` 实例密码必须 8-30 位,推荐使用 12 位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:</br> <li>小写字母:[a-z]</br></li> <li>大写字母:[A-Z]</br></li> <li>数字:0-9</br></li> <li>特殊字符: ()\`\~!@#$%^&\*-+=\_|{}[]:;' <>,.?/</li></br> `WINDOWS` 实例密码必须 12-30 位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符</br> <li>小写字母:[a-z]</br></li> <li>大写字母:[A-Z]</br></li> <li>数字: 0-9</br></li> <li>特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/</br></li> <li>如果实例即包含 `LINUX_UNIX` 实例又包含 `WINDOWS` 实例,则密码复杂度限制按照 `WINDOWS` 实例的限制。</li>
|
13885
13896
|
:type Password: str
|
13886
13897
|
:param _UserName: 待重置密码的实例操作系统用户名。不得超过 64 个字符。
|
13887
13898
|
:type UserName: str
|
@@ -1710,6 +1710,29 @@ class LiveClient(AbstractClient):
|
|
1710
1710
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1711
1711
|
|
1712
1712
|
|
1713
|
+
def DescribeLivePadProcessorList(self, request):
|
1714
|
+
"""使用该接口查询垫片流。垫片流状态更新存在一定延迟,可间隔30秒以上查询,避免频繁查询该接口。
|
1715
|
+
|
1716
|
+
:param request: Request instance for DescribeLivePadProcessorList.
|
1717
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribeLivePadProcessorListRequest`
|
1718
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribeLivePadProcessorListResponse`
|
1719
|
+
|
1720
|
+
"""
|
1721
|
+
try:
|
1722
|
+
params = request._serialize()
|
1723
|
+
headers = request.headers
|
1724
|
+
body = self.call("DescribeLivePadProcessorList", params, headers=headers)
|
1725
|
+
response = json.loads(body)
|
1726
|
+
model = models.DescribeLivePadProcessorListResponse()
|
1727
|
+
model._deserialize(response["Response"])
|
1728
|
+
return model
|
1729
|
+
except Exception as e:
|
1730
|
+
if isinstance(e, TencentCloudSDKException):
|
1731
|
+
raise
|
1732
|
+
else:
|
1733
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1734
|
+
|
1735
|
+
|
1713
1736
|
def DescribeLivePadRules(self, request):
|
1714
1737
|
"""获取直播垫片规则列表。
|
1715
1738
|
|
@@ -3532,6 +3555,29 @@ class LiveClient(AbstractClient):
|
|
3532
3555
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3533
3556
|
|
3534
3557
|
|
3558
|
+
def StopLivePadProcessor(self, request):
|
3559
|
+
"""使用该接口停止垫片流。
|
3560
|
+
|
3561
|
+
:param request: Request instance for StopLivePadProcessor.
|
3562
|
+
:type request: :class:`tencentcloud.live.v20180801.models.StopLivePadProcessorRequest`
|
3563
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.StopLivePadProcessorResponse`
|
3564
|
+
|
3565
|
+
"""
|
3566
|
+
try:
|
3567
|
+
params = request._serialize()
|
3568
|
+
headers = request.headers
|
3569
|
+
body = self.call("StopLivePadProcessor", params, headers=headers)
|
3570
|
+
response = json.loads(body)
|
3571
|
+
model = models.StopLivePadProcessorResponse()
|
3572
|
+
model._deserialize(response["Response"])
|
3573
|
+
return model
|
3574
|
+
except Exception as e:
|
3575
|
+
if isinstance(e, TencentCloudSDKException):
|
3576
|
+
raise
|
3577
|
+
else:
|
3578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3579
|
+
|
3580
|
+
|
3535
3581
|
def StopLiveRecord(self, request):
|
3536
3582
|
"""说明:录制后的文件存放于点播平台。用户如需使用录制功能,需首先自行开通点播账号并确保账号可用。录制文件存放后,相关费用(含存储以及下行播放流量)按照点播平台计费方式收取,请参考对应文档。
|
3537
3583
|
|
@@ -9898,6 +9898,89 @@ class DescribeLivePackageInfoResponse(AbstractModel):
|
|
9898
9898
|
self._RequestId = params.get("RequestId")
|
9899
9899
|
|
9900
9900
|
|
9901
|
+
class DescribeLivePadProcessorListRequest(AbstractModel):
|
9902
|
+
"""DescribeLivePadProcessorList请求参数结构体
|
9903
|
+
|
9904
|
+
"""
|
9905
|
+
|
9906
|
+
def __init__(self):
|
9907
|
+
r"""
|
9908
|
+
:param _AppName: 推流路径,与推流和播放地址中的AppName保持一致,默认为 live。
|
9909
|
+
:type AppName: str
|
9910
|
+
:param _PushDomainName: 您的推流域名。
|
9911
|
+
:type PushDomainName: str
|
9912
|
+
"""
|
9913
|
+
self._AppName = None
|
9914
|
+
self._PushDomainName = None
|
9915
|
+
|
9916
|
+
@property
|
9917
|
+
def AppName(self):
|
9918
|
+
return self._AppName
|
9919
|
+
|
9920
|
+
@AppName.setter
|
9921
|
+
def AppName(self, AppName):
|
9922
|
+
self._AppName = AppName
|
9923
|
+
|
9924
|
+
@property
|
9925
|
+
def PushDomainName(self):
|
9926
|
+
return self._PushDomainName
|
9927
|
+
|
9928
|
+
@PushDomainName.setter
|
9929
|
+
def PushDomainName(self, PushDomainName):
|
9930
|
+
self._PushDomainName = PushDomainName
|
9931
|
+
|
9932
|
+
|
9933
|
+
def _deserialize(self, params):
|
9934
|
+
self._AppName = params.get("AppName")
|
9935
|
+
self._PushDomainName = params.get("PushDomainName")
|
9936
|
+
memeber_set = set(params.keys())
|
9937
|
+
for name, value in vars(self).items():
|
9938
|
+
property_name = name[1:]
|
9939
|
+
if property_name in memeber_set:
|
9940
|
+
memeber_set.remove(property_name)
|
9941
|
+
if len(memeber_set) > 0:
|
9942
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9943
|
+
|
9944
|
+
|
9945
|
+
|
9946
|
+
class DescribeLivePadProcessorListResponse(AbstractModel):
|
9947
|
+
"""DescribeLivePadProcessorList返回参数结构体
|
9948
|
+
|
9949
|
+
"""
|
9950
|
+
|
9951
|
+
def __init__(self):
|
9952
|
+
r"""
|
9953
|
+
:param _StreamNameList: 当前正在拉取垫片的流名称列表。
|
9954
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9955
|
+
:type StreamNameList: list of str
|
9956
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9957
|
+
:type RequestId: str
|
9958
|
+
"""
|
9959
|
+
self._StreamNameList = None
|
9960
|
+
self._RequestId = None
|
9961
|
+
|
9962
|
+
@property
|
9963
|
+
def StreamNameList(self):
|
9964
|
+
return self._StreamNameList
|
9965
|
+
|
9966
|
+
@StreamNameList.setter
|
9967
|
+
def StreamNameList(self, StreamNameList):
|
9968
|
+
self._StreamNameList = StreamNameList
|
9969
|
+
|
9970
|
+
@property
|
9971
|
+
def RequestId(self):
|
9972
|
+
return self._RequestId
|
9973
|
+
|
9974
|
+
@RequestId.setter
|
9975
|
+
def RequestId(self, RequestId):
|
9976
|
+
self._RequestId = RequestId
|
9977
|
+
|
9978
|
+
|
9979
|
+
def _deserialize(self, params):
|
9980
|
+
self._StreamNameList = params.get("StreamNameList")
|
9981
|
+
self._RequestId = params.get("RequestId")
|
9982
|
+
|
9983
|
+
|
9901
9984
|
class DescribeLivePadRulesRequest(AbstractModel):
|
9902
9985
|
"""DescribeLivePadRules请求参数结构体
|
9903
9986
|
|
@@ -24717,6 +24800,113 @@ class StartLiveStreamMonitorResponse(AbstractModel):
|
|
24717
24800
|
self._RequestId = params.get("RequestId")
|
24718
24801
|
|
24719
24802
|
|
24803
|
+
class StopLivePadProcessorRequest(AbstractModel):
|
24804
|
+
"""StopLivePadProcessor请求参数结构体
|
24805
|
+
|
24806
|
+
"""
|
24807
|
+
|
24808
|
+
def __init__(self):
|
24809
|
+
r"""
|
24810
|
+
:param _AppName: 推流路径,与推流和播放地址中的AppName保持一致,默认为 live。
|
24811
|
+
:type AppName: str
|
24812
|
+
:param _PushDomainName: 您的推流域名。
|
24813
|
+
:type PushDomainName: str
|
24814
|
+
:param _StreamName: 流名称。
|
24815
|
+
:type StreamName: str
|
24816
|
+
:param _Operator: 操作人备注信息。
|
24817
|
+
:type Operator: str
|
24818
|
+
"""
|
24819
|
+
self._AppName = None
|
24820
|
+
self._PushDomainName = None
|
24821
|
+
self._StreamName = None
|
24822
|
+
self._Operator = None
|
24823
|
+
|
24824
|
+
@property
|
24825
|
+
def AppName(self):
|
24826
|
+
return self._AppName
|
24827
|
+
|
24828
|
+
@AppName.setter
|
24829
|
+
def AppName(self, AppName):
|
24830
|
+
self._AppName = AppName
|
24831
|
+
|
24832
|
+
@property
|
24833
|
+
def PushDomainName(self):
|
24834
|
+
return self._PushDomainName
|
24835
|
+
|
24836
|
+
@PushDomainName.setter
|
24837
|
+
def PushDomainName(self, PushDomainName):
|
24838
|
+
self._PushDomainName = PushDomainName
|
24839
|
+
|
24840
|
+
@property
|
24841
|
+
def StreamName(self):
|
24842
|
+
return self._StreamName
|
24843
|
+
|
24844
|
+
@StreamName.setter
|
24845
|
+
def StreamName(self, StreamName):
|
24846
|
+
self._StreamName = StreamName
|
24847
|
+
|
24848
|
+
@property
|
24849
|
+
def Operator(self):
|
24850
|
+
return self._Operator
|
24851
|
+
|
24852
|
+
@Operator.setter
|
24853
|
+
def Operator(self, Operator):
|
24854
|
+
self._Operator = Operator
|
24855
|
+
|
24856
|
+
|
24857
|
+
def _deserialize(self, params):
|
24858
|
+
self._AppName = params.get("AppName")
|
24859
|
+
self._PushDomainName = params.get("PushDomainName")
|
24860
|
+
self._StreamName = params.get("StreamName")
|
24861
|
+
self._Operator = params.get("Operator")
|
24862
|
+
memeber_set = set(params.keys())
|
24863
|
+
for name, value in vars(self).items():
|
24864
|
+
property_name = name[1:]
|
24865
|
+
if property_name in memeber_set:
|
24866
|
+
memeber_set.remove(property_name)
|
24867
|
+
if len(memeber_set) > 0:
|
24868
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
24869
|
+
|
24870
|
+
|
24871
|
+
|
24872
|
+
class StopLivePadProcessorResponse(AbstractModel):
|
24873
|
+
"""StopLivePadProcessor返回参数结构体
|
24874
|
+
|
24875
|
+
"""
|
24876
|
+
|
24877
|
+
def __init__(self):
|
24878
|
+
r"""
|
24879
|
+
:param _ResultMessage: 处理结果信息。
|
24880
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24881
|
+
:type ResultMessage: str
|
24882
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24883
|
+
:type RequestId: str
|
24884
|
+
"""
|
24885
|
+
self._ResultMessage = None
|
24886
|
+
self._RequestId = None
|
24887
|
+
|
24888
|
+
@property
|
24889
|
+
def ResultMessage(self):
|
24890
|
+
return self._ResultMessage
|
24891
|
+
|
24892
|
+
@ResultMessage.setter
|
24893
|
+
def ResultMessage(self, ResultMessage):
|
24894
|
+
self._ResultMessage = ResultMessage
|
24895
|
+
|
24896
|
+
@property
|
24897
|
+
def RequestId(self):
|
24898
|
+
return self._RequestId
|
24899
|
+
|
24900
|
+
@RequestId.setter
|
24901
|
+
def RequestId(self, RequestId):
|
24902
|
+
self._RequestId = RequestId
|
24903
|
+
|
24904
|
+
|
24905
|
+
def _deserialize(self, params):
|
24906
|
+
self._ResultMessage = params.get("ResultMessage")
|
24907
|
+
self._RequestId = params.get("RequestId")
|
24908
|
+
|
24909
|
+
|
24720
24910
|
class StopLiveRecordRequest(AbstractModel):
|
24721
24911
|
"""StopLiveRecord请求参数结构体
|
24722
24912
|
|
@@ -786,8 +786,8 @@ class LkeClient(AbstractClient):
|
|
786
786
|
|
787
787
|
|
788
788
|
def GetEmbedding(self, request):
|
789
|
-
"""
|
790
|
-
|
789
|
+
"""本接口(GetEmbedding)调用文本表示模型,将文本转化为用数值表示的向量形式,可用于文本检索、信息推荐、知识挖掘等场景。
|
790
|
+
本接口(GetEmbedding)有单账号调用上限控制,如您有提高并发限制的需求请 [联系我们](https://cloud.tencent.com/act/event/Online_service) 。
|
791
791
|
|
792
792
|
:param request: Request instance for GetEmbedding.
|
793
793
|
:type request: :class:`tencentcloud.lke.v20231130.models.GetEmbeddingRequest`
|
@@ -1523,8 +1523,8 @@ class LkeClient(AbstractClient):
|
|
1523
1523
|
|
1524
1524
|
|
1525
1525
|
def QueryRewrite(self, request):
|
1526
|
-
"""
|
1527
|
-
|
1526
|
+
"""多轮改写(QueryRewrite)主要用于多轮对话中,进行指代消解和省略补全。使用本接口,无需输入prompt描述,根据对话历史即可生成更精确的用户查询。在应用场景上,本接口可应用于智能问答、对话式搜索等多种场景。
|
1527
|
+
本接口(QueryRewrite)有单账号调用上限控制,如您有提高并发限制的需求请 [联系我们](https://cloud.tencent.com/act/event/Online_service) 。
|
1528
1528
|
|
1529
1529
|
:param request: Request instance for QueryRewrite.
|
1530
1530
|
:type request: :class:`tencentcloud.lke.v20231130.models.QueryRewriteRequest`
|