Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e7f1be7
initial checking for 2025-07-15 stable CLI
idanielsteven Oct 3, 2025
819ead9
Merge branch 'Azure:main' into main
idanielsteven Oct 28, 2025
1afdd00
Moving managed network fabric cli to stable version.
idanielsteven Oct 28, 2025
a6aa5f0
updating history file
idanielsteven Oct 29, 2025
7db9d10
Merge branch 'Azure:main' into main
idanielsteven Feb 4, 2026
fc0ef79
Network Cloud CLI - updating History.rst with missing entry 4.0.0b2
idanielsteven Feb 4, 2026
990543b
Merge branch 'Azure:main' into main
idanielsteven Feb 24, 2026
54b7ccf
NetworkCloud CLI updates for 2026-01-01-preview
idanielsteven Feb 24, 2026
7f172b1
NetworkCloud CLI updates for 2026-01-01-preview
idanielsteven Feb 24, 2026
a84101a
NetworkCloud CLI updates for 2026-01-01-preview
idanielsteven Feb 25, 2026
a9e6677
NetworkCloud CLI updates for 2026-01-01-preview
idanielsteven Feb 27, 2026
b721011
NetworkCloud CLI updates for 2026-01-01-preview
idanielsteven Feb 27, 2026
e588afd
retrigger checks
idanielsteven Mar 9, 2026
f50f1ee
Merge branch 'Azure:main' into main
idanielsteven Mar 25, 2026
a78ab5d
Bugfix: Fixes the installation error that occurs with Azure CLI Corea…
idanielsteven Mar 25, 2026
4aebe15
Bugfix: Fixes the installation error that occurs with Azure CLI Corea…
idanielsteven Mar 25, 2026
724c529
Merge branch 'Azure:main' into main
idanielsteven Mar 26, 2026
2ad7b73
Managed Network Fabric CLI: enable bootstrap interface, bootstrap dev…
idanielsteven Mar 26, 2026
a2a5af3
Managed Network Fabric CLI: enable bootstrap interface, bootstrap dev…
idanielsteven Mar 26, 2026
3e7b6d8
Managed Network Fabric CLI: enable bootstrap interface, bootstrap dev…
idanielsteven Mar 26, 2026
5b54edf
Managed Network Fabric CLI: enable bootstrap interface, bootstrap dev…
idanielsteven Mar 26, 2026
323e26f
Merge branch 'Azure:main' into main
idanielsteven Mar 30, 2026
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
7 changes: 7 additions & 0 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Release History
===============

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.

9.0.0
++++++
* Updates this 2025-07-15 CLI to a stable version (9.0.0) from beta version (9.0.0b1).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,26 @@ def _build_arguments_schema(cls, *args, **kwargs):
required=True,
)

# define Arg Group "Body"

_args_schema = cls._args_schema
_args_schema.location = AAZResourceLocationArg(
arg_group="Body",
help="The geo-location where the resource lives",
required=True,
fmt=AAZResourceLocationArgFormat(
resource_group_arg="resource_group",
),
)
_args_schema.tags = AAZDictArg(
options=["--tags"],
arg_group="Body",
help="Resource tags.",
)

tags = cls._args_schema.tags
tags.Element = AAZStrArg()

# define Arg Group "Properties"

_args_schema = cls._args_schema
Expand Down Expand Up @@ -628,26 +648,6 @@ def _build_arguments_schema(cls, *args, **kwargs):

vlans = cls._args_schema.match_configurations.Element.match_conditions.Element.vlan_match_condition.vlans
vlans.Element = AAZStrArg()

# define Arg Group "Resource"

_args_schema = cls._args_schema
_args_schema.location = AAZResourceLocationArg(
arg_group="Resource",
help="The geo-location where the resource lives",
required=True,
fmt=AAZResourceLocationArgFormat(
resource_group_arg="resource_group",
),
)
_args_schema.tags = AAZDictArg(
options=["--tags"],
arg_group="Resource",
help="Resource tags.",
)

tags = cls._args_schema.tags
tags.Element = AAZStrArg()
return cls._args_schema

_args_control_plane_acl_port_condition_create = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,18 @@ def _build_arguments_schema(cls, *args, **kwargs):
required=True,
)

# define Arg Group "Body"

_args_schema = cls._args_schema
_args_schema.tags = AAZDictArg(
options=["--tags"],
arg_group="Body",
help="Resource tags.",
)

tags = cls._args_schema.tags
tags.Element = AAZStrArg()

# define Arg Group "Properties"

_args_schema = cls._args_schema
Expand Down Expand Up @@ -131,11 +143,6 @@ def _build_arguments_schema(cls, *args, **kwargs):
min_length=1,
),
)
_args_schema.tags = AAZDictArg(
options=["--tags"],
arg_group="Properties",
help="Resource tags.",
)

control_plane_acl_configuration = cls._args_schema.control_plane_acl_configuration
control_plane_acl_configuration.Element = AAZObjectArg()
Expand Down Expand Up @@ -607,9 +614,6 @@ def _build_arguments_schema(cls, *args, **kwargs):

vlans = cls._args_schema.match_configurations.Element.match_conditions.Element.vlan_match_condition.vlans
vlans.Element = AAZStrArg()

tags = cls._args_schema.tags
tags.Element = AAZStrArg()
return cls._args_schema

_args_control_plane_acl_port_condition_update = None
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(
"networkfabric bootstrapdevice",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Network Bootstrap Device Resource
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# --------------------------------------------------------------------------------------------
# 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 ._list import *
from ._show import *
from ._wait import *
Loading
Loading