tencentcloud-sdk-python-waf 3.0.1265__tar.gz → 3.0.1266__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-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/setup.py +1 -1
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/waf/v20180125/models.py +15 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud_sdk_python_waf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-waf-3.0.1266/tencentcloud_sdk_python_waf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-waf-3.0.1265/tencentcloud_sdk_python_waf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/README.rst +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/setup.cfg +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/waf/__init__.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/waf/v20180125/__init__.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/waf/v20180125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud/waf/v20180125/waf_client.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud_sdk_python_waf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud_sdk_python_waf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-waf-3.0.1265 → tencentcloud-sdk-python-waf-3.0.1266}/tencentcloud_sdk_python_waf.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-waf',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1266"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Waf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -19676,6 +19676,8 @@ https:使用https协议回源
|
|
|
19676
19676
|
:type GmSSLId: str
|
|
19677
19677
|
:param _Labels: 域名标签
|
|
19678
19678
|
:type Labels: list of str
|
|
19679
|
+
:param _ProbeStatus: 拨测状态。 0: 禁用拨测, 1: 启用拨测
|
|
19680
|
+
:type ProbeStatus: int
|
|
19679
19681
|
"""
|
|
19680
19682
|
self._Domain = None
|
|
19681
19683
|
self._DomainId = None
|
|
@@ -19727,6 +19729,7 @@ https:使用https协议回源
|
|
|
19727
19729
|
self._GmEncPrivateKey = None
|
|
19728
19730
|
self._GmSSLId = None
|
|
19729
19731
|
self._Labels = None
|
|
19732
|
+
self._ProbeStatus = None
|
|
19730
19733
|
|
|
19731
19734
|
@property
|
|
19732
19735
|
def Domain(self):
|
|
@@ -20323,6 +20326,17 @@ https:使用https协议回源
|
|
|
20323
20326
|
def Labels(self, Labels):
|
|
20324
20327
|
self._Labels = Labels
|
|
20325
20328
|
|
|
20329
|
+
@property
|
|
20330
|
+
def ProbeStatus(self):
|
|
20331
|
+
"""拨测状态。 0: 禁用拨测, 1: 启用拨测
|
|
20332
|
+
:rtype: int
|
|
20333
|
+
"""
|
|
20334
|
+
return self._ProbeStatus
|
|
20335
|
+
|
|
20336
|
+
@ProbeStatus.setter
|
|
20337
|
+
def ProbeStatus(self, ProbeStatus):
|
|
20338
|
+
self._ProbeStatus = ProbeStatus
|
|
20339
|
+
|
|
20326
20340
|
|
|
20327
20341
|
def _deserialize(self, params):
|
|
20328
20342
|
self._Domain = params.get("Domain")
|
|
@@ -20380,6 +20394,7 @@ https:使用https协议回源
|
|
|
20380
20394
|
self._GmEncPrivateKey = params.get("GmEncPrivateKey")
|
|
20381
20395
|
self._GmSSLId = params.get("GmSSLId")
|
|
20382
20396
|
self._Labels = params.get("Labels")
|
|
20397
|
+
self._ProbeStatus = params.get("ProbeStatus")
|
|
20383
20398
|
memeber_set = set(params.keys())
|
|
20384
20399
|
for name, value in vars(self).items():
|
|
20385
20400
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1266
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1265
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|