Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/azure-cli/azure/cli/command_modules/network/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -1590,6 +1590,21 @@
crafted: true
"""

helps['network application-gateway waf-policy managed-rule exception'] = """
type: group
short-summary: Manage exceptions to allow a request to skip the managed rules when the condition is satisfied.
"""

helps['network application-gateway waf-policy managed-rule exception remove'] = """
type: command
short-summary: Remove all managed rule exceptions that are applied on a WAF policy managed rules.
"""

helps['network application-gateway waf-policy managed-rule exception list'] = """
type: command
short-summary: List all managed rule exceptions that are applied on a WAF policy managed rules.
"""

helps['network application-gateway waf-policy managed-rule exclusion'] = """
type: group
short-summary: Manage OWASP CRS exclusions that are applied on a WAF policy managed rules.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"network application-gateway waf-policy managed-rule exception",
)
class __CMDGroup(AAZCommandGroup):
"""Manage exceptions to allow a request to skip the managed rules when the condition is satisfied.
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
from ._add import *
Loading
Loading