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
94 changes: 94 additions & 0 deletions linter_exclusions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2175,18 +2175,58 @@ networkfabric controller create:
workload_er_connections:
rule_exclusions:
- option_length_too_long
is_workload_management_network_enabled:
rule_exclusions:
- option_length_too_long
networkfabric controller update:
parameters:
workload_er_connections:
rule_exclusions:
- option_length_too_long
rule_exclusions:
- missing_command_test_coverage
networkfabric fabric update:
rule_exclusions:
- missing_command_test_coverage
networkfabric rack create:
rule_exclusions:
- missing_command_test_coverage
networkfabric rack delete:
rule_exclusions:
- missing_command_test_coverage
networkfabric device create:
rule_exclusions:
- missing_command_test_coverage
networkfabric device delete:
rule_exclusions:
- missing_command_test_coverage
networkfabric interface create:
rule_exclusions:
- missing_command_test_coverage
networkfabric interface delete:
rule_exclusions:
- missing_command_test_coverage
networkfabric nni create:
parameters:
npb_static_route_configuration:
rule_exclusions:
- option_length_too_long
option_b_layer3_configuration:
rule_exclusions:
- option_length_too_long
networkfabric nni update:
parameters:
npb_static_route_configuration:
rule_exclusions:
- option_length_too_long
option_b_layer3_configuration:
rule_exclusions:
- option_length_too_long
rule_exclusions:
- missing_command_test_coverage
networkfabric l2domain update:
rule_exclusions:
- missing_command_test_coverage
networkfabric l3domain create:
parameters:
aggregate_route_configuration:
Expand All @@ -2201,11 +2241,65 @@ networkfabric l3domain create:
redistribute_static_routes:
rule_exclusions:
- option_length_too_long
networkfabric l3domain update:
parameters:
aggregate_route_configuration:
rule_exclusions:
- option_length_too_long
connected_subnet_route_policy:
rule_exclusions:
- option_length_too_long
redistribute_connected_subnets:
rule_exclusions:
- option_length_too_long
redistribute_static_routes:
rule_exclusions:
- option_length_too_long
rule_exclusions:
- missing_command_test_coverage
networkfabric internalnetwork create:
parameters:
static_route_configuration:
rule_exclusions:
- option_length_too_long
networkfabric internalnetwork update:
parameters:
static_route_configuration:
rule_exclusions:
- option_length_too_long
rule_exclusions:
- missing_command_test_coverage
networkfabric internetgateway update:
parameters:
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
networkfabric externalnetwork update:
rule_exclusions:
- missing_command_test_coverage
networkfabric ipextendedcommunity create:
parameters:
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
4 changes: 4 additions & 0 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

3.1.0
++++++
* GA Initial release.

1.0.0b2
++++++
* Updated latest swagger specification.
Expand Down
3 changes: 3 additions & 0 deletions src/managednetworkfabric/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ Below is a high-level overview of managednetworkfabric commands.
| az networkfabric fabric | Manage Network Fabric Resource. |
| az networkfabric interface | Manage Network Interface Resource. |
| az networkfabric internalnetwork | Manage Internal Network Resource. |
| az networkfabric internetgateway | Manage Internet Gateway Resource. |
| az networkfabric internetgatewayrule | Manage Internet Gateway Rule Resource. |
| az networkfabric ipcommunity | Manage Ip Community Resource. |
| az networkfabric ipextendedcommunity | Manage Ip Extended Community Resource. |
| az networkfabric ipprefix | Manage Ip Prefix Resource. |
| 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 @@ -13,4 +13,5 @@
from ._delete import *
from ._list import *
from ._show import *
from ._update import *
from ._wait import *
Loading