tencentcloud-sdk-python-waf 3.0.1316__tar.gz → 3.0.1318__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.1316 → tencentcloud-sdk-python-waf-3.0.1318}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/setup.py +1 -1
  3. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/waf/v20180125/models.py +30 -0
  5. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud_sdk_python_waf.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-waf-3.0.1318/tencentcloud_sdk_python_waf.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-waf-3.0.1316/tencentcloud_sdk_python_waf.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/README.rst +0 -0
  9. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/waf/__init__.py +0 -0
  11. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/waf/v20180125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/waf/v20180125/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud/waf/v20180125/waf_client.py +0 -0
  14. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud_sdk_python_waf.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/tencentcloud_sdk_python_waf.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-waf-3.0.1316 → tencentcloud-sdk-python-waf-3.0.1318}/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.1316
3
+ Version: 3.0.1318
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.1316"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1318"],
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.1316'
17
+ __version__ = '3.0.1318'
@@ -24395,6 +24395,10 @@ class InstanceInfo(AbstractModel):
24395
24395
  :type BillingItem: str
24396
24396
  :param _FreeDelayFlag: 实例延期释放标识
24397
24397
  :type FreeDelayFlag: int
24398
+ :param _Last3MaxQPS: 最近3天最大qps
24399
+ :type Last3MaxQPS: int
24400
+ :param _Last3MaxBandwidth: 最近3天最大带宽
24401
+ :type Last3MaxBandwidth: int
24398
24402
  """
24399
24403
  self._InstanceId = None
24400
24404
  self._InstanceName = None
@@ -24437,6 +24441,8 @@ class InstanceInfo(AbstractModel):
24437
24441
  self._MiniExtendPkg = None
24438
24442
  self._BillingItem = None
24439
24443
  self._FreeDelayFlag = None
24444
+ self._Last3MaxQPS = None
24445
+ self._Last3MaxBandwidth = None
24440
24446
 
24441
24447
  @property
24442
24448
  def InstanceId(self):
@@ -24899,6 +24905,28 @@ class InstanceInfo(AbstractModel):
24899
24905
  def FreeDelayFlag(self, FreeDelayFlag):
24900
24906
  self._FreeDelayFlag = FreeDelayFlag
24901
24907
 
24908
+ @property
24909
+ def Last3MaxQPS(self):
24910
+ """最近3天最大qps
24911
+ :rtype: int
24912
+ """
24913
+ return self._Last3MaxQPS
24914
+
24915
+ @Last3MaxQPS.setter
24916
+ def Last3MaxQPS(self, Last3MaxQPS):
24917
+ self._Last3MaxQPS = Last3MaxQPS
24918
+
24919
+ @property
24920
+ def Last3MaxBandwidth(self):
24921
+ """最近3天最大带宽
24922
+ :rtype: int
24923
+ """
24924
+ return self._Last3MaxBandwidth
24925
+
24926
+ @Last3MaxBandwidth.setter
24927
+ def Last3MaxBandwidth(self, Last3MaxBandwidth):
24928
+ self._Last3MaxBandwidth = Last3MaxBandwidth
24929
+
24902
24930
 
24903
24931
  def _deserialize(self, params):
24904
24932
  self._InstanceId = params.get("InstanceId")
@@ -24962,6 +24990,8 @@ class InstanceInfo(AbstractModel):
24962
24990
  self._MiniExtendPkg._deserialize(params.get("MiniExtendPkg"))
24963
24991
  self._BillingItem = params.get("BillingItem")
24964
24992
  self._FreeDelayFlag = params.get("FreeDelayFlag")
24993
+ self._Last3MaxQPS = params.get("Last3MaxQPS")
24994
+ self._Last3MaxBandwidth = params.get("Last3MaxBandwidth")
24965
24995
  memeber_set = set(params.keys())
24966
24996
  for name, value in vars(self).items():
24967
24997
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-waf
3
- Version: 3.0.1316
3
+ Version: 3.0.1318
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.1318
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1316