tencentcloud-sdk-python-cfw 3.0.1223__tar.gz → 3.0.1227__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.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/setup.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/cfw/v20190904/cfw_client.py +0 -25
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/cfw/v20190904/models.py +0 -31
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cfw-3.0.1227/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cfw-3.0.1223/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1223 → tencentcloud-sdk-python-cfw-3.0.1227}/tencentcloud_sdk_python_cfw.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-cfw',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1227"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cfw SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -716,31 +716,6 @@ class CfwClient(AbstractClient):
|
|
|
716
716
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
717
717
|
|
|
718
718
|
|
|
719
|
-
def DeleteVpcInstance(self, request):
|
|
720
|
-
"""接口废弃
|
|
721
|
-
|
|
722
|
-
删除防火墙实例
|
|
723
|
-
|
|
724
|
-
:param request: Request instance for DeleteVpcInstance.
|
|
725
|
-
:type request: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceRequest`
|
|
726
|
-
:rtype: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceResponse`
|
|
727
|
-
|
|
728
|
-
"""
|
|
729
|
-
try:
|
|
730
|
-
params = request._serialize()
|
|
731
|
-
headers = request.headers
|
|
732
|
-
body = self.call("DeleteVpcInstance", params, headers=headers)
|
|
733
|
-
response = json.loads(body)
|
|
734
|
-
model = models.DeleteVpcInstanceResponse()
|
|
735
|
-
model._deserialize(response["Response"])
|
|
736
|
-
return model
|
|
737
|
-
except Exception as e:
|
|
738
|
-
if isinstance(e, TencentCloudSDKException):
|
|
739
|
-
raise
|
|
740
|
-
else:
|
|
741
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
742
|
-
|
|
743
|
-
|
|
744
719
|
def DescribeAcLists(self, request):
|
|
745
720
|
"""访问控制列表
|
|
746
721
|
|
|
@@ -5282,37 +5282,6 @@ class DeleteVpcFwGroupResponse(AbstractModel):
|
|
|
5282
5282
|
self._RequestId = params.get("RequestId")
|
|
5283
5283
|
|
|
5284
5284
|
|
|
5285
|
-
class DeleteVpcInstanceRequest(AbstractModel):
|
|
5286
|
-
"""DeleteVpcInstance请求参数结构体
|
|
5287
|
-
|
|
5288
|
-
"""
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
class DeleteVpcInstanceResponse(AbstractModel):
|
|
5292
|
-
"""DeleteVpcInstance返回参数结构体
|
|
5293
|
-
|
|
5294
|
-
"""
|
|
5295
|
-
|
|
5296
|
-
def __init__(self):
|
|
5297
|
-
r"""
|
|
5298
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5299
|
-
:type RequestId: str
|
|
5300
|
-
"""
|
|
5301
|
-
self._RequestId = None
|
|
5302
|
-
|
|
5303
|
-
@property
|
|
5304
|
-
def RequestId(self):
|
|
5305
|
-
return self._RequestId
|
|
5306
|
-
|
|
5307
|
-
@RequestId.setter
|
|
5308
|
-
def RequestId(self, RequestId):
|
|
5309
|
-
self._RequestId = RequestId
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
def _deserialize(self, params):
|
|
5313
|
-
self._RequestId = params.get("RequestId")
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
5285
|
class DescAcItem(AbstractModel):
|
|
5317
5286
|
"""访问控制列表对象
|
|
5318
5287
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1227
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1223
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|