tencentcloud-sdk-python-waf 3.0.1343__tar.gz → 3.0.1345__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.1343 → tencentcloud-sdk-python-waf-3.0.1345}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/setup.py +1 -1
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/waf/v20180125/models.py +15 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud_sdk_python_waf.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-waf-3.0.1345/tencentcloud_sdk_python_waf.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-waf-3.0.1343/tencentcloud_sdk_python_waf.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/README.rst +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/setup.cfg +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/waf/__init__.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/waf/v20180125/__init__.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/waf/v20180125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud/waf/v20180125/waf_client.py +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud_sdk_python_waf.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/tencentcloud_sdk_python_waf.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-waf-3.0.1343 → tencentcloud-sdk-python-waf-3.0.1345}/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.1345"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Waf SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -7766,10 +7766,13 @@ class CreatePostCLSFlowRequest(AbstractModel):
|
|
|
7766
7766
|
:type LogsetName: str
|
|
7767
7767
|
:param _LogType: 1-访问日志,2-攻击日志,默认为访问日志。
|
|
7768
7768
|
:type LogType: int
|
|
7769
|
+
:param _LogTopicName: 投递的CLS所在日志主题的名称,默认为 waf_post_logtopic
|
|
7770
|
+
:type LogTopicName: str
|
|
7769
7771
|
"""
|
|
7770
7772
|
self._CLSRegion = None
|
|
7771
7773
|
self._LogsetName = None
|
|
7772
7774
|
self._LogType = None
|
|
7775
|
+
self._LogTopicName = None
|
|
7773
7776
|
|
|
7774
7777
|
@property
|
|
7775
7778
|
def CLSRegion(self):
|
|
@@ -7804,11 +7807,23 @@ class CreatePostCLSFlowRequest(AbstractModel):
|
|
|
7804
7807
|
def LogType(self, LogType):
|
|
7805
7808
|
self._LogType = LogType
|
|
7806
7809
|
|
|
7810
|
+
@property
|
|
7811
|
+
def LogTopicName(self):
|
|
7812
|
+
"""投递的CLS所在日志主题的名称,默认为 waf_post_logtopic
|
|
7813
|
+
:rtype: str
|
|
7814
|
+
"""
|
|
7815
|
+
return self._LogTopicName
|
|
7816
|
+
|
|
7817
|
+
@LogTopicName.setter
|
|
7818
|
+
def LogTopicName(self, LogTopicName):
|
|
7819
|
+
self._LogTopicName = LogTopicName
|
|
7820
|
+
|
|
7807
7821
|
|
|
7808
7822
|
def _deserialize(self, params):
|
|
7809
7823
|
self._CLSRegion = params.get("CLSRegion")
|
|
7810
7824
|
self._LogsetName = params.get("LogsetName")
|
|
7811
7825
|
self._LogType = params.get("LogType")
|
|
7826
|
+
self._LogTopicName = params.get("LogTopicName")
|
|
7812
7827
|
memeber_set = set(params.keys())
|
|
7813
7828
|
for name, value in vars(self).items():
|
|
7814
7829
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1345
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1343
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|