tencentcloud-sdk-python-cfw 3.0.1375__tar.gz → 3.0.1377__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-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/cfw/v20190904/models.py +17 -2
  5. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cfw-3.0.1377/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cfw-3.0.1375/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/cfw/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/cfw/v20190904/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
  13. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cfw-3.0.1375 → tencentcloud-sdk-python-cfw-3.0.1377}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cfw
3
- Version: 3.0.1375
3
+ Version: 3.0.1377
4
4
  Summary: Tencent Cloud Cfw 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-cfw',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1375"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1377"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cfw 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.1377'
@@ -9139,10 +9139,13 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
9139
9139
  r"""
9140
9140
  :param _Progress: 0-100,代表下发进度百分比
9141
9141
  :type Progress: int
9142
+ :param _UserStopped: 是否用户中止 用户中止返回true
9143
+ :type UserStopped: bool
9142
9144
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9143
9145
  :type RequestId: str
9144
9146
  """
9145
9147
  self._Progress = None
9148
+ self._UserStopped = None
9146
9149
  self._RequestId = None
9147
9150
 
9148
9151
  @property
@@ -9156,6 +9159,17 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
9156
9159
  def Progress(self, Progress):
9157
9160
  self._Progress = Progress
9158
9161
 
9162
+ @property
9163
+ def UserStopped(self):
9164
+ """是否用户中止 用户中止返回true
9165
+ :rtype: bool
9166
+ """
9167
+ return self._UserStopped
9168
+
9169
+ @UserStopped.setter
9170
+ def UserStopped(self, UserStopped):
9171
+ self._UserStopped = UserStopped
9172
+
9159
9173
  @property
9160
9174
  def RequestId(self):
9161
9175
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -9170,6 +9184,7 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
9170
9184
 
9171
9185
  def _deserialize(self, params):
9172
9186
  self._Progress = params.get("Progress")
9187
+ self._UserStopped = params.get("UserStopped")
9173
9188
  self._RequestId = params.get("RequestId")
9174
9189
 
9175
9190
 
@@ -23951,7 +23966,7 @@ drop:拒绝
23951
23966
  :type Description: str
23952
23967
  :param _OrderIndex: 规则顺序,-1表示最低,1表示最高,请勿和外层Type冲突(和外层的Type配合使用,当中间插入时,指定添加位置)
23953
23968
  :type OrderIndex: str
23954
- :param _Protocol: 协议;TCP/UDP/ICMP/ANY
23969
+ :param _Protocol: 协议;TCP/UDP/ICMP/ICMPv6/ANY
23955
23970
  :type Protocol: str
23956
23971
  :param _Port: 访问控制策略的端口。取值:
23957
23972
  -1/-1:全部端口
@@ -24074,7 +24089,7 @@ drop:拒绝
24074
24089
 
24075
24090
  @property
24076
24091
  def Protocol(self):
24077
- """协议;TCP/UDP/ICMP/ANY
24092
+ """协议;TCP/UDP/ICMP/ICMPv6/ANY
24078
24093
  :rtype: str
24079
24094
  """
24080
24095
  return self._Protocol
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cfw
3
- Version: 3.0.1375
3
+ Version: 3.0.1377
4
4
  Summary: Tencent Cloud Cfw 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.1377
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1375