tencentcloud-sdk-python-tsf 3.1.145__tar.gz → 3.1.152__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.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/setup.py +1 -1
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/models.py +15 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tsf-3.1.152/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_tsf-3.1.145/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/README.rst +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/__init__.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/__init__.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/tsf_client_async.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tsf-3.1.145 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tsf
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.152
|
|
4
4
|
Summary: Tencent Cloud Tsf 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.152
|
|
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-tsf',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.152,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Tsf SDK for Python',
|
|
@@ -17821,6 +17821,8 @@ class DeployContainerApplicationRequest(AbstractModel):
|
|
|
17821
17821
|
:type DoNotStart: bool
|
|
17822
17822
|
:param _ImagePullSecretList: <p>镜像Secret列表</p>
|
|
17823
17823
|
:type ImagePullSecretList: list of str
|
|
17824
|
+
:param _MeshSidecarVersion: <p>用于区分使用sidecar的版本是稳定版还是发行版</p><p>枚举值:</p><ul><li>stable: sidecar稳定版</li><li>release: sidecar发行版</li></ul>
|
|
17825
|
+
:type MeshSidecarVersion: str
|
|
17824
17826
|
"""
|
|
17825
17827
|
self._ApplicationId = None
|
|
17826
17828
|
self._ObservabilityConfig = None
|
|
@@ -17886,6 +17888,7 @@ class DeployContainerApplicationRequest(AbstractModel):
|
|
|
17886
17888
|
self._IncrementalDeployment = None
|
|
17887
17889
|
self._DoNotStart = None
|
|
17888
17890
|
self._ImagePullSecretList = None
|
|
17891
|
+
self._MeshSidecarVersion = None
|
|
17889
17892
|
|
|
17890
17893
|
@property
|
|
17891
17894
|
def ApplicationId(self):
|
|
@@ -18591,6 +18594,17 @@ class DeployContainerApplicationRequest(AbstractModel):
|
|
|
18591
18594
|
def ImagePullSecretList(self, ImagePullSecretList):
|
|
18592
18595
|
self._ImagePullSecretList = ImagePullSecretList
|
|
18593
18596
|
|
|
18597
|
+
@property
|
|
18598
|
+
def MeshSidecarVersion(self):
|
|
18599
|
+
r"""<p>用于区分使用sidecar的版本是稳定版还是发行版</p><p>枚举值:</p><ul><li>stable: sidecar稳定版</li><li>release: sidecar发行版</li></ul>
|
|
18600
|
+
:rtype: str
|
|
18601
|
+
"""
|
|
18602
|
+
return self._MeshSidecarVersion
|
|
18603
|
+
|
|
18604
|
+
@MeshSidecarVersion.setter
|
|
18605
|
+
def MeshSidecarVersion(self, MeshSidecarVersion):
|
|
18606
|
+
self._MeshSidecarVersion = MeshSidecarVersion
|
|
18607
|
+
|
|
18594
18608
|
|
|
18595
18609
|
def _deserialize(self, params):
|
|
18596
18610
|
self._ApplicationId = params.get("ApplicationId")
|
|
@@ -18709,6 +18723,7 @@ class DeployContainerApplicationRequest(AbstractModel):
|
|
|
18709
18723
|
self._IncrementalDeployment = params.get("IncrementalDeployment")
|
|
18710
18724
|
self._DoNotStart = params.get("DoNotStart")
|
|
18711
18725
|
self._ImagePullSecretList = params.get("ImagePullSecretList")
|
|
18726
|
+
self._MeshSidecarVersion = params.get("MeshSidecarVersion")
|
|
18712
18727
|
memeber_set = set(params.keys())
|
|
18713
18728
|
for name, value in vars(self).items():
|
|
18714
18729
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tsf
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.152
|
|
4
4
|
Summary: Tencent Cloud Tsf 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.152
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.152
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.145
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|