Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
20 changes: 5 additions & 15 deletions linter_exclusions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2170,6 +2170,11 @@ networkcloud kubernetescluster agentpool wait:
kubernetes_cluster_name:
rule_exclusions:
- option_length_too_long
networkfabric acl create:
parameters:
dynamic_match_configurations:
rule_exclusions:
- option_length_too_long
networkfabric controller create:
parameters:
workload_er_connections:
Expand Down Expand Up @@ -2274,18 +2279,6 @@ networkfabric internetgateway update:
internet_gateway_rule_id:
rule_exclusions:
- option_length_too_long
networkfabric internetgatewayrule create:
rule_exclusions:
- missing_command_test_coverage
networkfabric internetgatewayrule delete:
rule_exclusions:
- missing_command_test_coverage
networkfabric internetgatewayrule list:
rule_exclusions:
- missing_command_test_coverage
networkfabric internetgatewayrule show:
rule_exclusions:
- missing_command_test_coverage
networkfabric internetgatewayrule update:
rule_exclusions:
- missing_command_test_coverage
Expand All @@ -2297,9 +2290,6 @@ networkfabric ipextendedcommunity create:
ip_extended_community_rules:
rule_exclusions:
- option_length_too_long
networkfabric npb show:
rule_exclusions:
- missing_command_test_coverage
notification-hub authorization-rule create:
parameters:
notification_hub_name:
Expand Down
5 changes: 5 additions & 0 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

3.2.0
++++++
* Supported ACL
* Added new parameter "defaultAction" in RoutePolicies and ACL

3.1.0
++++++
* GA Initial release.
Expand Down
2 changes: 1 addition & 1 deletion src/managednetworkfabric/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Below is a high-level overview of managednetworkfabric commands.

| Commands | Description|
| ------------- | ------------- |
| az networkfabric acl | Manage Access Control List Resource. |
| az networkfabric controller | Manage Network Fabric Controller Resource. |
| az networkfabric device | Manage Network Device Resource. |
| az networkfabric externalnetwork | Manage External Network Resource. |
Expand All @@ -35,6 +36,5 @@ Below is a high-level overview of managednetworkfabric commands.
| az networkfabric l2domain | Manage L2 Isolation Domain Resource. |
| az networkfabric l3domain | Manage L3 Isolation Domain Resource. |
| az networkfabric nni | Manage Network To Network Interconnect Resource. |
| az networkfabric npb | Manage Network Packet Broker Resource. |
| az networkfabric rack | Manage Network Rack Resource. |
| az networkfabric routepolicy | Manage Route Policy Resource. |
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@


@register_command_group(
"networkfabric npb",
"networkfabric acl",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Network Packet Broker Resource
"""Manage Access Control List Resource
"""
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._show import *
from ._wait import *
Loading