Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 7 additions & 3 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
Release History
===============

10.0.0b1
++++++
* New preview CLI version for latest api 2026-01-15-preview.

9.1.1
++++++
* Fix CLI output formatting for `fabric` and `device` `resync-password` and `fabric` `rotate-certificate` commands to prevent duplicated nested error details in both successful and partial-success responses.

9.1.0
++++++
+++++
* Enables the following previously removed command/command groups:
* - `bootstrapdevice` and `bootstrapinterface` command groups that both support `list` and `show` operations.
* - `fabric` commands `resync-certificate` and `rotate-certificate` to support certificate resync and rotation operations on the fabric resource.
* - `device` command `resync-certificate` to support resync operations for certificates on the device resource.
* - `fabric` commands `resync-certificate` and `rotate-certificate` to support certificate operations on the fabric resource.
* - `device` command `resync-certificate` to support certificate resync on the device resource.

9.0.0
++++++
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from azure.cli.core.breaking_change import (
register_command_group_deprecate,
register_argument_deprecate,
register_required_flag_breaking_change,
)
# from azure.cli.core.breaking_change import (
# register_command_group_deprecate,
# register_argument_deprecate,
# register_required_flag_breaking_change,
# )

register_command_group_deprecate(
"networkfabric fabric identity", hide=True, target_version="9.0.x"
)
register_required_flag_breaking_change(
"networkfabric device upgrade", "--version", target_version="9.0.x"
)
register_argument_deprecate(
"networkfabric l3domain create", "--route-prefix-limit", target_version="9.0.x"
)
register_argument_deprecate(
"networkfabric l3domain update", "--route-prefix-limit", target_version="9.0.x"
)
# register_command_group_deprecate(
# "networkfabric fabric identity", hide=True, target_version="9.0.x"
# )
# register_required_flag_breaking_change(
# "networkfabric device upgrade", "--version", target_version="9.0.x"
# )
# register_argument_deprecate(
# "networkfabric l3domain create", "--route-prefix-limit", target_version="9.0.x"
# )
# register_argument_deprecate(
# "networkfabric l3domain update", "--route-prefix-limit", target_version="9.0.x"
# )
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class Create(AAZCommand):
"""

_aaz_info = {
"version": "2025-07-15",
"version": "2026-01-15-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -125,7 +125,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
options=["--device-role"],
arg_group="Properties",
help="Device Role",
enum={"CE": "CE", "ManagementSwitch": "ManagementSwitch", "NPB": "NPB", "ToR": "ToR"},
enum={"CE": "CE", "ManagementSwitch": "ManagementSwitch", "NPB": "NPB", "TerminalServer": "TerminalServer", "ToR": "ToR"},
)
_args_schema.dynamic_match_configurations = AAZListArg(
options=["--dynamic-match-configs", "--dynamic-match-configurations"],
Expand Down Expand Up @@ -783,7 +783,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class Delete(AAZCommand):
"""

_aaz_info = {
"version": "2025-07-15",
"version": "2026-01-15-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -145,7 +145,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class List(AAZCommand):
"""

_aaz_info = {
"version": "2025-07-15",
"version": "2026-01-15-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/providers/microsoft.managednetworkfabric/accesscontrollists", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/providers/microsoft.managednetworkfabric/accesscontrollists", "2026-01-15-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -115,7 +115,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down Expand Up @@ -614,7 +614,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class Show(AAZCommand):
"""

_aaz_info = {
"version": "2025-07-15",
"version": "2026-01-15-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -123,7 +123,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class Update(AAZCommand):
"""

_aaz_info = {
"version": "2025-07-15",
"version": "2026-01-15-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -117,7 +117,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
arg_group="Properties",
help="Device Role",
nullable=True,
enum={"CE": "CE", "ManagementSwitch": "ManagementSwitch", "NPB": "NPB", "ToR": "ToR"},
enum={"CE": "CE", "ManagementSwitch": "ManagementSwitch", "NPB": "NPB", "TerminalServer": "TerminalServer", "ToR": "ToR"},
)
_args_schema.dynamic_match_configurations = AAZListArg(
options=["--dynamic-match-configs", "--dynamic-match-configurations"],
Expand Down Expand Up @@ -746,7 +746,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand):

_aaz_info = {
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2025-07-15"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/accesscontrollists/{}", "2026-01-15-preview"],
]
}

Expand Down Expand Up @@ -119,7 +119,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2025-07-15",
"api-version", "2026-01-15-preview",
required=True,
),
}
Expand Down
Loading
Loading