tencentcloud-sdk-python-waf 3.0.1375__tar.gz → 3.0.1376__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/setup.py +1 -1
  3. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/waf/v20180125/models.py +45 -0
  5. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud_sdk_python_waf.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-waf-3.0.1376/tencentcloud_sdk_python_waf.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-waf-3.0.1375/tencentcloud_sdk_python_waf.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/README.rst +0 -0
  9. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/waf/__init__.py +0 -0
  11. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/waf/v20180125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/waf/v20180125/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud/waf/v20180125/waf_client.py +0 -0
  14. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud_sdk_python_waf.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud_sdk_python_waf.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-waf-3.0.1375 → tencentcloud-sdk-python-waf-3.0.1376}/tencentcloud_sdk_python_waf.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-waf
3
- Version: 3.0.1375
3
+ Version: 3.0.1376
4
4
  Summary: Tencent Cloud Waf SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1375"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1376"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Waf SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1375'
17
+ __version__ = '3.0.1376'
@@ -33734,6 +33734,51 @@ class ModifyInstanceAttackLogPostRequest(AbstractModel):
33734
33734
 
33735
33735
  """
33736
33736
 
33737
+ def __init__(self):
33738
+ r"""
33739
+ :param _InstanceId: 实例ID
33740
+ :type InstanceId: str
33741
+ :param _AttackLogPost: 攻击日志投递开关
33742
+ :type AttackLogPost: int
33743
+ """
33744
+ self._InstanceId = None
33745
+ self._AttackLogPost = None
33746
+
33747
+ @property
33748
+ def InstanceId(self):
33749
+ """实例ID
33750
+ :rtype: str
33751
+ """
33752
+ return self._InstanceId
33753
+
33754
+ @InstanceId.setter
33755
+ def InstanceId(self, InstanceId):
33756
+ self._InstanceId = InstanceId
33757
+
33758
+ @property
33759
+ def AttackLogPost(self):
33760
+ """攻击日志投递开关
33761
+ :rtype: int
33762
+ """
33763
+ return self._AttackLogPost
33764
+
33765
+ @AttackLogPost.setter
33766
+ def AttackLogPost(self, AttackLogPost):
33767
+ self._AttackLogPost = AttackLogPost
33768
+
33769
+
33770
+ def _deserialize(self, params):
33771
+ self._InstanceId = params.get("InstanceId")
33772
+ self._AttackLogPost = params.get("AttackLogPost")
33773
+ memeber_set = set(params.keys())
33774
+ for name, value in vars(self).items():
33775
+ property_name = name[1:]
33776
+ if property_name in memeber_set:
33777
+ memeber_set.remove(property_name)
33778
+ if len(memeber_set) > 0:
33779
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
33780
+
33781
+
33737
33782
 
33738
33783
  class ModifyInstanceAttackLogPostResponse(AbstractModel):
33739
33784
  """ModifyInstanceAttackLogPost返回参数结构体
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-waf
3
- Version: 3.0.1375
3
+ Version: 3.0.1376
4
4
  Summary: Tencent Cloud Waf SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1376
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1375