tencentcloud-sdk-python-tsf 3.1.132__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.132 → tencentcloud_sdk_python_tsf-3.1.152}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/setup.py +1 -1
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/models.py +37 -22
- {tencentcloud_sdk_python_tsf-3.1.132 → 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.132/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/README.rst +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/__init__.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/__init__.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud/tsf/v20180326/tsf_client_async.py +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → tencentcloud_sdk_python_tsf-3.1.152}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tsf-3.1.132 → 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:]
|
|
@@ -37059,37 +37074,37 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37059
37074
|
|
|
37060
37075
|
def __init__(self):
|
|
37061
37076
|
r"""
|
|
37062
|
-
:param _ActionType:
|
|
37077
|
+
:param _ActionType: <p>健康检查方法。HTTP:通过 HTTP 接口检查;CMD:通过执行命令检查;TCP:通过建立 TCP 连接检查。</p>
|
|
37063
37078
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37064
37079
|
:type ActionType: str
|
|
37065
|
-
:param _InitialDelaySeconds:
|
|
37080
|
+
:param _InitialDelaySeconds: <p>容器延时启动健康检查的时间,单位秒。</p>
|
|
37066
37081
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37067
37082
|
:type InitialDelaySeconds: int
|
|
37068
|
-
:param _TimeoutSeconds:
|
|
37083
|
+
:param _TimeoutSeconds: <p>每次健康检查响应的最大超时时间,单位秒。</p>
|
|
37069
37084
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37070
37085
|
:type TimeoutSeconds: int
|
|
37071
|
-
:param _PeriodSeconds:
|
|
37086
|
+
:param _PeriodSeconds: <p>进行健康检查的时间间隔,单位秒。</p>
|
|
37072
37087
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37073
37088
|
:type PeriodSeconds: int
|
|
37074
|
-
:param _SuccessThreshold:
|
|
37089
|
+
:param _SuccessThreshold: <p>表示后端容器从失败到成功的连续健康检查成功次数。</p>
|
|
37075
37090
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37076
37091
|
:type SuccessThreshold: int
|
|
37077
|
-
:param _FailureThreshold:
|
|
37092
|
+
:param _FailureThreshold: <p>表示后端容器从成功到失败的连续健康检查成功次数。</p>
|
|
37078
37093
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37079
37094
|
:type FailureThreshold: int
|
|
37080
|
-
:param _Scheme: HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS
|
|
37095
|
+
:param _Scheme: <p>HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS。</p>
|
|
37081
37096
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37082
37097
|
:type Scheme: str
|
|
37083
|
-
:param _Port:
|
|
37098
|
+
:param _Port: <p>健康检查端口,范围 1~65535 。</p>
|
|
37084
37099
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37085
37100
|
:type Port: int
|
|
37086
|
-
:param _Path: HTTP
|
|
37101
|
+
:param _Path: <p>HTTP 健康检查接口的请求路径。</p>
|
|
37087
37102
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37088
37103
|
:type Path: str
|
|
37089
|
-
:param _Command:
|
|
37104
|
+
:param _Command: <p>执行命令检查方式,执行的命令。</p>
|
|
37090
37105
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37091
37106
|
:type Command: list of str
|
|
37092
|
-
:param _Type: TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s
|
|
37107
|
+
:param _Type: <p>TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s 原生探针。</p>
|
|
37093
37108
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37094
37109
|
:type Type: str
|
|
37095
37110
|
"""
|
|
@@ -37107,7 +37122,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37107
37122
|
|
|
37108
37123
|
@property
|
|
37109
37124
|
def ActionType(self):
|
|
37110
|
-
r"""
|
|
37125
|
+
r"""<p>健康检查方法。HTTP:通过 HTTP 接口检查;CMD:通过执行命令检查;TCP:通过建立 TCP 连接检查。</p>
|
|
37111
37126
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37112
37127
|
:rtype: str
|
|
37113
37128
|
"""
|
|
@@ -37119,7 +37134,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37119
37134
|
|
|
37120
37135
|
@property
|
|
37121
37136
|
def InitialDelaySeconds(self):
|
|
37122
|
-
r"""
|
|
37137
|
+
r"""<p>容器延时启动健康检查的时间,单位秒。</p>
|
|
37123
37138
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37124
37139
|
:rtype: int
|
|
37125
37140
|
"""
|
|
@@ -37131,7 +37146,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37131
37146
|
|
|
37132
37147
|
@property
|
|
37133
37148
|
def TimeoutSeconds(self):
|
|
37134
|
-
r"""
|
|
37149
|
+
r"""<p>每次健康检查响应的最大超时时间,单位秒。</p>
|
|
37135
37150
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37136
37151
|
:rtype: int
|
|
37137
37152
|
"""
|
|
@@ -37143,7 +37158,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37143
37158
|
|
|
37144
37159
|
@property
|
|
37145
37160
|
def PeriodSeconds(self):
|
|
37146
|
-
r"""
|
|
37161
|
+
r"""<p>进行健康检查的时间间隔,单位秒。</p>
|
|
37147
37162
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37148
37163
|
:rtype: int
|
|
37149
37164
|
"""
|
|
@@ -37155,7 +37170,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37155
37170
|
|
|
37156
37171
|
@property
|
|
37157
37172
|
def SuccessThreshold(self):
|
|
37158
|
-
r"""
|
|
37173
|
+
r"""<p>表示后端容器从失败到成功的连续健康检查成功次数。</p>
|
|
37159
37174
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37160
37175
|
:rtype: int
|
|
37161
37176
|
"""
|
|
@@ -37167,7 +37182,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37167
37182
|
|
|
37168
37183
|
@property
|
|
37169
37184
|
def FailureThreshold(self):
|
|
37170
|
-
r"""
|
|
37185
|
+
r"""<p>表示后端容器从成功到失败的连续健康检查成功次数。</p>
|
|
37171
37186
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37172
37187
|
:rtype: int
|
|
37173
37188
|
"""
|
|
@@ -37179,7 +37194,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37179
37194
|
|
|
37180
37195
|
@property
|
|
37181
37196
|
def Scheme(self):
|
|
37182
|
-
r"""HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS
|
|
37197
|
+
r"""<p>HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS。</p>
|
|
37183
37198
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37184
37199
|
:rtype: str
|
|
37185
37200
|
"""
|
|
@@ -37191,7 +37206,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37191
37206
|
|
|
37192
37207
|
@property
|
|
37193
37208
|
def Port(self):
|
|
37194
|
-
r"""
|
|
37209
|
+
r"""<p>健康检查端口,范围 1~65535 。</p>
|
|
37195
37210
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37196
37211
|
:rtype: int
|
|
37197
37212
|
"""
|
|
@@ -37203,7 +37218,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37203
37218
|
|
|
37204
37219
|
@property
|
|
37205
37220
|
def Path(self):
|
|
37206
|
-
r"""HTTP
|
|
37221
|
+
r"""<p>HTTP 健康检查接口的请求路径。</p>
|
|
37207
37222
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37208
37223
|
:rtype: str
|
|
37209
37224
|
"""
|
|
@@ -37215,7 +37230,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37215
37230
|
|
|
37216
37231
|
@property
|
|
37217
37232
|
def Command(self):
|
|
37218
|
-
r"""
|
|
37233
|
+
r"""<p>执行命令检查方式,执行的命令。</p>
|
|
37219
37234
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37220
37235
|
:rtype: list of str
|
|
37221
37236
|
"""
|
|
@@ -37227,7 +37242,7 @@ class HealthCheckSetting(AbstractModel):
|
|
|
37227
37242
|
|
|
37228
37243
|
@property
|
|
37229
37244
|
def Type(self):
|
|
37230
|
-
r"""TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s
|
|
37245
|
+
r"""<p>TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s 原生探针。</p>
|
|
37231
37246
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37232
37247
|
:rtype: str
|
|
37233
37248
|
"""
|
|
@@ -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.132
|
|
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
|