tencentcloud-sdk-python-tsf 3.0.1284__tar.gz → 3.0.1291__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.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/setup.py +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/tsf/v20180326/errorcodes.py +18 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/tsf/v20180326/models.py +25 -8
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/tsf/v20180326/tsf_client.py +6 -2
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-tsf-3.0.1291/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-tsf-3.0.1284/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/README.rst +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/setup.cfg +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/tsf/__init__.py +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud/tsf/v20180326/__init__.py +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-tsf-3.0.1284 → tencentcloud-sdk-python-tsf-3.0.1291}/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==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1291"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Tsf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -98,6 +98,12 @@ FAILEDOPERATION_CONTAINERGROUPKUBERNETESAPIINVOKEERROR = 'FailedOperation.Contai
|
|
|
98
98
|
# 调用 kube-api-server 失败。
|
|
99
99
|
FAILEDOPERATION_CONTAINERGROUPKUBERNETESCONNECTERROR = 'FailedOperation.ContainergroupKubernetesConnectError'
|
|
100
100
|
|
|
101
|
+
# k8s集群可能处于异常状态,请删除或恢复k8s集群后,再进行操作
|
|
102
|
+
FAILEDOPERATION_CONTAINERGROUPKUBERNETESTKECLUSTERABNORMAL = 'FailedOperation.ContainergroupKubernetesTkeClusterAbnormal'
|
|
103
|
+
|
|
104
|
+
# 容器平台集群不可用,当前状态 %s
|
|
105
|
+
FAILEDOPERATION_CPCLUSTERUNAVAILABLE = 'FailedOperation.CpClusterUnavailable'
|
|
106
|
+
|
|
101
107
|
# 健康检查配置失败。
|
|
102
108
|
FAILEDOPERATION_CVMCAEMASTERHEALTHCHECKCONFIGERROR = 'FailedOperation.CvmCaeMasterHealthCheckConfigError'
|
|
103
109
|
|
|
@@ -911,6 +917,9 @@ INVALIDPARAMETERVALUE_LANEINFONOTEXISTENTRANCE = 'InvalidParameterValue.LaneInfo
|
|
|
911
917
|
# 泳道备注不能超过200个字符。
|
|
912
918
|
INVALIDPARAMETERVALUE_LANEINFOREMARKTOOLONG = 'InvalidParameterValue.LaneInfoRemarkTooLong'
|
|
913
919
|
|
|
920
|
+
# 全链路灰度规则ID错误
|
|
921
|
+
INVALIDPARAMETERVALUE_LANERULEIDINVALID = 'InvalidParameterValue.LaneRuleIdInvalid'
|
|
922
|
+
|
|
914
923
|
# 全链路灰度规则中的泳道不存在。
|
|
915
924
|
INVALIDPARAMETERVALUE_LANERULEINFONOTEXIST = 'InvalidParameterValue.LaneRuleInfoNotExist'
|
|
916
925
|
|
|
@@ -941,6 +950,15 @@ INVALIDPARAMETERVALUE_LANERULETAGNAMETOOLONG = 'InvalidParameterValue.LaneRuleTa
|
|
|
941
950
|
# 全链路灰度规则必须设置至少一个标签。
|
|
942
951
|
INVALIDPARAMETERVALUE_LANERULETAGNOTEMPTY = 'InvalidParameterValue.LaneRuleTagNotEmpty'
|
|
943
952
|
|
|
953
|
+
# 全链路灰度规则逻辑关系错误
|
|
954
|
+
INVALIDPARAMETERVALUE_LANERULETAGOPERATORINVALID = 'InvalidParameterValue.LaneRuleTagOperatorInvalid'
|
|
955
|
+
|
|
956
|
+
# 全链路灰度规则逻辑关系不能为空
|
|
957
|
+
INVALIDPARAMETERVALUE_LANERULETAGOPERATORNOTEMPTY = 'InvalidParameterValue.LaneRuleTagOperatorNotEmpty'
|
|
958
|
+
|
|
959
|
+
# 全链路灰度规则标签值不能为空
|
|
960
|
+
INVALIDPARAMETERVALUE_LANERULETAGVALUENOTEMPTY = 'InvalidParameterValue.LaneRuleTagValueNotEmpty'
|
|
961
|
+
|
|
944
962
|
# 全链路灰度规则标签值不能超过128个字符。
|
|
945
963
|
INVALIDPARAMETERVALUE_LANERULETAGVALUETOOLONG = 'InvalidParameterValue.LaneRuleTagValueTooLong'
|
|
946
964
|
|
|
@@ -1455,6 +1455,9 @@ class ApiGroupInfo(AbstractModel):
|
|
|
1455
1455
|
:param _ServiceNameKeyPosition: 微服务名参数位置,path,header或query,默认是path
|
|
1456
1456
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1457
1457
|
:type ServiceNameKeyPosition: str
|
|
1458
|
+
:param _GatewayInstanceIdList: 网关实例ID列表
|
|
1459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1460
|
+
:type GatewayInstanceIdList: list of str
|
|
1458
1461
|
"""
|
|
1459
1462
|
self._GroupId = None
|
|
1460
1463
|
self._GroupName = None
|
|
@@ -1474,6 +1477,7 @@ class ApiGroupInfo(AbstractModel):
|
|
|
1474
1477
|
self._ServiceNameKey = None
|
|
1475
1478
|
self._NamespaceNameKeyPosition = None
|
|
1476
1479
|
self._ServiceNameKeyPosition = None
|
|
1480
|
+
self._GatewayInstanceIdList = None
|
|
1477
1481
|
|
|
1478
1482
|
@property
|
|
1479
1483
|
def GroupId(self):
|
|
@@ -1691,6 +1695,18 @@ class ApiGroupInfo(AbstractModel):
|
|
|
1691
1695
|
def ServiceNameKeyPosition(self, ServiceNameKeyPosition):
|
|
1692
1696
|
self._ServiceNameKeyPosition = ServiceNameKeyPosition
|
|
1693
1697
|
|
|
1698
|
+
@property
|
|
1699
|
+
def GatewayInstanceIdList(self):
|
|
1700
|
+
"""网关实例ID列表
|
|
1701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1702
|
+
:rtype: list of str
|
|
1703
|
+
"""
|
|
1704
|
+
return self._GatewayInstanceIdList
|
|
1705
|
+
|
|
1706
|
+
@GatewayInstanceIdList.setter
|
|
1707
|
+
def GatewayInstanceIdList(self, GatewayInstanceIdList):
|
|
1708
|
+
self._GatewayInstanceIdList = GatewayInstanceIdList
|
|
1709
|
+
|
|
1694
1710
|
|
|
1695
1711
|
def _deserialize(self, params):
|
|
1696
1712
|
self._GroupId = params.get("GroupId")
|
|
@@ -1716,6 +1732,7 @@ class ApiGroupInfo(AbstractModel):
|
|
|
1716
1732
|
self._ServiceNameKey = params.get("ServiceNameKey")
|
|
1717
1733
|
self._NamespaceNameKeyPosition = params.get("NamespaceNameKeyPosition")
|
|
1718
1734
|
self._ServiceNameKeyPosition = params.get("ServiceNameKeyPosition")
|
|
1735
|
+
self._GatewayInstanceIdList = params.get("GatewayInstanceIdList")
|
|
1719
1736
|
memeber_set = set(params.keys())
|
|
1720
1737
|
for name, value in vars(self).items():
|
|
1721
1738
|
property_name = name[1:]
|
|
@@ -12917,7 +12934,7 @@ class CreateMicroserviceWithDetailRespResponse(AbstractModel):
|
|
|
12917
12934
|
|
|
12918
12935
|
def __init__(self):
|
|
12919
12936
|
r"""
|
|
12920
|
-
:param _Result:
|
|
12937
|
+
:param _Result: 微服务ID
|
|
12921
12938
|
:type Result: str
|
|
12922
12939
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12923
12940
|
:type RequestId: str
|
|
@@ -12927,7 +12944,7 @@ class CreateMicroserviceWithDetailRespResponse(AbstractModel):
|
|
|
12927
12944
|
|
|
12928
12945
|
@property
|
|
12929
12946
|
def Result(self):
|
|
12930
|
-
"""
|
|
12947
|
+
"""微服务ID
|
|
12931
12948
|
:rtype: str
|
|
12932
12949
|
"""
|
|
12933
12950
|
return self._Result
|
|
@@ -22890,7 +22907,7 @@ class DescribeGatewayAllGroupApisRequest(AbstractModel):
|
|
|
22890
22907
|
r"""
|
|
22891
22908
|
:param _GatewayDeployGroupId: 网关部署组ID
|
|
22892
22909
|
:type GatewayDeployGroupId: str
|
|
22893
|
-
:param _SearchWord:
|
|
22910
|
+
:param _SearchWord: 搜索关键字,支持命名空间名称或服务名称
|
|
22894
22911
|
:type SearchWord: str
|
|
22895
22912
|
"""
|
|
22896
22913
|
self._GatewayDeployGroupId = None
|
|
@@ -22909,7 +22926,7 @@ class DescribeGatewayAllGroupApisRequest(AbstractModel):
|
|
|
22909
22926
|
|
|
22910
22927
|
@property
|
|
22911
22928
|
def SearchWord(self):
|
|
22912
|
-
"""
|
|
22929
|
+
"""搜索关键字,支持命名空间名称或服务名称
|
|
22913
22930
|
:rtype: str
|
|
22914
22931
|
"""
|
|
22915
22932
|
return self._SearchWord
|
|
@@ -47890,7 +47907,7 @@ class SearchStdoutLogRequest(AbstractModel):
|
|
|
47890
47907
|
|
|
47891
47908
|
def __init__(self):
|
|
47892
47909
|
r"""
|
|
47893
|
-
:param _InstanceId: 机器实例ID
|
|
47910
|
+
:param _InstanceId: 机器实例ID, 和 实例 ID 二者必选其一,不能同时为空
|
|
47894
47911
|
:type InstanceId: str
|
|
47895
47912
|
:param _Limit: 单页请求配置数量,取值范围[1, 500],默认值为100
|
|
47896
47913
|
:type Limit: int
|
|
@@ -47898,7 +47915,7 @@ class SearchStdoutLogRequest(AbstractModel):
|
|
|
47898
47915
|
:type SearchWords: list of str
|
|
47899
47916
|
:param _StartTime: 查询起始时间
|
|
47900
47917
|
:type StartTime: str
|
|
47901
|
-
:param _GroupId: 部署组ID
|
|
47918
|
+
:param _GroupId: 部署组ID,和 InstanceId 二者必选其一,不能同时为空
|
|
47902
47919
|
:type GroupId: str
|
|
47903
47920
|
:param _EndTime: 查询结束时间
|
|
47904
47921
|
:type EndTime: str
|
|
@@ -47934,7 +47951,7 @@ class SearchStdoutLogRequest(AbstractModel):
|
|
|
47934
47951
|
|
|
47935
47952
|
@property
|
|
47936
47953
|
def InstanceId(self):
|
|
47937
|
-
"""机器实例ID
|
|
47954
|
+
"""机器实例ID, 和 实例 ID 二者必选其一,不能同时为空
|
|
47938
47955
|
:rtype: str
|
|
47939
47956
|
"""
|
|
47940
47957
|
return self._InstanceId
|
|
@@ -47978,7 +47995,7 @@ class SearchStdoutLogRequest(AbstractModel):
|
|
|
47978
47995
|
|
|
47979
47996
|
@property
|
|
47980
47997
|
def GroupId(self):
|
|
47981
|
-
"""部署组ID
|
|
47998
|
+
"""部署组ID,和 InstanceId 二者必选其一,不能同时为空
|
|
47982
47999
|
:rtype: str
|
|
47983
48000
|
"""
|
|
47984
48001
|
return self._GroupId
|
|
@@ -1362,7 +1362,9 @@ class TsfClient(AbstractClient):
|
|
|
1362
1362
|
|
|
1363
1363
|
|
|
1364
1364
|
def DeleteServerlessGroup(self, request):
|
|
1365
|
-
"""
|
|
1365
|
+
"""serverless 能力已下线。下线对应接口。
|
|
1366
|
+
|
|
1367
|
+
删除Serverless部署组
|
|
1366
1368
|
|
|
1367
1369
|
:param request: Request instance for DeleteServerlessGroup.
|
|
1368
1370
|
:type request: :class:`tencentcloud.tsf.v20180326.models.DeleteServerlessGroupRequest`
|
|
@@ -4312,7 +4314,9 @@ class TsfClient(AbstractClient):
|
|
|
4312
4314
|
|
|
4313
4315
|
|
|
4314
4316
|
def ReassociateBusinessLogConfig(self, request):
|
|
4315
|
-
"""
|
|
4317
|
+
"""后端服务已经删除这个接口, API 接口下线处理
|
|
4318
|
+
|
|
4319
|
+
重关联业务日志配置
|
|
4316
4320
|
|
|
4317
4321
|
:param request: Request instance for ReassociateBusinessLogConfig.
|
|
4318
4322
|
:type request: :class:`tencentcloud.tsf.v20180326.models.ReassociateBusinessLogConfigRequest`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1291
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1284
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|