tencentcloud-sdk-python-tsf 3.0.1416__tar.gz → 3.0.1420__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-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/setup.py +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/tsf/v20180326/errorcodes.py +6 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/tsf/v20180326/models.py +16 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-tsf-3.0.1420/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-tsf-3.0.1416/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/README.rst +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/setup.cfg +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/tsf/__init__.py +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/tsf/v20180326/__init__.py +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1416 → tencentcloud-sdk-python-tsf-3.0.1420}/tencentcloud_sdk_python_tsf.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-tsf',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1420,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Tsf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -41,6 +41,9 @@ FAILEDOPERATION_CLOUDAPIPROXYERROR = 'FailedOperation.CloudApiProxyError'
|
|
|
41
41
|
# 创建集群,开通VPC网络权限失败。
|
|
42
42
|
FAILEDOPERATION_CLUSTERCREATEVPCFAIL = 'FailedOperation.ClusterCreateVpcFail'
|
|
43
43
|
|
|
44
|
+
# 本环境仅允许操作名称 %s 的集群
|
|
45
|
+
FAILEDOPERATION_CLUSTEROPERATEENVILLEGALERROR = 'FailedOperation.ClusterOperateEnvIllegalError'
|
|
46
|
+
|
|
44
47
|
# 查询集群失败。
|
|
45
48
|
FAILEDOPERATION_CLUSTERQUERYFAILED = 'FailedOperation.ClusterQueryFailed'
|
|
46
49
|
|
|
@@ -632,6 +635,9 @@ INVALIDPARAMETERVALUE_CLUSTERCIDRCONFLICT = 'InvalidParameterValue.ClusterCidrCo
|
|
|
632
635
|
# 集群命名已存在,请更换其他名称。
|
|
633
636
|
INVALIDPARAMETERVALUE_CLUSTERNAMEEXIST = 'InvalidParameterValue.ClusterNameExist'
|
|
634
637
|
|
|
638
|
+
# 本环境集群名称禁止以 %s 开头
|
|
639
|
+
INVALIDPARAMETERVALUE_CLUSTERNAMEPREFIXILLEGALERROR = 'InvalidParameterValue.ClusterNamePrefixIllegalError'
|
|
640
|
+
|
|
635
641
|
# 集群命名不能为空。
|
|
636
642
|
INVALIDPARAMETERVALUE_CLUSTERNAMEREQUIRED = 'InvalidParameterValue.ClusterNameRequired'
|
|
637
643
|
|
|
@@ -19283,6 +19283,8 @@ class DeployContainerGroupRequest(AbstractModel):
|
|
|
19283
19283
|
|
|
19284
19284
|
@property
|
|
19285
19285
|
def VolumeInfos(self):
|
|
19286
|
+
warnings.warn("parameter `VolumeInfos` is deprecated", DeprecationWarning)
|
|
19287
|
+
|
|
19286
19288
|
"""数据卷信息-废弃,请用VolumeInfoList参数
|
|
19287
19289
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.VolumeInfo`
|
|
19288
19290
|
"""
|
|
@@ -19290,10 +19292,14 @@ class DeployContainerGroupRequest(AbstractModel):
|
|
|
19290
19292
|
|
|
19291
19293
|
@VolumeInfos.setter
|
|
19292
19294
|
def VolumeInfos(self, VolumeInfos):
|
|
19295
|
+
warnings.warn("parameter `VolumeInfos` is deprecated", DeprecationWarning)
|
|
19296
|
+
|
|
19293
19297
|
self._VolumeInfos = VolumeInfos
|
|
19294
19298
|
|
|
19295
19299
|
@property
|
|
19296
19300
|
def VolumeMountInfos(self):
|
|
19301
|
+
warnings.warn("parameter `VolumeMountInfos` is deprecated", DeprecationWarning)
|
|
19302
|
+
|
|
19297
19303
|
"""数据卷挂载点信息-废弃,请用VolumeMountInfoList参数
|
|
19298
19304
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.VolumeMountInfo`
|
|
19299
19305
|
"""
|
|
@@ -19301,6 +19307,8 @@ class DeployContainerGroupRequest(AbstractModel):
|
|
|
19301
19307
|
|
|
19302
19308
|
@VolumeMountInfos.setter
|
|
19303
19309
|
def VolumeMountInfos(self, VolumeMountInfos):
|
|
19310
|
+
warnings.warn("parameter `VolumeMountInfos` is deprecated", DeprecationWarning)
|
|
19311
|
+
|
|
19304
19312
|
self._VolumeMountInfos = VolumeMountInfos
|
|
19305
19313
|
|
|
19306
19314
|
@property
|
|
@@ -37639,6 +37647,8 @@ class ImageRepository(AbstractModel):
|
|
|
37639
37647
|
|
|
37640
37648
|
@property
|
|
37641
37649
|
def ApplicationName(self):
|
|
37650
|
+
warnings.warn("parameter `ApplicationName` is deprecated", DeprecationWarning)
|
|
37651
|
+
|
|
37642
37652
|
"""ApplicationName值(废弃)
|
|
37643
37653
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.ScalableRule`
|
|
37644
37654
|
"""
|
|
@@ -37646,6 +37656,8 @@ class ImageRepository(AbstractModel):
|
|
|
37646
37656
|
|
|
37647
37657
|
@ApplicationName.setter
|
|
37648
37658
|
def ApplicationName(self, ApplicationName):
|
|
37659
|
+
warnings.warn("parameter `ApplicationName` is deprecated", DeprecationWarning)
|
|
37660
|
+
|
|
37649
37661
|
self._ApplicationName = ApplicationName
|
|
37650
37662
|
|
|
37651
37663
|
@property
|
|
@@ -52586,6 +52598,8 @@ class ThreadPicture(AbstractModel):
|
|
|
52586
52598
|
|
|
52587
52599
|
@property
|
|
52588
52600
|
def DeamonThreadCount(self):
|
|
52601
|
+
warnings.warn("parameter `DeamonThreadCount` is deprecated", DeprecationWarning)
|
|
52602
|
+
|
|
52589
52603
|
"""守护线程数 拼写错误,废弃
|
|
52590
52604
|
:rtype: list of CurvePoint
|
|
52591
52605
|
"""
|
|
@@ -52593,6 +52607,8 @@ class ThreadPicture(AbstractModel):
|
|
|
52593
52607
|
|
|
52594
52608
|
@DeamonThreadCount.setter
|
|
52595
52609
|
def DeamonThreadCount(self, DeamonThreadCount):
|
|
52610
|
+
warnings.warn("parameter `DeamonThreadCount` is deprecated", DeprecationWarning)
|
|
52611
|
+
|
|
52596
52612
|
self._DeamonThreadCount = DeamonThreadCount
|
|
52597
52613
|
|
|
52598
52614
|
@property
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1420
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1416
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|