Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Networkcloud v20240701 Stable api version - Azure cli extension changes #8311

Merged
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
Networkcloud v20240701 Stable api version - Azure cli extension changes
  • Loading branch information
priya shet committed Nov 22, 2024
commit 926bccd9b71dc66e1680835dfc7054a6b8080d5a
5 changes: 5 additions & 0 deletions src/networkcloud/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

2.0.0
++++++++
* This is the stable version of the CLI extension that supports NetworkCloud 2024-07-01 APIs.
* Additional validation is added to Cluster create and update commands for the containerUrl child property within the `--command-output-settings`.

2.0.0b7
++++++++
* This version requires a minimum of 2.66 Azure core CLI. See release notes for more details: https://github.com/MicrosoftDocs/azure-docs-cli/blob/main/docs-ref-conceptual/release-notes-azure-cli.md
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage Network Cloud resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud baremetalmachine",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage bare metal machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine cordon",
is_preview=True,
)
class Cordon(AAZCommand):
"""Cordon the provided bare metal machine's Kubernetes node.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine list",
is_preview=True,
)
class List(AAZCommand):
"""List bare metal machines in the provided resource group or subscription.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine power-off",
is_preview=True,
)
class PowerOff(AAZCommand):
"""Power off the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine reimage",
is_preview=True,
)
class Reimage(AAZCommand):
"""Reimage the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine replace",
is_preview=True,
)
class Replace(AAZCommand):
"""Replace the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine restart",
is_preview=True,
)
class Restart(AAZCommand):
"""Restart the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine run-command",
is_preview=True,
)
class RunCommand(AAZCommand):
"""Run the command or the script on the provided bare metal machine. The URL to storage account with the command execution results and the command exit code can be retrieved from the operation status API once available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine run-data-extract",
is_preview=True,
)
class RunDataExtract(AAZCommand):
"""Run one or more data extractions on the provided bare metal machine. The URL to storage account with the command execution results and the command exit code can be retrieved from the operation status API once available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine run-read-command",
is_preview=True,
)
class RunReadCommand(AAZCommand):
"""Run one or more read-only commands on the provided bare metal machine. The URL to storage account with the command execution results and the command exit code can be retrieved from the operation status API once available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine show",
is_preview=True,
)
class Show(AAZCommand):
"""Get properties of the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine start",
is_preview=True,
)
class Start(AAZCommand):
"""Start the provided bare metal machine.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine uncordon",
is_preview=True,
)
class Uncordon(AAZCommand):
"""Uncordon the provided bare metal machine's Kubernetes node.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud baremetalmachine update",
is_preview=True,
)
class Update(AAZCommand):
"""Update properties of the provided bare metal machine, or update tags associated with the bare metal machine. Properties and tag updates can be done independently.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud cloudservicesnetwork",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage cloud services network
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cloudservicesnetwork create",
is_preview=True,
)
class Create(AAZCommand):
"""Create a new cloud services network or update the properties of the existing cloud services network.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cloudservicesnetwork delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cloudservicesnetwork list",
is_preview=True,
)
class List(AAZCommand):
"""List cloud services networks in the provided resource group or subscription.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cloudservicesnetwork show",
is_preview=True,
)
class Show(AAZCommand):
"""Get properties of the provided cloud services network.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cloudservicesnetwork update",
is_preview=True,
)
class Update(AAZCommand):
"""Update properties of the provided cloud services network, or update the tags associated with it. Properties and tag updates can be done independently.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud cluster",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster continue-update-version",
is_preview=True,
)
class ContinueUpdateVersion(AAZCommand):
"""Trigger the continuation of an update for a cluster with a matching update strategy that has paused after completing a segment of the update.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster create",
is_preview=True,
)
class Create(AAZCommand):
"""Create a new cluster or update the properties of the cluster if it exists.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster deploy",
is_preview=True,
)
class Deploy(AAZCommand):
"""Deploy the cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster list",
is_preview=True,
)
class List(AAZCommand):
"""List clusters in the provided resource group or subscription.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster scan-runtime",
is_preview=True,
)
class ScanRuntime(AAZCommand):
"""Trigger the execution of a runtime protection scan to detect and remediate detected issues, in accordance with the cluster configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster show",
is_preview=True,
)
class Show(AAZCommand):
"""Get properties of the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster update",
is_preview=True,
)
class Update(AAZCommand):
"""Update the properties of the provided cluster, or update the tags associated with the cluster. Properties and tag updates can be done independently.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster update-version",
is_preview=True,
)
class UpdateVersion(AAZCommand):
"""Update the version of the provided cluster to one of the available supported versions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud cluster baremetalmachinekeyset",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage cluster's bare metal machine key set
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster baremetalmachinekeyset create",
is_preview=True,
)
class Create(AAZCommand):
"""Create a new bare metal machine key set or update the existing one for the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster baremetalmachinekeyset delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster baremetalmachinekeyset list",
is_preview=True,
)
class List(AAZCommand):
"""List bare metal machine key sets of the cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster baremetalmachinekeyset show",
is_preview=True,
)
class Show(AAZCommand):
"""Get bare metal machine key set of the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster baremetalmachinekeyset update",
is_preview=True,
)
class Update(AAZCommand):
"""Update properties of bare metal machine key set for the provided cluster, or update the tags associated with it. Properties and tag updates can be done independently.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud cluster bmckeyset",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage cluster's baseboard management controller key set
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster bmckeyset create",
is_preview=True,
)
class Create(AAZCommand):
"""Create a new baseboard management controller key set or update the existing one for the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster bmckeyset delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster bmckeyset list",
is_preview=True,
)
class List(AAZCommand):
"""List baseboard management controller key sets of the cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster bmckeyset show",
is_preview=True,
)
class Show(AAZCommand):
"""Get baseboard management controller key set of the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster bmckeyset update",
is_preview=True,
)
class Update(AAZCommand):
"""Update properties of baseboard management controller key set for the provided cluster, or update the tags associated with it. Properties and tag updates can be done independently.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command_group(
"networkcloud cluster metricsconfiguration",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage cluster's metrics configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster metricsconfiguration create",
is_preview=True,
)
class Create(AAZCommand):
"""Create the metrics configuration of the provided cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster metricsconfiguration delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster metricsconfiguration list",
is_preview=True,
)
class List(AAZCommand):
"""List metrics configurations of the cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

@register_command(
"networkcloud cluster metricsconfiguration show",
is_preview=True,
)
class Show(AAZCommand):
"""Get metrics configuration of the provided cluster.
Expand Down
Loading
Loading