alibabacloud-cloudfw20171207 4.1.0__py3-none-any.whl → 4.2.0__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/models.py +54 -0
- {alibabacloud_cloudfw20171207-4.1.0.dist-info → alibabacloud_cloudfw20171207-4.2.0.dist-info}/METADATA +2 -2
- alibabacloud_cloudfw20171207-4.2.0.dist-info/RECORD +8 -0
- alibabacloud_cloudfw20171207-4.1.0.dist-info/RECORD +0 -8
- {alibabacloud_cloudfw20171207-4.1.0.dist-info → alibabacloud_cloudfw20171207-4.2.0.dist-info}/LICENSE +0 -0
- {alibabacloud_cloudfw20171207-4.1.0.dist-info → alibabacloud_cloudfw20171207-4.2.0.dist-info}/WHEEL +0 -0
- {alibabacloud_cloudfw20171207-4.1.0.dist-info → alibabacloud_cloudfw20171207-4.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '4.
|
|
1
|
+
__version__ = '4.2.0'
|
|
@@ -10889,6 +10889,7 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
10889
10889
|
acl_status: str = None,
|
|
10890
10890
|
address_group_list: List[DescribeOutgoingDestinationIPResponseBodyDstIPListAddressGroupList] = None,
|
|
10891
10891
|
application_port_list: List[DescribeOutgoingDestinationIPResponseBodyDstIPListApplicationPortList] = None,
|
|
10892
|
+
asset_count: int = None,
|
|
10892
10893
|
category_class_id: str = None,
|
|
10893
10894
|
category_id: str = None,
|
|
10894
10895
|
category_name: str = None,
|
|
@@ -10898,7 +10899,9 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
10898
10899
|
has_acl_recommend: bool = None,
|
|
10899
10900
|
in_bytes: int = None,
|
|
10900
10901
|
is_mark_normal: bool = None,
|
|
10902
|
+
location_name: str = None,
|
|
10901
10903
|
out_bytes: int = None,
|
|
10904
|
+
private_asset_count: int = None,
|
|
10902
10905
|
rule_id: str = None,
|
|
10903
10906
|
rule_name: str = None,
|
|
10904
10907
|
security_reason: str = None,
|
|
@@ -10923,6 +10926,7 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
10923
10926
|
self.address_group_list = address_group_list
|
|
10924
10927
|
# The application ports.
|
|
10925
10928
|
self.application_port_list = application_port_list
|
|
10929
|
+
self.asset_count = asset_count
|
|
10926
10930
|
# The type of the tag. Valid values:
|
|
10927
10931
|
#
|
|
10928
10932
|
# * **Suspicious**\
|
|
@@ -10960,8 +10964,10 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
10960
10964
|
# * **true**\
|
|
10961
10965
|
# * **false**\
|
|
10962
10966
|
self.is_mark_normal = is_mark_normal
|
|
10967
|
+
self.location_name = location_name
|
|
10963
10968
|
# The outbound traffic. Unit: bytes.
|
|
10964
10969
|
self.out_bytes = out_bytes
|
|
10970
|
+
self.private_asset_count = private_asset_count
|
|
10965
10971
|
# The UUID of the access control policy.
|
|
10966
10972
|
self.rule_id = rule_id
|
|
10967
10973
|
# The name of the access control policy.
|
|
@@ -11015,6 +11021,8 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
11015
11021
|
if self.application_port_list is not None:
|
|
11016
11022
|
for k in self.application_port_list:
|
|
11017
11023
|
result['ApplicationPortList'].append(k.to_map() if k else None)
|
|
11024
|
+
if self.asset_count is not None:
|
|
11025
|
+
result['AssetCount'] = self.asset_count
|
|
11018
11026
|
if self.category_class_id is not None:
|
|
11019
11027
|
result['CategoryClassId'] = self.category_class_id
|
|
11020
11028
|
if self.category_id is not None:
|
|
@@ -11033,8 +11041,12 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
11033
11041
|
result['InBytes'] = self.in_bytes
|
|
11034
11042
|
if self.is_mark_normal is not None:
|
|
11035
11043
|
result['IsMarkNormal'] = self.is_mark_normal
|
|
11044
|
+
if self.location_name is not None:
|
|
11045
|
+
result['LocationName'] = self.location_name
|
|
11036
11046
|
if self.out_bytes is not None:
|
|
11037
11047
|
result['OutBytes'] = self.out_bytes
|
|
11048
|
+
if self.private_asset_count is not None:
|
|
11049
|
+
result['PrivateAssetCount'] = self.private_asset_count
|
|
11038
11050
|
if self.rule_id is not None:
|
|
11039
11051
|
result['RuleId'] = self.rule_id
|
|
11040
11052
|
if self.rule_name is not None:
|
|
@@ -11071,6 +11083,8 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
11071
11083
|
for k in m.get('ApplicationPortList'):
|
|
11072
11084
|
temp_model = DescribeOutgoingDestinationIPResponseBodyDstIPListApplicationPortList()
|
|
11073
11085
|
self.application_port_list.append(temp_model.from_map(k))
|
|
11086
|
+
if m.get('AssetCount') is not None:
|
|
11087
|
+
self.asset_count = m.get('AssetCount')
|
|
11074
11088
|
if m.get('CategoryClassId') is not None:
|
|
11075
11089
|
self.category_class_id = m.get('CategoryClassId')
|
|
11076
11090
|
if m.get('CategoryId') is not None:
|
|
@@ -11089,8 +11103,12 @@ class DescribeOutgoingDestinationIPResponseBodyDstIPList(TeaModel):
|
|
|
11089
11103
|
self.in_bytes = m.get('InBytes')
|
|
11090
11104
|
if m.get('IsMarkNormal') is not None:
|
|
11091
11105
|
self.is_mark_normal = m.get('IsMarkNormal')
|
|
11106
|
+
if m.get('LocationName') is not None:
|
|
11107
|
+
self.location_name = m.get('LocationName')
|
|
11092
11108
|
if m.get('OutBytes') is not None:
|
|
11093
11109
|
self.out_bytes = m.get('OutBytes')
|
|
11110
|
+
if m.get('PrivateAssetCount') is not None:
|
|
11111
|
+
self.private_asset_count = m.get('PrivateAssetCount')
|
|
11094
11112
|
if m.get('RuleId') is not None:
|
|
11095
11113
|
self.rule_id = m.get('RuleId')
|
|
11096
11114
|
if m.get('RuleName') is not None:
|
|
@@ -11433,6 +11451,8 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11433
11451
|
acl_status: str = None,
|
|
11434
11452
|
address_group_name: str = None,
|
|
11435
11453
|
address_group_uuid: str = None,
|
|
11454
|
+
application_name_list: List[str] = None,
|
|
11455
|
+
asset_count: int = None,
|
|
11436
11456
|
business: str = None,
|
|
11437
11457
|
category_class_id: str = None,
|
|
11438
11458
|
category_id: str = None,
|
|
@@ -11445,6 +11465,7 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11445
11465
|
is_mark_normal: bool = None,
|
|
11446
11466
|
organization: str = None,
|
|
11447
11467
|
out_bytes: int = None,
|
|
11468
|
+
private_asset_count: int = None,
|
|
11448
11469
|
rule_id: str = None,
|
|
11449
11470
|
rule_name: str = None,
|
|
11450
11471
|
security_reason: str = None,
|
|
@@ -11469,6 +11490,8 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11469
11490
|
self.address_group_name = address_group_name
|
|
11470
11491
|
# The UUID of the address book.
|
|
11471
11492
|
self.address_group_uuid = address_group_uuid
|
|
11493
|
+
self.application_name_list = application_name_list
|
|
11494
|
+
self.asset_count = asset_count
|
|
11472
11495
|
# The website service.
|
|
11473
11496
|
self.business = business
|
|
11474
11497
|
# The type of the tag. Valid values:
|
|
@@ -11512,6 +11535,7 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11512
11535
|
self.organization = organization
|
|
11513
11536
|
# The volume of outbound traffic.
|
|
11514
11537
|
self.out_bytes = out_bytes
|
|
11538
|
+
self.private_asset_count = private_asset_count
|
|
11515
11539
|
# The ID of the access control policy.
|
|
11516
11540
|
self.rule_id = rule_id
|
|
11517
11541
|
# The name of the access control policy.
|
|
@@ -11553,6 +11577,10 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11553
11577
|
result['AddressGroupName'] = self.address_group_name
|
|
11554
11578
|
if self.address_group_uuid is not None:
|
|
11555
11579
|
result['AddressGroupUUID'] = self.address_group_uuid
|
|
11580
|
+
if self.application_name_list is not None:
|
|
11581
|
+
result['ApplicationNameList'] = self.application_name_list
|
|
11582
|
+
if self.asset_count is not None:
|
|
11583
|
+
result['AssetCount'] = self.asset_count
|
|
11556
11584
|
if self.business is not None:
|
|
11557
11585
|
result['Business'] = self.business
|
|
11558
11586
|
if self.category_class_id is not None:
|
|
@@ -11577,6 +11605,8 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11577
11605
|
result['Organization'] = self.organization
|
|
11578
11606
|
if self.out_bytes is not None:
|
|
11579
11607
|
result['OutBytes'] = self.out_bytes
|
|
11608
|
+
if self.private_asset_count is not None:
|
|
11609
|
+
result['PrivateAssetCount'] = self.private_asset_count
|
|
11580
11610
|
if self.rule_id is not None:
|
|
11581
11611
|
result['RuleId'] = self.rule_id
|
|
11582
11612
|
if self.rule_name is not None:
|
|
@@ -11607,6 +11637,10 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11607
11637
|
self.address_group_name = m.get('AddressGroupName')
|
|
11608
11638
|
if m.get('AddressGroupUUID') is not None:
|
|
11609
11639
|
self.address_group_uuid = m.get('AddressGroupUUID')
|
|
11640
|
+
if m.get('ApplicationNameList') is not None:
|
|
11641
|
+
self.application_name_list = m.get('ApplicationNameList')
|
|
11642
|
+
if m.get('AssetCount') is not None:
|
|
11643
|
+
self.asset_count = m.get('AssetCount')
|
|
11610
11644
|
if m.get('Business') is not None:
|
|
11611
11645
|
self.business = m.get('Business')
|
|
11612
11646
|
if m.get('CategoryClassId') is not None:
|
|
@@ -11631,6 +11665,8 @@ class DescribeOutgoingDomainResponseBodyDomainList(TeaModel):
|
|
|
11631
11665
|
self.organization = m.get('Organization')
|
|
11632
11666
|
if m.get('OutBytes') is not None:
|
|
11633
11667
|
self.out_bytes = m.get('OutBytes')
|
|
11668
|
+
if m.get('PrivateAssetCount') is not None:
|
|
11669
|
+
self.private_asset_count = m.get('PrivateAssetCount')
|
|
11634
11670
|
if m.get('RuleId') is not None:
|
|
11635
11671
|
self.rule_id = m.get('RuleId')
|
|
11636
11672
|
if m.get('RuleName') is not None:
|
|
@@ -13533,6 +13569,9 @@ class DescribeRiskEventPayloadResponseBody(TeaModel):
|
|
|
13533
13569
|
dst_ip: str = None,
|
|
13534
13570
|
dst_port: int = None,
|
|
13535
13571
|
dst_vpc_id: str = None,
|
|
13572
|
+
hit_content_type: int = None,
|
|
13573
|
+
hit_to: int = None,
|
|
13574
|
+
parsed_content: str = None,
|
|
13536
13575
|
payload: str = None,
|
|
13537
13576
|
payload_len: int = None,
|
|
13538
13577
|
proto: str = None,
|
|
@@ -13549,6 +13588,9 @@ class DescribeRiskEventPayloadResponseBody(TeaModel):
|
|
|
13549
13588
|
self.dst_port = dst_port
|
|
13550
13589
|
# The destination VPC ID of the intrusion event.
|
|
13551
13590
|
self.dst_vpc_id = dst_vpc_id
|
|
13591
|
+
self.hit_content_type = hit_content_type
|
|
13592
|
+
self.hit_to = hit_to
|
|
13593
|
+
self.parsed_content = parsed_content
|
|
13552
13594
|
# The attack payload of the intrusion event.
|
|
13553
13595
|
self.payload = payload
|
|
13554
13596
|
# The length of the attack payload of the intrusion event.
|
|
@@ -13586,6 +13628,12 @@ class DescribeRiskEventPayloadResponseBody(TeaModel):
|
|
|
13586
13628
|
result['DstPort'] = self.dst_port
|
|
13587
13629
|
if self.dst_vpc_id is not None:
|
|
13588
13630
|
result['DstVpcId'] = self.dst_vpc_id
|
|
13631
|
+
if self.hit_content_type is not None:
|
|
13632
|
+
result['HitContentType'] = self.hit_content_type
|
|
13633
|
+
if self.hit_to is not None:
|
|
13634
|
+
result['HitTo'] = self.hit_to
|
|
13635
|
+
if self.parsed_content is not None:
|
|
13636
|
+
result['ParsedContent'] = self.parsed_content
|
|
13589
13637
|
if self.payload is not None:
|
|
13590
13638
|
result['Payload'] = self.payload
|
|
13591
13639
|
if self.payload_len is not None:
|
|
@@ -13614,6 +13662,12 @@ class DescribeRiskEventPayloadResponseBody(TeaModel):
|
|
|
13614
13662
|
self.dst_port = m.get('DstPort')
|
|
13615
13663
|
if m.get('DstVpcId') is not None:
|
|
13616
13664
|
self.dst_vpc_id = m.get('DstVpcId')
|
|
13665
|
+
if m.get('HitContentType') is not None:
|
|
13666
|
+
self.hit_content_type = m.get('HitContentType')
|
|
13667
|
+
if m.get('HitTo') is not None:
|
|
13668
|
+
self.hit_to = m.get('HitTo')
|
|
13669
|
+
if m.get('ParsedContent') is not None:
|
|
13670
|
+
self.parsed_content = m.get('ParsedContent')
|
|
13617
13671
|
if m.get('Payload') is not None:
|
|
13618
13672
|
self.payload = m.get('Payload')
|
|
13619
13673
|
if m.get('PayloadLen') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-cloudfw20171207
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.2.0
|
|
4
4
|
Summary: Alibaba Cloud Cloudfw (20171207) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -33,7 +33,7 @@ English | [简体中文](README-CN.md)
|
|
|
33
33
|
|
|
34
34
|
## Requirements
|
|
35
35
|
|
|
36
|
-
- Python >= 3.
|
|
36
|
+
- Python >= 3.7
|
|
37
37
|
|
|
38
38
|
## Installation
|
|
39
39
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_cloudfw20171207/__init__.py,sha256=gTh6GZub1Gxz539cnDJUpjnkqBuxLByN9jyLxdgyuVM,21
|
|
2
|
+
alibabacloud_cloudfw20171207/client.py,sha256=ywFsQgiCJ-3AUTF-IBDAjYuc60t-v0m6UVeHDSQu6ak,660372
|
|
3
|
+
alibabacloud_cloudfw20171207/models.py,sha256=FbNjMnOexOf5HEitRJVAFabUXfDBt9G1Ge11qNsJ1Ow,941315
|
|
4
|
+
alibabacloud_cloudfw20171207-4.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_cloudfw20171207-4.2.0.dist-info/METADATA,sha256=k8tqym-wSiUiWhTEzgaloIzctO7ZPuNQ5sYAIEXd8M4,2340
|
|
6
|
+
alibabacloud_cloudfw20171207-4.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_cloudfw20171207-4.2.0.dist-info/top_level.txt,sha256=rry_3PsvxYDan1V9ajGHg5R6j3f8NFiQdy-iZOzl8F4,29
|
|
8
|
+
alibabacloud_cloudfw20171207-4.2.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_cloudfw20171207/__init__.py,sha256=lxnje8P-maveQRzsNBMx8fMg2n4rtyrYtjzLXKjtYo8,21
|
|
2
|
-
alibabacloud_cloudfw20171207/client.py,sha256=ywFsQgiCJ-3AUTF-IBDAjYuc60t-v0m6UVeHDSQu6ak,660372
|
|
3
|
-
alibabacloud_cloudfw20171207/models.py,sha256=8eIzo2Gi_GiEdUfqYL3_fHHZrj9F_DE0ddR0-nlVz1k,938702
|
|
4
|
-
alibabacloud_cloudfw20171207-4.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_cloudfw20171207-4.1.0.dist-info/METADATA,sha256=GHPpNZiWJcojNcLmuenVkOqz7fz-XyryVcFLKFdQaL0,2340
|
|
6
|
-
alibabacloud_cloudfw20171207-4.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_cloudfw20171207-4.1.0.dist-info/top_level.txt,sha256=rry_3PsvxYDan1V9ajGHg5R6j3f8NFiQdy-iZOzl8F4,29
|
|
8
|
-
alibabacloud_cloudfw20171207-4.1.0.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_cloudfw20171207-4.1.0.dist-info → alibabacloud_cloudfw20171207-4.2.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|