Skip to content

Commit 0e7035d

Browse files
committed
Update API DescribeDefenseRules: add response parameters Body.Rules.$.ActionExternal.
1 parent 37de509 commit 0e7035d

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

waf-openapi-20211001/ChangeLog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2025-03-27 Version: 5.1.1
2+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.ActionExternal.
3+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.Description.
4+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.DetailRuleIds.
5+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.ExternalInfo.
6+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.GmtCreate.
7+
- Update API DescribeDefenseRules: add response parameters Body.Rules.$.RuleType.
8+
9+
110
2025-03-27 Version: 5.1.0
211
- Support API DescribeNetworkFlowTimeSeriesMetric.
312
- Support API DescribeNetworkFlowTopNMetric.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.1.0'
1+
__version__ = '5.1.1'

waf-openapi-20211001/alibabacloud_waf_openapi20211001/models.py

+36
Original file line numberDiff line numberDiff line change
@@ -13535,15 +13535,22 @@ def from_map(self, m: dict = None):
1353513535
class DescribeDefenseRulesResponseBodyRules(TeaModel):
1353613536
def __init__(
1353713537
self,
13538+
action_external: str = None,
1353813539
config: str = None,
1353913540
defense_origin: str = None,
1354013541
defense_scene: str = None,
13542+
description: str = None,
13543+
detail_rule_ids: str = None,
13544+
external_info: str = None,
13545+
gmt_create: int = None,
1354113546
gmt_modified: int = None,
1354213547
rule_id: int = None,
1354313548
rule_name: str = None,
13549+
rule_type: str = None,
1354413550
status: int = None,
1354513551
template_id: int = None,
1354613552
):
13553+
self.action_external = action_external
1354713554
# The details of the protection rule. The value is a string that contains multiple parameters in the JSON format. For more information, see the "**Rule parameters**" section in the [CreateDefenseRule](~~CreateDefenseRule~~) topic.
1354813555
self.config = config
1354913556
# The origin of the protection rule. Valid values:
@@ -13567,12 +13574,17 @@ def __init__(
1356713574
# * **dlp**: the data leakage prevention module.
1356813575
# * **custom_response_block**: the custom response module.
1356913576
self.defense_scene = defense_scene
13577+
self.description = description
13578+
self.detail_rule_ids = detail_rule_ids
13579+
self.external_info = external_info
13580+
self.gmt_create = gmt_create
1357013581
# The most recent time when the protection rule was modified.
1357113582
self.gmt_modified = gmt_modified
1357213583
# The ID of the protection rule.
1357313584
self.rule_id = rule_id
1357413585
# The name of the protection rule.
1357513586
self.rule_name = rule_name
13587+
self.rule_type = rule_type
1357613588
# The status of the protection rule. Valid values:
1357713589
#
1357813590
# * **0:** disabled.
@@ -13590,18 +13602,30 @@ def to_map(self):
1359013602
return _map
1359113603

1359213604
result = dict()
13605+
if self.action_external is not None:
13606+
result['ActionExternal'] = self.action_external
1359313607
if self.config is not None:
1359413608
result['Config'] = self.config
1359513609
if self.defense_origin is not None:
1359613610
result['DefenseOrigin'] = self.defense_origin
1359713611
if self.defense_scene is not None:
1359813612
result['DefenseScene'] = self.defense_scene
13613+
if self.description is not None:
13614+
result['Description'] = self.description
13615+
if self.detail_rule_ids is not None:
13616+
result['DetailRuleIds'] = self.detail_rule_ids
13617+
if self.external_info is not None:
13618+
result['ExternalInfo'] = self.external_info
13619+
if self.gmt_create is not None:
13620+
result['GmtCreate'] = self.gmt_create
1359913621
if self.gmt_modified is not None:
1360013622
result['GmtModified'] = self.gmt_modified
1360113623
if self.rule_id is not None:
1360213624
result['RuleId'] = self.rule_id
1360313625
if self.rule_name is not None:
1360413626
result['RuleName'] = self.rule_name
13627+
if self.rule_type is not None:
13628+
result['RuleType'] = self.rule_type
1360513629
if self.status is not None:
1360613630
result['Status'] = self.status
1360713631
if self.template_id is not None:
@@ -13610,18 +13634,30 @@ def to_map(self):
1361013634

1361113635
def from_map(self, m: dict = None):
1361213636
m = m or dict()
13637+
if m.get('ActionExternal') is not None:
13638+
self.action_external = m.get('ActionExternal')
1361313639
if m.get('Config') is not None:
1361413640
self.config = m.get('Config')
1361513641
if m.get('DefenseOrigin') is not None:
1361613642
self.defense_origin = m.get('DefenseOrigin')
1361713643
if m.get('DefenseScene') is not None:
1361813644
self.defense_scene = m.get('DefenseScene')
13645+
if m.get('Description') is not None:
13646+
self.description = m.get('Description')
13647+
if m.get('DetailRuleIds') is not None:
13648+
self.detail_rule_ids = m.get('DetailRuleIds')
13649+
if m.get('ExternalInfo') is not None:
13650+
self.external_info = m.get('ExternalInfo')
13651+
if m.get('GmtCreate') is not None:
13652+
self.gmt_create = m.get('GmtCreate')
1361913653
if m.get('GmtModified') is not None:
1362013654
self.gmt_modified = m.get('GmtModified')
1362113655
if m.get('RuleId') is not None:
1362213656
self.rule_id = m.get('RuleId')
1362313657
if m.get('RuleName') is not None:
1362413658
self.rule_name = m.get('RuleName')
13659+
if m.get('RuleType') is not None:
13660+
self.rule_type = m.get('RuleType')
1362513661
if m.get('Status') is not None:
1362613662
self.status = m.get('Status')
1362713663
if m.get('TemplateId') is not None:

0 commit comments

Comments
 (0)