tencentcloud-sdk-python-cfw 3.0.1216__tar.gz → 3.0.1236__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.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/setup.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/cfw/v20190904/cfw_client.py +46 -25
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/cfw/v20190904/models.py +1056 -249
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cfw-3.0.1236/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cfw-3.0.1216/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1216 → tencentcloud-sdk-python-cfw-3.0.1236}/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.1236"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cfw SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -624,6 +624,29 @@ class CfwClient(AbstractClient):
|
|
|
624
624
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
625
|
|
|
626
626
|
|
|
627
|
+
def DeleteRemoteAccessDomain(self, request):
|
|
628
|
+
"""删除远程运维域名
|
|
629
|
+
|
|
630
|
+
:param request: Request instance for DeleteRemoteAccessDomain.
|
|
631
|
+
:type request: :class:`tencentcloud.cfw.v20190904.models.DeleteRemoteAccessDomainRequest`
|
|
632
|
+
:rtype: :class:`tencentcloud.cfw.v20190904.models.DeleteRemoteAccessDomainResponse`
|
|
633
|
+
|
|
634
|
+
"""
|
|
635
|
+
try:
|
|
636
|
+
params = request._serialize()
|
|
637
|
+
headers = request.headers
|
|
638
|
+
body = self.call("DeleteRemoteAccessDomain", params, headers=headers)
|
|
639
|
+
response = json.loads(body)
|
|
640
|
+
model = models.DeleteRemoteAccessDomainResponse()
|
|
641
|
+
model._deserialize(response["Response"])
|
|
642
|
+
return model
|
|
643
|
+
except Exception as e:
|
|
644
|
+
if isinstance(e, TencentCloudSDKException):
|
|
645
|
+
raise
|
|
646
|
+
else:
|
|
647
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
648
|
+
|
|
649
|
+
|
|
627
650
|
def DeleteResourceGroup(self, request):
|
|
628
651
|
"""DeleteResourceGroup-资产中心资产组删除
|
|
629
652
|
|
|
@@ -693,31 +716,6 @@ class CfwClient(AbstractClient):
|
|
|
693
716
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
694
717
|
|
|
695
718
|
|
|
696
|
-
def DeleteVpcInstance(self, request):
|
|
697
|
-
"""接口废弃
|
|
698
|
-
|
|
699
|
-
删除防火墙实例
|
|
700
|
-
|
|
701
|
-
:param request: Request instance for DeleteVpcInstance.
|
|
702
|
-
:type request: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceRequest`
|
|
703
|
-
:rtype: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceResponse`
|
|
704
|
-
|
|
705
|
-
"""
|
|
706
|
-
try:
|
|
707
|
-
params = request._serialize()
|
|
708
|
-
headers = request.headers
|
|
709
|
-
body = self.call("DeleteVpcInstance", params, headers=headers)
|
|
710
|
-
response = json.loads(body)
|
|
711
|
-
model = models.DeleteVpcInstanceResponse()
|
|
712
|
-
model._deserialize(response["Response"])
|
|
713
|
-
return model
|
|
714
|
-
except Exception as e:
|
|
715
|
-
if isinstance(e, TencentCloudSDKException):
|
|
716
|
-
raise
|
|
717
|
-
else:
|
|
718
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
719
|
-
|
|
720
|
-
|
|
721
719
|
def DescribeAcLists(self, request):
|
|
722
720
|
"""访问控制列表
|
|
723
721
|
|
|
@@ -994,6 +992,29 @@ class CfwClient(AbstractClient):
|
|
|
994
992
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
995
993
|
|
|
996
994
|
|
|
995
|
+
def DescribeEnterpriseSecurityGroupRuleList(self, request):
|
|
996
|
+
"""查询新企业安全组规则 从node接口迁移 原接口DescribeSecurityGroupNewList
|
|
997
|
+
|
|
998
|
+
:param request: Request instance for DescribeEnterpriseSecurityGroupRuleList.
|
|
999
|
+
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeEnterpriseSecurityGroupRuleListRequest`
|
|
1000
|
+
:rtype: :class:`tencentcloud.cfw.v20190904.models.DescribeEnterpriseSecurityGroupRuleListResponse`
|
|
1001
|
+
|
|
1002
|
+
"""
|
|
1003
|
+
try:
|
|
1004
|
+
params = request._serialize()
|
|
1005
|
+
headers = request.headers
|
|
1006
|
+
body = self.call("DescribeEnterpriseSecurityGroupRuleList", params, headers=headers)
|
|
1007
|
+
response = json.loads(body)
|
|
1008
|
+
model = models.DescribeEnterpriseSecurityGroupRuleListResponse()
|
|
1009
|
+
model._deserialize(response["Response"])
|
|
1010
|
+
return model
|
|
1011
|
+
except Exception as e:
|
|
1012
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1013
|
+
raise
|
|
1014
|
+
else:
|
|
1015
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1016
|
+
|
|
1017
|
+
|
|
997
1018
|
def DescribeFwEdgeIps(self, request):
|
|
998
1019
|
"""串行防火墙IP开关列表
|
|
999
1020
|
|