tencentcloud-sdk-python-cfw 3.0.1220__tar.gz → 3.0.1225__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.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/setup.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/cfw/v20190904/models.py +70 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cfw-3.0.1225/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cfw-3.0.1220/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1220 → tencentcloud-sdk-python-cfw-3.0.1225}/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.1225"],
|
|
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
|
|
|
@@ -4951,6 +4951,76 @@ class DeleteNatFwInstanceResponse(AbstractModel):
|
|
|
4951
4951
|
self._RequestId = params.get("RequestId")
|
|
4952
4952
|
|
|
4953
4953
|
|
|
4954
|
+
class DeleteRemoteAccessDomainRequest(AbstractModel):
|
|
4955
|
+
"""DeleteRemoteAccessDomain请求参数结构体
|
|
4956
|
+
|
|
4957
|
+
"""
|
|
4958
|
+
|
|
4959
|
+
def __init__(self):
|
|
4960
|
+
r"""
|
|
4961
|
+
:param _AccessDomainList: 域名列表
|
|
4962
|
+
:type AccessDomainList: list of str
|
|
4963
|
+
"""
|
|
4964
|
+
self._AccessDomainList = None
|
|
4965
|
+
|
|
4966
|
+
@property
|
|
4967
|
+
def AccessDomainList(self):
|
|
4968
|
+
return self._AccessDomainList
|
|
4969
|
+
|
|
4970
|
+
@AccessDomainList.setter
|
|
4971
|
+
def AccessDomainList(self, AccessDomainList):
|
|
4972
|
+
self._AccessDomainList = AccessDomainList
|
|
4973
|
+
|
|
4974
|
+
|
|
4975
|
+
def _deserialize(self, params):
|
|
4976
|
+
self._AccessDomainList = params.get("AccessDomainList")
|
|
4977
|
+
memeber_set = set(params.keys())
|
|
4978
|
+
for name, value in vars(self).items():
|
|
4979
|
+
property_name = name[1:]
|
|
4980
|
+
if property_name in memeber_set:
|
|
4981
|
+
memeber_set.remove(property_name)
|
|
4982
|
+
if len(memeber_set) > 0:
|
|
4983
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4984
|
+
|
|
4985
|
+
|
|
4986
|
+
|
|
4987
|
+
class DeleteRemoteAccessDomainResponse(AbstractModel):
|
|
4988
|
+
"""DeleteRemoteAccessDomain返回参数结构体
|
|
4989
|
+
|
|
4990
|
+
"""
|
|
4991
|
+
|
|
4992
|
+
def __init__(self):
|
|
4993
|
+
r"""
|
|
4994
|
+
:param _Status: 状态值 0:删除成功,非 0:删除失败
|
|
4995
|
+
:type Status: int
|
|
4996
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4997
|
+
:type RequestId: str
|
|
4998
|
+
"""
|
|
4999
|
+
self._Status = None
|
|
5000
|
+
self._RequestId = None
|
|
5001
|
+
|
|
5002
|
+
@property
|
|
5003
|
+
def Status(self):
|
|
5004
|
+
return self._Status
|
|
5005
|
+
|
|
5006
|
+
@Status.setter
|
|
5007
|
+
def Status(self, Status):
|
|
5008
|
+
self._Status = Status
|
|
5009
|
+
|
|
5010
|
+
@property
|
|
5011
|
+
def RequestId(self):
|
|
5012
|
+
return self._RequestId
|
|
5013
|
+
|
|
5014
|
+
@RequestId.setter
|
|
5015
|
+
def RequestId(self, RequestId):
|
|
5016
|
+
self._RequestId = RequestId
|
|
5017
|
+
|
|
5018
|
+
|
|
5019
|
+
def _deserialize(self, params):
|
|
5020
|
+
self._Status = params.get("Status")
|
|
5021
|
+
self._RequestId = params.get("RequestId")
|
|
5022
|
+
|
|
5023
|
+
|
|
4954
5024
|
class DeleteResourceGroupRequest(AbstractModel):
|
|
4955
5025
|
"""DeleteResourceGroup请求参数结构体
|
|
4956
5026
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1225
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1220
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|