alibabacloud-cloudfw20171207 7.1.0__py3-none-any.whl → 7.1.2__py3-none-any.whl
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.
Potentially problematic release.
This version of alibabacloud-cloudfw20171207 might be problematic. Click here for more details.
- alibabacloud_cloudfw20171207/__init__.py +1 -1
- alibabacloud_cloudfw20171207/client.py +4 -0
- alibabacloud_cloudfw20171207/models.py +12 -0
- {alibabacloud_cloudfw20171207-7.1.0.dist-info → alibabacloud_cloudfw20171207-7.1.2.dist-info}/METADATA +1 -1
- alibabacloud_cloudfw20171207-7.1.2.dist-info/RECORD +8 -0
- alibabacloud_cloudfw20171207-7.1.0.dist-info/RECORD +0 -8
- {alibabacloud_cloudfw20171207-7.1.0.dist-info → alibabacloud_cloudfw20171207-7.1.2.dist-info}/LICENSE +0 -0
- {alibabacloud_cloudfw20171207-7.1.0.dist-info → alibabacloud_cloudfw20171207-7.1.2.dist-info}/WHEEL +0 -0
- {alibabacloud_cloudfw20171207-7.1.0.dist-info → alibabacloud_cloudfw20171207-7.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '7.1.
|
|
1
|
+
__version__ = '7.1.2'
|
|
@@ -17871,6 +17871,8 @@ class Client(OpenApiClient):
|
|
|
17871
17871
|
query['Order'] = request.order
|
|
17872
17872
|
if not UtilClient.is_unset(request.page_size):
|
|
17873
17873
|
query['PageSize'] = request.page_size
|
|
17874
|
+
if not UtilClient.is_unset(request.rule_tag):
|
|
17875
|
+
query['RuleTag'] = request.rule_tag
|
|
17874
17876
|
if not UtilClient.is_unset(request.sort_key):
|
|
17875
17877
|
query['SortKey'] = request.sort_key
|
|
17876
17878
|
if not UtilClient.is_unset(request.source_ip):
|
|
@@ -17940,6 +17942,8 @@ class Client(OpenApiClient):
|
|
|
17940
17942
|
query['Order'] = request.order
|
|
17941
17943
|
if not UtilClient.is_unset(request.page_size):
|
|
17942
17944
|
query['PageSize'] = request.page_size
|
|
17945
|
+
if not UtilClient.is_unset(request.rule_tag):
|
|
17946
|
+
query['RuleTag'] = request.rule_tag
|
|
17943
17947
|
if not UtilClient.is_unset(request.sort_key):
|
|
17944
17948
|
query['SortKey'] = request.sort_key
|
|
17945
17949
|
if not UtilClient.is_unset(request.source_ip):
|
|
@@ -35816,6 +35816,7 @@ class DescribeVulnerabilityProtectedListRequest(TeaModel):
|
|
|
35816
35816
|
member_uid: str = None,
|
|
35817
35817
|
order: str = None,
|
|
35818
35818
|
page_size: str = None,
|
|
35819
|
+
rule_tag: str = None,
|
|
35819
35820
|
sort_key: str = None,
|
|
35820
35821
|
source_ip: str = None,
|
|
35821
35822
|
start_time: str = None,
|
|
@@ -35866,6 +35867,7 @@ class DescribeVulnerabilityProtectedListRequest(TeaModel):
|
|
|
35866
35867
|
self.order = order
|
|
35867
35868
|
# The number of entries to return on each page. Maximum value: 50.
|
|
35868
35869
|
self.page_size = page_size
|
|
35870
|
+
self.rule_tag = rule_tag
|
|
35869
35871
|
# The sorting basis. Set the value to **attackCnt**, which indicates the number of attacks.
|
|
35870
35872
|
self.sort_key = sort_key
|
|
35871
35873
|
# The IP address of the access source.
|
|
@@ -35924,6 +35926,8 @@ class DescribeVulnerabilityProtectedListRequest(TeaModel):
|
|
|
35924
35926
|
result['Order'] = self.order
|
|
35925
35927
|
if self.page_size is not None:
|
|
35926
35928
|
result['PageSize'] = self.page_size
|
|
35929
|
+
if self.rule_tag is not None:
|
|
35930
|
+
result['RuleTag'] = self.rule_tag
|
|
35927
35931
|
if self.sort_key is not None:
|
|
35928
35932
|
result['SortKey'] = self.sort_key
|
|
35929
35933
|
if self.source_ip is not None:
|
|
@@ -35962,6 +35966,8 @@ class DescribeVulnerabilityProtectedListRequest(TeaModel):
|
|
|
35962
35966
|
self.order = m.get('Order')
|
|
35963
35967
|
if m.get('PageSize') is not None:
|
|
35964
35968
|
self.page_size = m.get('PageSize')
|
|
35969
|
+
if m.get('RuleTag') is not None:
|
|
35970
|
+
self.rule_tag = m.get('RuleTag')
|
|
35965
35971
|
if m.get('SortKey') is not None:
|
|
35966
35972
|
self.sort_key = m.get('SortKey')
|
|
35967
35973
|
if m.get('SourceIp') is not None:
|
|
@@ -36089,6 +36095,7 @@ class DescribeVulnerabilityProtectedListResponseBodyVulnList(TeaModel):
|
|
|
36089
36095
|
need_rule_class: int = None,
|
|
36090
36096
|
resource_cnt: int = None,
|
|
36091
36097
|
resource_list: List[DescribeVulnerabilityProtectedListResponseBodyVulnListResourceList] = None,
|
|
36098
|
+
rule_tag: str = None,
|
|
36092
36099
|
virtual_patche_ids: str = None,
|
|
36093
36100
|
vuln_key: str = None,
|
|
36094
36101
|
vuln_level: str = None,
|
|
@@ -36162,6 +36169,7 @@ class DescribeVulnerabilityProtectedListResponseBodyVulnList(TeaModel):
|
|
|
36162
36169
|
self.resource_cnt = resource_cnt
|
|
36163
36170
|
# The assets on which the vulnerability is detected.
|
|
36164
36171
|
self.resource_list = resource_list
|
|
36172
|
+
self.rule_tag = rule_tag
|
|
36165
36173
|
# The IDs of associated virtual patching policies.
|
|
36166
36174
|
self.virtual_patche_ids = virtual_patche_ids
|
|
36167
36175
|
# The code of the vulnerability.
|
|
@@ -36233,6 +36241,8 @@ class DescribeVulnerabilityProtectedListResponseBodyVulnList(TeaModel):
|
|
|
36233
36241
|
if self.resource_list is not None:
|
|
36234
36242
|
for k in self.resource_list:
|
|
36235
36243
|
result['ResourceList'].append(k.to_map() if k else None)
|
|
36244
|
+
if self.rule_tag is not None:
|
|
36245
|
+
result['RuleTag'] = self.rule_tag
|
|
36236
36246
|
if self.virtual_patche_ids is not None:
|
|
36237
36247
|
result['VirtualPatcheIds'] = self.virtual_patche_ids
|
|
36238
36248
|
if self.vuln_key is not None:
|
|
@@ -36284,6 +36294,8 @@ class DescribeVulnerabilityProtectedListResponseBodyVulnList(TeaModel):
|
|
|
36284
36294
|
for k in m.get('ResourceList'):
|
|
36285
36295
|
temp_model = DescribeVulnerabilityProtectedListResponseBodyVulnListResourceList()
|
|
36286
36296
|
self.resource_list.append(temp_model.from_map(k))
|
|
36297
|
+
if m.get('RuleTag') is not None:
|
|
36298
|
+
self.rule_tag = m.get('RuleTag')
|
|
36287
36299
|
if m.get('VirtualPatcheIds') is not None:
|
|
36288
36300
|
self.virtual_patche_ids = m.get('VirtualPatcheIds')
|
|
36289
36301
|
if m.get('VulnKey') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_cloudfw20171207/__init__.py,sha256=U-YkQfoed0WPE-gFJF0Trqn0kJbJKL71jdB_eCnYKLo,21
|
|
2
|
+
alibabacloud_cloudfw20171207/client.py,sha256=dFe1CCvO0-XxoBQqFZhzTbJu_S8c64D1Uxa999Tw8PM,1088266
|
|
3
|
+
alibabacloud_cloudfw20171207/models.py,sha256=8MvOKQSb-hoJBdBKMu_Xh3viZyql1eBnmKVmMp2wLXc,1584875
|
|
4
|
+
alibabacloud_cloudfw20171207-7.1.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_cloudfw20171207-7.1.2.dist-info/METADATA,sha256=sBW1eoloiJCJgQpdBH_ELN7d2T4bVGkVHSWusm614mU,2340
|
|
6
|
+
alibabacloud_cloudfw20171207-7.1.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_cloudfw20171207-7.1.2.dist-info/top_level.txt,sha256=rry_3PsvxYDan1V9ajGHg5R6j3f8NFiQdy-iZOzl8F4,29
|
|
8
|
+
alibabacloud_cloudfw20171207-7.1.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_cloudfw20171207/__init__.py,sha256=Y1EThHSG-Wtaf03g6rM8veOoOePuqz1KtjOFmsfJWBM,21
|
|
2
|
-
alibabacloud_cloudfw20171207/client.py,sha256=QKJsC7tgbxkiboGV0UhpLQbCJRvXFuDUFZ1dxGsPuuk,1088062
|
|
3
|
-
alibabacloud_cloudfw20171207/models.py,sha256=g938UxzO0Dk1fcDlH6BU4ys2LHBZ2yIAAvps4vgFPk0,1584409
|
|
4
|
-
alibabacloud_cloudfw20171207-7.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_cloudfw20171207-7.1.0.dist-info/METADATA,sha256=vP2-BTWRlM9G9NKZ-2ZRO2RNu_ZTOOeDJC1ss0-78j0,2340
|
|
6
|
-
alibabacloud_cloudfw20171207-7.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_cloudfw20171207-7.1.0.dist-info/top_level.txt,sha256=rry_3PsvxYDan1V9ajGHg5R6j3f8NFiQdy-iZOzl8F4,29
|
|
8
|
-
alibabacloud_cloudfw20171207-7.1.0.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_cloudfw20171207-7.1.0.dist-info → alibabacloud_cloudfw20171207-7.1.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|