tencentcloud-sdk-python-cfw 3.0.1198__tar.gz → 3.0.1204__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.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/setup.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/cfw/v20190904/models.py +15 -2
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cfw-3.0.1204/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cfw-3.0.1198/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1198 → tencentcloud-sdk-python-cfw-3.0.1204}/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.1204"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cfw SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5341,6 +5341,9 @@ class DescAcItem(AbstractModel):
|
|
|
5341
5341
|
:param _TargetName: 访问目的名称
|
|
5342
5342
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5343
5343
|
:type TargetName: str
|
|
5344
|
+
:param _LastHitTime: 规则最近命中时间
|
|
5345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5346
|
+
:type LastHitTime: str
|
|
5344
5347
|
"""
|
|
5345
5348
|
self._SourceContent = None
|
|
5346
5349
|
self._TargetContent = None
|
|
@@ -5373,6 +5376,7 @@ class DescAcItem(AbstractModel):
|
|
|
5373
5376
|
self._ParamTemplateId = None
|
|
5374
5377
|
self._SourceName = None
|
|
5375
5378
|
self._TargetName = None
|
|
5379
|
+
self._LastHitTime = None
|
|
5376
5380
|
|
|
5377
5381
|
@property
|
|
5378
5382
|
def SourceContent(self):
|
|
@@ -5622,6 +5626,14 @@ class DescAcItem(AbstractModel):
|
|
|
5622
5626
|
def TargetName(self, TargetName):
|
|
5623
5627
|
self._TargetName = TargetName
|
|
5624
5628
|
|
|
5629
|
+
@property
|
|
5630
|
+
def LastHitTime(self):
|
|
5631
|
+
return self._LastHitTime
|
|
5632
|
+
|
|
5633
|
+
@LastHitTime.setter
|
|
5634
|
+
def LastHitTime(self, LastHitTime):
|
|
5635
|
+
self._LastHitTime = LastHitTime
|
|
5636
|
+
|
|
5625
5637
|
|
|
5626
5638
|
def _deserialize(self, params):
|
|
5627
5639
|
self._SourceContent = params.get("SourceContent")
|
|
@@ -5660,6 +5672,7 @@ class DescAcItem(AbstractModel):
|
|
|
5660
5672
|
self._ParamTemplateId = params.get("ParamTemplateId")
|
|
5661
5673
|
self._SourceName = params.get("SourceName")
|
|
5662
5674
|
self._TargetName = params.get("TargetName")
|
|
5675
|
+
self._LastHitTime = params.get("LastHitTime")
|
|
5663
5676
|
memeber_set = set(params.keys())
|
|
5664
5677
|
for name, value in vars(self).items():
|
|
5665
5678
|
property_name = name[1:]
|
|
@@ -6366,9 +6379,9 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
|
6366
6379
|
:type DomainTemplateCount: int
|
|
6367
6380
|
:param _PortTemplateCount: 协议端口模板数量
|
|
6368
6381
|
:type PortTemplateCount: int
|
|
6369
|
-
:param _UsedTemplateCount:
|
|
6382
|
+
:param _UsedTemplateCount: 已使用的地址模板数
|
|
6370
6383
|
:type UsedTemplateCount: int
|
|
6371
|
-
:param _TemplateQuotaCount:
|
|
6384
|
+
:param _TemplateQuotaCount: 地址模板配额数量
|
|
6372
6385
|
:type TemplateQuotaCount: int
|
|
6373
6386
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6374
6387
|
:type RequestId: str
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1204
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1198
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|