tencentcloud-sdk-python-cfw 3.1.32__tar.gz → 3.1.51__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.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/setup.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/v20190904/models.py +60 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cfw-3.1.51/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cfw-3.1.32/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/README.rst +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/v20190904/cfw_client_async.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.32 → tencentcloud_sdk_python_cfw-3.1.51}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.51
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.51,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cfw SDK for Python',
|
|
@@ -16255,6 +16255,10 @@ ANY:表示所有
|
|
|
16255
16255
|
:type CreateTime: str
|
|
16256
16256
|
:param _UpdateTime: 规则最近更新时间
|
|
16257
16257
|
:type UpdateTime: str
|
|
16258
|
+
:param _RulePartition: 规则分区,1最前分区,2中间分区,3最后分区
|
|
16259
|
+
:type RulePartition: int
|
|
16260
|
+
:param _Scope: 规则生效范围,SG安全组,LH轻量服务器
|
|
16261
|
+
:type Scope: str
|
|
16258
16262
|
"""
|
|
16259
16263
|
self._OrderIndex = None
|
|
16260
16264
|
self._RuleUuid = None
|
|
@@ -16289,6 +16293,8 @@ ANY:表示所有
|
|
|
16289
16293
|
self._DnsParseCount = None
|
|
16290
16294
|
self._CreateTime = None
|
|
16291
16295
|
self._UpdateTime = None
|
|
16296
|
+
self._RulePartition = None
|
|
16297
|
+
self._Scope = None
|
|
16292
16298
|
|
|
16293
16299
|
@property
|
|
16294
16300
|
def OrderIndex(self):
|
|
@@ -16691,6 +16697,28 @@ ANY:表示所有
|
|
|
16691
16697
|
def UpdateTime(self, UpdateTime):
|
|
16692
16698
|
self._UpdateTime = UpdateTime
|
|
16693
16699
|
|
|
16700
|
+
@property
|
|
16701
|
+
def RulePartition(self):
|
|
16702
|
+
r"""规则分区,1最前分区,2中间分区,3最后分区
|
|
16703
|
+
:rtype: int
|
|
16704
|
+
"""
|
|
16705
|
+
return self._RulePartition
|
|
16706
|
+
|
|
16707
|
+
@RulePartition.setter
|
|
16708
|
+
def RulePartition(self, RulePartition):
|
|
16709
|
+
self._RulePartition = RulePartition
|
|
16710
|
+
|
|
16711
|
+
@property
|
|
16712
|
+
def Scope(self):
|
|
16713
|
+
r"""规则生效范围,SG安全组,LH轻量服务器
|
|
16714
|
+
:rtype: str
|
|
16715
|
+
"""
|
|
16716
|
+
return self._Scope
|
|
16717
|
+
|
|
16718
|
+
@Scope.setter
|
|
16719
|
+
def Scope(self, Scope):
|
|
16720
|
+
self._Scope = Scope
|
|
16721
|
+
|
|
16694
16722
|
|
|
16695
16723
|
def _deserialize(self, params):
|
|
16696
16724
|
self._OrderIndex = params.get("OrderIndex")
|
|
@@ -16733,6 +16761,8 @@ ANY:表示所有
|
|
|
16733
16761
|
self._DnsParseCount._deserialize(params.get("DnsParseCount"))
|
|
16734
16762
|
self._CreateTime = params.get("CreateTime")
|
|
16735
16763
|
self._UpdateTime = params.get("UpdateTime")
|
|
16764
|
+
self._RulePartition = params.get("RulePartition")
|
|
16765
|
+
self._Scope = params.get("Scope")
|
|
16736
16766
|
memeber_set = set(params.keys())
|
|
16737
16767
|
for name, value in vars(self).items():
|
|
16738
16768
|
property_name = name[1:]
|
|
@@ -26534,6 +26564,8 @@ drop:拒绝
|
|
|
26534
26564
|
:type Enable: str
|
|
26535
26565
|
:param _Uid: 规则对应的唯一内部id
|
|
26536
26566
|
:type Uid: str
|
|
26567
|
+
:param _Scope: 规则生效范围,SG安全组,LH轻量服务器
|
|
26568
|
+
:type Scope: str
|
|
26537
26569
|
"""
|
|
26538
26570
|
self._SourceContent = None
|
|
26539
26571
|
self._SourceType = None
|
|
@@ -26548,6 +26580,7 @@ drop:拒绝
|
|
|
26548
26580
|
self._Id = None
|
|
26549
26581
|
self._Enable = None
|
|
26550
26582
|
self._Uid = None
|
|
26583
|
+
self._Scope = None
|
|
26551
26584
|
|
|
26552
26585
|
@property
|
|
26553
26586
|
def SourceContent(self):
|
|
@@ -26709,6 +26742,17 @@ drop:拒绝
|
|
|
26709
26742
|
def Uid(self, Uid):
|
|
26710
26743
|
self._Uid = Uid
|
|
26711
26744
|
|
|
26745
|
+
@property
|
|
26746
|
+
def Scope(self):
|
|
26747
|
+
r"""规则生效范围,SG安全组,LH轻量服务器
|
|
26748
|
+
:rtype: str
|
|
26749
|
+
"""
|
|
26750
|
+
return self._Scope
|
|
26751
|
+
|
|
26752
|
+
@Scope.setter
|
|
26753
|
+
def Scope(self, Scope):
|
|
26754
|
+
self._Scope = Scope
|
|
26755
|
+
|
|
26712
26756
|
|
|
26713
26757
|
def _deserialize(self, params):
|
|
26714
26758
|
self._SourceContent = params.get("SourceContent")
|
|
@@ -26724,6 +26768,7 @@ drop:拒绝
|
|
|
26724
26768
|
self._Id = params.get("Id")
|
|
26725
26769
|
self._Enable = params.get("Enable")
|
|
26726
26770
|
self._Uid = params.get("Uid")
|
|
26771
|
+
self._Scope = params.get("Scope")
|
|
26727
26772
|
memeber_set = set(params.keys())
|
|
26728
26773
|
for name, value in vars(self).items():
|
|
26729
26774
|
property_name = name[1:]
|
|
@@ -26765,6 +26810,8 @@ region:地域(ap-gaungzhou)
|
|
|
26765
26810
|
:type RuleUuid: int
|
|
26766
26811
|
:param _Sequence: 规则序号
|
|
26767
26812
|
:type Sequence: int
|
|
26813
|
+
:param _Scope: 规则生效范围,SG安全组,LH轻量服务器
|
|
26814
|
+
:type Scope: str
|
|
26768
26815
|
"""
|
|
26769
26816
|
self._SourceContent = None
|
|
26770
26817
|
self._DestContent = None
|
|
@@ -26772,6 +26819,7 @@ region:地域(ap-gaungzhou)
|
|
|
26772
26819
|
self._Description = None
|
|
26773
26820
|
self._RuleUuid = None
|
|
26774
26821
|
self._Sequence = None
|
|
26822
|
+
self._Scope = None
|
|
26775
26823
|
|
|
26776
26824
|
@property
|
|
26777
26825
|
def SourceContent(self):
|
|
@@ -26851,6 +26899,17 @@ region:地域(ap-gaungzhou)
|
|
|
26851
26899
|
def Sequence(self, Sequence):
|
|
26852
26900
|
self._Sequence = Sequence
|
|
26853
26901
|
|
|
26902
|
+
@property
|
|
26903
|
+
def Scope(self):
|
|
26904
|
+
r"""规则生效范围,SG安全组,LH轻量服务器
|
|
26905
|
+
:rtype: str
|
|
26906
|
+
"""
|
|
26907
|
+
return self._Scope
|
|
26908
|
+
|
|
26909
|
+
@Scope.setter
|
|
26910
|
+
def Scope(self, Scope):
|
|
26911
|
+
self._Scope = Scope
|
|
26912
|
+
|
|
26854
26913
|
|
|
26855
26914
|
def _deserialize(self, params):
|
|
26856
26915
|
self._SourceContent = params.get("SourceContent")
|
|
@@ -26859,6 +26918,7 @@ region:地域(ap-gaungzhou)
|
|
|
26859
26918
|
self._Description = params.get("Description")
|
|
26860
26919
|
self._RuleUuid = params.get("RuleUuid")
|
|
26861
26920
|
self._Sequence = params.get("Sequence")
|
|
26921
|
+
self._Scope = params.get("Scope")
|
|
26862
26922
|
memeber_set = set(params.keys())
|
|
26863
26923
|
for name, value in vars(self).items():
|
|
26864
26924
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.51
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.32
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|