tencentcloud-sdk-python-teo 3.0.1460__tar.gz → 3.0.1466__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-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/setup.py +1 -1
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220901/models.py +15 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud_sdk_python_teo.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-teo-3.0.1466/tencentcloud_sdk_python_teo.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-teo-3.0.1460/tencentcloud_sdk_python_teo.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/README.rst +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/setup.cfg +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220106/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220106/errorcodes.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220106/models.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220106/teo_client.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220901/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220901/errorcodes.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud/teo/v20220901/teo_client.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud_sdk_python_teo.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud_sdk_python_teo.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-teo-3.0.1460 → tencentcloud-sdk-python-teo-3.0.1466}/tencentcloud_sdk_python_teo.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-teo',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1466,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Teo SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -40915,6 +40915,8 @@ class MultiPathGateway(AbstractModel):
|
|
|
40915
40915
|
:type RegionId: str
|
|
40916
40916
|
:param _Lines: 线路信息,当查询网关信息详情 DescribeMultiPathGateway 的时候会返回,当查询网关列表 DescribeMultiPathGateways 的时候不会返回。
|
|
40917
40917
|
:type Lines: list of MultiPathGatewayLine
|
|
40918
|
+
:param _NeedConfirm: 网关回源 IP 列表发生了变化是否需要重新确认,取值有:<li>true:回源 IP 列表发生了变化,需要确认;</li><li>false:回源 IP 列表未发生变化,无需确认。</li>
|
|
40919
|
+
:type NeedConfirm: str
|
|
40918
40920
|
"""
|
|
40919
40921
|
self._GatewayId = None
|
|
40920
40922
|
self._GatewayName = None
|
|
@@ -40924,6 +40926,7 @@ class MultiPathGateway(AbstractModel):
|
|
|
40924
40926
|
self._GatewayIP = None
|
|
40925
40927
|
self._RegionId = None
|
|
40926
40928
|
self._Lines = None
|
|
40929
|
+
self._NeedConfirm = None
|
|
40927
40930
|
|
|
40928
40931
|
@property
|
|
40929
40932
|
def GatewayId(self):
|
|
@@ -41019,6 +41022,17 @@ class MultiPathGateway(AbstractModel):
|
|
|
41019
41022
|
def Lines(self, Lines):
|
|
41020
41023
|
self._Lines = Lines
|
|
41021
41024
|
|
|
41025
|
+
@property
|
|
41026
|
+
def NeedConfirm(self):
|
|
41027
|
+
r"""网关回源 IP 列表发生了变化是否需要重新确认,取值有:<li>true:回源 IP 列表发生了变化,需要确认;</li><li>false:回源 IP 列表未发生变化,无需确认。</li>
|
|
41028
|
+
:rtype: str
|
|
41029
|
+
"""
|
|
41030
|
+
return self._NeedConfirm
|
|
41031
|
+
|
|
41032
|
+
@NeedConfirm.setter
|
|
41033
|
+
def NeedConfirm(self, NeedConfirm):
|
|
41034
|
+
self._NeedConfirm = NeedConfirm
|
|
41035
|
+
|
|
41022
41036
|
|
|
41023
41037
|
def _deserialize(self, params):
|
|
41024
41038
|
self._GatewayId = params.get("GatewayId")
|
|
@@ -41034,6 +41048,7 @@ class MultiPathGateway(AbstractModel):
|
|
|
41034
41048
|
obj = MultiPathGatewayLine()
|
|
41035
41049
|
obj._deserialize(item)
|
|
41036
41050
|
self._Lines.append(obj)
|
|
41051
|
+
self._NeedConfirm = params.get("NeedConfirm")
|
|
41037
41052
|
memeber_set = set(params.keys())
|
|
41038
41053
|
for name, value in vars(self).items():
|
|
41039
41054
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1466
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1460
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|