Skip to content

Commit

Permalink
regenerate firewall create
Browse files Browse the repository at this point in the history
  • Loading branch information
Pan-Qi committed Nov 8, 2024
1 parent 75b87ec commit 7cfcbf2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ def _build_schema_on_200_201(cls):
)
properties.ip_groups = AAZListType(
serialized_name="ipGroups",
flags={"read_only": True},
)
properties.management_ip_configuration = AAZObjectType(
serialized_name="managementIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ def _build_schema_on_200(cls):
)
properties.ip_groups = AAZListType(
serialized_name="ipGroups",
flags={"read_only": True},
)
properties.management_ip_configuration = AAZObjectType(
serialized_name="managementIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,7 @@ def _build_schema_azure_firewall_read(cls, _schema):
)
properties.ip_groups = AAZListType(
serialized_name="ipGroups",
flags={"read_only": True},
)
properties.management_ip_configuration = AAZObjectType(
serialized_name="managementIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ def _build_schema_on_200(cls):
)
properties.ip_groups = AAZListType(
serialized_name="ipGroups",
flags={"read_only": True},
)
properties.management_ip_configuration = AAZObjectType(
serialized_name="managementIpConfiguration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"network firewall policy rule-collection-group",
)
class __CMDGroup(AAZCommandGroup):
"""Manage and configure Azure firewall policy rule collection group.
"""Manage and configure Azure firewall policy rule-collection-group.
"""
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command_group(
"network firewall policy rule-collection-group collection",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage and configure Azure firewall policy rule collections in the rule collection group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
from ._delete import *
from ._show import *
from ._update import *
from ._wait import *
from ._wait import *
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@

@register_command_group(
"network firewall policy rule-collection-group draft collection",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage and configure Azure firewall policy rule collections in the rule collection group draft.
Currently, Azure Firewall policy support two kinds of rule collections which are Filter collection and NAT collection. There are three kinds of rules which are application rule, network rule and nat rule.
Currently, Azure Firewall policy support two kinds of rule collections which are Filter collection and NAT collection. There are three kinds of rules which are application rule, network rule and nat rule.\\
NAT collection support having a list of nat rule. Filter collection support including a list of rules(network rule or application rule) in it. But all of rules should be the same type.
"""
pass
Expand Down

0 comments on commit 7cfcbf2

Please sign in to comment.