tencentcloud-sdk-python-cfw 3.1.83__tar.gz → 3.1.88__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_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/setup.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/v20190904/models.py +35 -20
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cfw-3.1.88/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cfw-3.1.83/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/README.rst +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/v20190904/cfw_client_async.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.83 → tencentcloud_sdk_python_cfw-3.1.88}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.88
|
|
4
4
|
Summary: Tencent Cloud Cfw 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.88
|
|
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-cfw',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.88,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cfw SDK for Python',
|
|
@@ -1033,26 +1033,28 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1033
1033
|
|
|
1034
1034
|
def __init__(self):
|
|
1035
1035
|
r"""
|
|
1036
|
-
:param _InstanceId:
|
|
1036
|
+
:param _InstanceId: <p>实例ID</p>
|
|
1037
1037
|
:type InstanceId: str
|
|
1038
|
-
:param _InstanceName:
|
|
1038
|
+
:param _InstanceName: <p>实例名称</p>
|
|
1039
1039
|
:type InstanceName: str
|
|
1040
|
-
:param _Type:
|
|
1040
|
+
:param _Type: <p>实例类型,3是cvm实例,4是clb实例,5是eni实例,6是云数据库</p>
|
|
1041
1041
|
:type Type: int
|
|
1042
|
-
:param _VpcId:
|
|
1042
|
+
:param _VpcId: <p>私有网络ID</p>
|
|
1043
1043
|
:type VpcId: str
|
|
1044
|
-
:param _VpcName:
|
|
1044
|
+
:param _VpcName: <p>私有网络名称</p>
|
|
1045
1045
|
:type VpcName: str
|
|
1046
|
-
:param _PublicIp:
|
|
1046
|
+
:param _PublicIp: <p>公网IP</p>
|
|
1047
1047
|
:type PublicIp: str
|
|
1048
|
-
:param _Ip:
|
|
1048
|
+
:param _Ip: <p>内网IP</p>
|
|
1049
1049
|
:type Ip: str
|
|
1050
|
-
:param _SecurityGroupCount:
|
|
1050
|
+
:param _SecurityGroupCount: <p>关联安全组数量</p>
|
|
1051
1051
|
:type SecurityGroupCount: int
|
|
1052
|
-
:param _SecurityGroupRuleCount:
|
|
1052
|
+
:param _SecurityGroupRuleCount: <p>关联安全组规则数量</p>
|
|
1053
1053
|
:type SecurityGroupRuleCount: int
|
|
1054
|
-
:param _CdbId:
|
|
1054
|
+
:param _CdbId: <p>关联数据库代理Id</p>
|
|
1055
1055
|
:type CdbId: str
|
|
1056
|
+
:param _TkeClusterId: <p>容器服务集群ID</p>
|
|
1057
|
+
:type TkeClusterId: str
|
|
1056
1058
|
"""
|
|
1057
1059
|
self._InstanceId = None
|
|
1058
1060
|
self._InstanceName = None
|
|
@@ -1064,10 +1066,11 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1064
1066
|
self._SecurityGroupCount = None
|
|
1065
1067
|
self._SecurityGroupRuleCount = None
|
|
1066
1068
|
self._CdbId = None
|
|
1069
|
+
self._TkeClusterId = None
|
|
1067
1070
|
|
|
1068
1071
|
@property
|
|
1069
1072
|
def InstanceId(self):
|
|
1070
|
-
r"""
|
|
1073
|
+
r"""<p>实例ID</p>
|
|
1071
1074
|
:rtype: str
|
|
1072
1075
|
"""
|
|
1073
1076
|
return self._InstanceId
|
|
@@ -1078,7 +1081,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1078
1081
|
|
|
1079
1082
|
@property
|
|
1080
1083
|
def InstanceName(self):
|
|
1081
|
-
r"""
|
|
1084
|
+
r"""<p>实例名称</p>
|
|
1082
1085
|
:rtype: str
|
|
1083
1086
|
"""
|
|
1084
1087
|
return self._InstanceName
|
|
@@ -1089,7 +1092,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1089
1092
|
|
|
1090
1093
|
@property
|
|
1091
1094
|
def Type(self):
|
|
1092
|
-
r"""
|
|
1095
|
+
r"""<p>实例类型,3是cvm实例,4是clb实例,5是eni实例,6是云数据库</p>
|
|
1093
1096
|
:rtype: int
|
|
1094
1097
|
"""
|
|
1095
1098
|
return self._Type
|
|
@@ -1100,7 +1103,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1100
1103
|
|
|
1101
1104
|
@property
|
|
1102
1105
|
def VpcId(self):
|
|
1103
|
-
r"""
|
|
1106
|
+
r"""<p>私有网络ID</p>
|
|
1104
1107
|
:rtype: str
|
|
1105
1108
|
"""
|
|
1106
1109
|
return self._VpcId
|
|
@@ -1111,7 +1114,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1111
1114
|
|
|
1112
1115
|
@property
|
|
1113
1116
|
def VpcName(self):
|
|
1114
|
-
r"""
|
|
1117
|
+
r"""<p>私有网络名称</p>
|
|
1115
1118
|
:rtype: str
|
|
1116
1119
|
"""
|
|
1117
1120
|
return self._VpcName
|
|
@@ -1122,7 +1125,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1122
1125
|
|
|
1123
1126
|
@property
|
|
1124
1127
|
def PublicIp(self):
|
|
1125
|
-
r"""
|
|
1128
|
+
r"""<p>公网IP</p>
|
|
1126
1129
|
:rtype: str
|
|
1127
1130
|
"""
|
|
1128
1131
|
return self._PublicIp
|
|
@@ -1133,7 +1136,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1133
1136
|
|
|
1134
1137
|
@property
|
|
1135
1138
|
def Ip(self):
|
|
1136
|
-
r"""
|
|
1139
|
+
r"""<p>内网IP</p>
|
|
1137
1140
|
:rtype: str
|
|
1138
1141
|
"""
|
|
1139
1142
|
return self._Ip
|
|
@@ -1144,7 +1147,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1144
1147
|
|
|
1145
1148
|
@property
|
|
1146
1149
|
def SecurityGroupCount(self):
|
|
1147
|
-
r"""
|
|
1150
|
+
r"""<p>关联安全组数量</p>
|
|
1148
1151
|
:rtype: int
|
|
1149
1152
|
"""
|
|
1150
1153
|
return self._SecurityGroupCount
|
|
@@ -1155,7 +1158,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1155
1158
|
|
|
1156
1159
|
@property
|
|
1157
1160
|
def SecurityGroupRuleCount(self):
|
|
1158
|
-
r"""
|
|
1161
|
+
r"""<p>关联安全组规则数量</p>
|
|
1159
1162
|
:rtype: int
|
|
1160
1163
|
"""
|
|
1161
1164
|
return self._SecurityGroupRuleCount
|
|
@@ -1166,7 +1169,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1166
1169
|
|
|
1167
1170
|
@property
|
|
1168
1171
|
def CdbId(self):
|
|
1169
|
-
r"""
|
|
1172
|
+
r"""<p>关联数据库代理Id</p>
|
|
1170
1173
|
:rtype: str
|
|
1171
1174
|
"""
|
|
1172
1175
|
return self._CdbId
|
|
@@ -1175,6 +1178,17 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1175
1178
|
def CdbId(self, CdbId):
|
|
1176
1179
|
self._CdbId = CdbId
|
|
1177
1180
|
|
|
1181
|
+
@property
|
|
1182
|
+
def TkeClusterId(self):
|
|
1183
|
+
r"""<p>容器服务集群ID</p>
|
|
1184
|
+
:rtype: str
|
|
1185
|
+
"""
|
|
1186
|
+
return self._TkeClusterId
|
|
1187
|
+
|
|
1188
|
+
@TkeClusterId.setter
|
|
1189
|
+
def TkeClusterId(self, TkeClusterId):
|
|
1190
|
+
self._TkeClusterId = TkeClusterId
|
|
1191
|
+
|
|
1178
1192
|
|
|
1179
1193
|
def _deserialize(self, params):
|
|
1180
1194
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1187,6 +1201,7 @@ class AssociatedInstanceInfo(AbstractModel):
|
|
|
1187
1201
|
self._SecurityGroupCount = params.get("SecurityGroupCount")
|
|
1188
1202
|
self._SecurityGroupRuleCount = params.get("SecurityGroupRuleCount")
|
|
1189
1203
|
self._CdbId = params.get("CdbId")
|
|
1204
|
+
self._TkeClusterId = params.get("TkeClusterId")
|
|
1190
1205
|
memeber_set = set(params.keys())
|
|
1191
1206
|
for name, value in vars(self).items():
|
|
1192
1207
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.88
|
|
4
4
|
Summary: Tencent Cloud Cfw 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.88
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.88
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.83
|
|
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
|