You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class DescribeDefenseRulesResponseBodyRules(TeaModel):
13536
13536
def __init__(
13537
13537
self,
13538
+
action_external: str = None,
13538
13539
config: str = None,
13539
13540
defense_origin: str = None,
13540
13541
defense_scene: str = None,
13542
+
description: str = None,
13543
+
detail_rule_ids: str = None,
13544
+
external_info: str = None,
13545
+
gmt_create: int = None,
13541
13546
gmt_modified: int = None,
13542
13547
rule_id: int = None,
13543
13548
rule_name: str = None,
13549
+
rule_type: str = None,
13544
13550
status: int = None,
13545
13551
template_id: int = None,
13546
13552
):
13553
+
self.action_external = action_external
13547
13554
# 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.
13548
13555
self.config = config
13549
13556
# The origin of the protection rule. Valid values:
@@ -13567,12 +13574,17 @@ def __init__(
13567
13574
# * **dlp**: the data leakage prevention module.
13568
13575
# * **custom_response_block**: the custom response module.
13569
13576
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
13570
13581
# The most recent time when the protection rule was modified.
13571
13582
self.gmt_modified = gmt_modified
13572
13583
# The ID of the protection rule.
13573
13584
self.rule_id = rule_id
13574
13585
# The name of the protection rule.
13575
13586
self.rule_name = rule_name
13587
+
self.rule_type = rule_type
13576
13588
# The status of the protection rule. Valid values:
0 commit comments