-
Notifications
You must be signed in to change notification settings - Fork 3.4k
{Compute} vmss delete-instances: migrate to codegen based command
#31962
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
Merged
necusjz
merged 18 commits into
Azure:dev
from
DanielMicrosoft:34296235-migrate-vmss-delete
Aug 25, 2025
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
85f55c3
add delete_instances command
DanielMicrosoft 89730f1
Revert "add delete_instances command"
DanielMicrosoft cafdcfd
add vmss delete-instances cmd
DanielMicrosoft 206b660
refactor: restore lost imports
DanielMicrosoft 3a5396e
Revert "add vmss delete-instances cmd"
DanielMicrosoft d1ef593
Merge branch 'dev' of https://github.com/Azure/azure-cli into 3429623…
DanielMicrosoft 0cbdc04
feat: vmss delete-instances added and tests passing
DanielMicrosoft 3de1022
Merge branch 'dev' of https://github.com/Azure/azure-cli into 3429623…
DanielMicrosoft e3fa54a
fix: reinstate cmd imports
DanielMicrosoft 23dc885
Merge branch 'dev' of https://github.com/Azure/azure-cli into 3429623…
DanielMicrosoft 270b1d7
fix: remove trailing slashes from cmd_group files
DanielMicrosoft d7c85a8
refactor: remove old sdk based cmd code and help
DanielMicrosoft 3e04802
fix: handle merge conflict
DanielMicrosoft d68662d
Merge branch 'dev' of https://github.com/Azure/azure-cli into 3429623…
DanielMicrosoft 58ffe96
refactor: update command example and param name
DanielMicrosoft 06a9c4d
refactor: undo file deletions
DanielMicrosoft 2a970ad
refactor: remove trailing slashes
DanielMicrosoft d45c0a4
refactor: re import deleted files'
DanielMicrosoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
183 changes: 183 additions & 0 deletions
183
src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vmss/_delete_instances.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,183 @@ | ||
| # -------------------------------------------------------------------------------------------- | ||
| # 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( | ||
| "vmss delete-instances", | ||
| ) | ||
| class DeleteInstances(AAZCommand): | ||
| """Delete VMs within a VMSS. | ||
|
|
||
| :example: Delete VMs within a VMSS. | ||
| az vmss delete-instances --instance-ids 0 --name MyScaleSet --resource-group MyResourceGroup | ||
| """ | ||
|
|
||
| _aaz_info = { | ||
| "version": "2024-11-01", | ||
| "resources": [ | ||
| ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/virtualmachinescalesets/{}/delete", "2024-11-01"], | ||
| ] | ||
| } | ||
|
|
||
| AZ_SUPPORT_NO_WAIT = True | ||
|
|
||
| def _handler(self, command_args): | ||
| super()._handler(command_args) | ||
| return self.build_lro_poller(self._execute_operations, None) | ||
|
|
||
| _args_schema = None | ||
|
|
||
| @classmethod | ||
| def _build_arguments_schema(cls, *args, **kwargs): | ||
| if cls._args_schema is not None: | ||
| return cls._args_schema | ||
| cls._args_schema = super()._build_arguments_schema(*args, **kwargs) | ||
|
|
||
| # define Arg Group "" | ||
|
|
||
| _args_schema = cls._args_schema | ||
| _args_schema.resource_group = AAZResourceGroupNameArg( | ||
| help="Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.", | ||
| required=True, | ||
| ) | ||
| _args_schema.name = AAZStrArg( | ||
| options=["-n", "--name"], | ||
| help="Scale set name. You can configure the default using `az configure --defaults vmss=<name>`.", | ||
| required=True, | ||
| id_part="name", | ||
| ) | ||
| _args_schema.instance_ids = AAZListArg( | ||
| options=["--instance-ids"], | ||
| help="Space-separated list of IDs (ex: 1 2 3 ...) or * for all instances.", | ||
| required=True, | ||
| ) | ||
|
|
||
| instance_ids = cls._args_schema.instance_ids | ||
| instance_ids.Element = AAZStrArg() | ||
| return cls._args_schema | ||
|
|
||
| def _execute_operations(self): | ||
| self.pre_operations() | ||
| yield self.VirtualMachineScaleSetsDeleteInstances(ctx=self.ctx)() | ||
| self.post_operations() | ||
|
|
||
| @register_callback | ||
| def pre_operations(self): | ||
| pass | ||
|
|
||
| @register_callback | ||
| def post_operations(self): | ||
| pass | ||
|
|
||
| class VirtualMachineScaleSetsDeleteInstances(AAZHttpOperation): | ||
| CLIENT_TYPE = "MgmtClient" | ||
|
|
||
| def __call__(self, *args, **kwargs): | ||
| request = self.make_request() | ||
| session = self.client.send_request(request=request, stream=False, **kwargs) | ||
| if session.http_response.status_code in [202]: | ||
| return self.client.build_lro_polling( | ||
| self.ctx.args.no_wait, | ||
| session, | ||
| self.on_200, | ||
| self.on_error, | ||
| lro_options={"final-state-via": "location"}, | ||
| path_format_arguments=self.url_parameters, | ||
| ) | ||
| if session.http_response.status_code in [200]: | ||
| return self.client.build_lro_polling( | ||
| self.ctx.args.no_wait, | ||
| session, | ||
| self.on_200, | ||
| self.on_error, | ||
| lro_options={"final-state-via": "location"}, | ||
| path_format_arguments=self.url_parameters, | ||
| ) | ||
|
|
||
| return self.on_error(session.http_response) | ||
|
|
||
| @property | ||
| def url(self): | ||
| return self.client.format_url( | ||
| "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/delete", | ||
| **self.url_parameters | ||
| ) | ||
|
|
||
| @property | ||
| def method(self): | ||
| return "POST" | ||
|
|
||
| @property | ||
| def error_format(self): | ||
| return "ODataV4Format" | ||
|
|
||
| @property | ||
| def url_parameters(self): | ||
| parameters = { | ||
| **self.serialize_url_param( | ||
| "resourceGroupName", self.ctx.args.resource_group, | ||
| required=True, | ||
| ), | ||
| **self.serialize_url_param( | ||
| "subscriptionId", self.ctx.subscription_id, | ||
| required=True, | ||
| ), | ||
| **self.serialize_url_param( | ||
| "vmScaleSetName", self.ctx.args.name, | ||
| required=True, | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def query_parameters(self): | ||
| parameters = { | ||
| **self.serialize_query_param( | ||
| "api-version", "2024-11-01", | ||
| required=True, | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def header_parameters(self): | ||
| parameters = { | ||
| **self.serialize_header_param( | ||
| "Content-Type", "application/json", | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def content(self): | ||
| _content_value, _builder = self.new_content_builder( | ||
| self.ctx.args, | ||
| typ=AAZObjectType, | ||
| typ_kwargs={"flags": {"required": True, "client_flatten": True}} | ||
| ) | ||
| _builder.set_prop("instanceIds", AAZListType, ".instance_ids", typ_kwargs={"flags": {"required": True}}) | ||
|
|
||
| instance_ids = _builder.get(".instanceIds") | ||
| if instance_ids is not None: | ||
| instance_ids.set_elements(AAZStrType, ".") | ||
|
|
||
| return self.serialize_content(_content_value) | ||
|
|
||
| def on_200(self, session): | ||
| pass | ||
|
|
||
|
|
||
| class _DeleteInstancesHelper: | ||
| """Helper class for DeleteInstances""" | ||
|
|
||
|
|
||
| __all__ = ["DeleteInstances"] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.