tencentcloud-sdk-python 3.0.1334__py2.py3-none-any.whl → 3.0.1335__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/acp/v20220105/models.py +0 -32
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +3 -2
- tencentcloud/controlcenter/v20230110/controlcenter_client.py +92 -0
- tencentcloud/controlcenter/v20230110/errorcodes.py +9 -0
- tencentcloud/controlcenter/v20230110/models.py +948 -0
- tencentcloud/cvm/v20170312/cvm_client.py +92 -0
- tencentcloud/cvm/v20170312/errorcodes.py +9 -0
- tencentcloud/cvm/v20170312/models.py +1491 -33
- tencentcloud/cynosdb/v20190107/models.py +17 -2
- tencentcloud/ims/v20201229/ims_client.py +18 -12
- tencentcloud/keewidb/v20220308/models.py +0 -2
- tencentcloud/lcic/v20220817/models.py +75 -54
- tencentcloud/lke/v20231130/errorcodes.py +0 -12
- tencentcloud/lke/v20231130/lke_client.py +0 -50
- tencentcloud/lke/v20231130/models.py +0 -284
- tencentcloud/lowcode/v20210108/models.py +182 -2
- tencentcloud/mariadb/v20170312/models.py +10 -10
- tencentcloud/mqtt/v20240516/models.py +84 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/models.py +4 -22
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/partners/v20180321/models.py +197 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/tat/v20201028/models.py +494 -180
- tencentcloud/tat/v20201028/tat_client.py +2 -2
- tencentcloud/teo/v20220901/models.py +14 -4
- tencentcloud/tke/v20180525/models.py +0 -292
- tencentcloud/tke/v20220501/models.py +0 -2
- tencentcloud/vdb/v20230616/models.py +0 -12
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/top_level.txt +0 -0
@@ -27,9 +27,9 @@ class TatClient(AbstractClient):
|
|
27
27
|
|
28
28
|
|
29
29
|
def CancelInvocation(self, request):
|
30
|
-
"""
|
30
|
+
"""取消一台或多台实例执行的命令
|
31
31
|
|
32
|
-
* 如果命令还未下发到agent
|
32
|
+
* 如果命令还未下发到agent,任务状态处于PENDING、DELIVERING、DELIVER_DELAYED,取消后任务状态是CANCELLED
|
33
33
|
* 如果命令已下发到agent,任务状态处于RUNNING, 取消后任务状态是TERMINATED
|
34
34
|
|
35
35
|
:param request: Request instance for CancelInvocation.
|
@@ -36552,9 +36552,14 @@ class ResponseSpeedLimitParameters(AbstractModel):
|
|
36552
36552
|
<li>LimitAfterSpecificBytesDownloaded:全速下载特定字节后开始限速;</li>
|
36553
36553
|
<li>LimitAfterSpecificSecondsDownloaded:全速下载特定时间后开始限速。</li>
|
36554
36554
|
:type Mode: str
|
36555
|
-
:param _MaxSpeed:
|
36555
|
+
:param _MaxSpeed: 限速值,指定限速大小,填写含单位的数值或变量。当前支持单位有:KB/s。
|
36556
36556
|
:type MaxSpeed: str
|
36557
|
-
:param _StartAt:
|
36557
|
+
:param _StartAt: 限速开始值,可以为下载大小或指定时长,填写含单位的数值或变量,指定下载大小或指定时长。
|
36558
|
+
|
36559
|
+
- 当Mode 取值为 LimitAfterSpecificBytesDownloaded 时,单位取值有: KB;
|
36560
|
+
|
36561
|
+
- 当Mode 取值为 LimitAfterSpecificSecondsDownloaded 时,单位取值有: s。
|
36562
|
+
|
36558
36563
|
:type StartAt: str
|
36559
36564
|
"""
|
36560
36565
|
self._Mode = None
|
@@ -36577,7 +36582,7 @@ class ResponseSpeedLimitParameters(AbstractModel):
|
|
36577
36582
|
|
36578
36583
|
@property
|
36579
36584
|
def MaxSpeed(self):
|
36580
|
-
"""
|
36585
|
+
"""限速值,指定限速大小,填写含单位的数值或变量。当前支持单位有:KB/s。
|
36581
36586
|
:rtype: str
|
36582
36587
|
"""
|
36583
36588
|
return self._MaxSpeed
|
@@ -36588,7 +36593,12 @@ class ResponseSpeedLimitParameters(AbstractModel):
|
|
36588
36593
|
|
36589
36594
|
@property
|
36590
36595
|
def StartAt(self):
|
36591
|
-
"""
|
36596
|
+
"""限速开始值,可以为下载大小或指定时长,填写含单位的数值或变量,指定下载大小或指定时长。
|
36597
|
+
|
36598
|
+
- 当Mode 取值为 LimitAfterSpecificBytesDownloaded 时,单位取值有: KB;
|
36599
|
+
|
36600
|
+
- 当Mode 取值为 LimitAfterSpecificSecondsDownloaded 时,单位取值有: s。
|
36601
|
+
|
36592
36602
|
:rtype: str
|
36593
36603
|
"""
|
36594
36604
|
return self._StartAt
|