Skip to content

Commit

Permalink
[DevTest Labs] Add Hibernation Support (#30633)
Browse files Browse the repository at this point in the history
* Start hibernate changes

* add test

* add recording file

* add format

* fix build

* add example

* fox example

* remove bug

* add help file example

* fix style

* move help

* format
  • Loading branch information
jfullerton44 authored Jan 16, 2025
1 parent a907094 commit a29d2e7
Show file tree
Hide file tree
Showing 6 changed files with 575 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
from ._show import *
from ._start import *
from ._stop import *
from ._hibernate import *
from ._wait import *
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
# --------------------------------------------------------------------------------------------
# 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(
"lab vm hibernate",
is_preview=True
)
class Hibernate(AAZCommand):
"""Hibernate a virtual machine This operation can take a while to complete.
:example: Hibernate a virtual machine.
az lab vm hibernate --resource-group MyResourceGroup --lab-name MyLab --name MyVM
"""



_aaz_info = {
"version": "2018-09-15",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.devtestlab/labs/{}/virtualmachines/{}/hibernate", "2018-10-15-preview"],
]
}

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.lab_name = AAZStrArg(
options=["--lab-name"],
help="The name of the lab.",
required=True,
id_part="name",
)
_args_schema.name = AAZStrArg(
options=["--name"],
help="The name of the virtual machine.",
required=True,
id_part="child_name_1",
)
_args_schema.resource_group = AAZResourceGroupNameArg(
required=True,
)
return cls._args_schema

def _execute_operations(self):
self.pre_operations()
yield self.VirtualMachinesHibernate(ctx=self.ctx)()
self.post_operations()

@register_callback
def pre_operations(self):
pass

@register_callback
def post_operations(self):
pass

class VirtualMachinesHibernate(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": "azure-async-operation"},
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": "azure-async-operation"},
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.DevTestLab/labs/{labName}/virtualmachines/{name}/hibernate",
**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(
"labName", self.ctx.args.lab_name,
required=True,
),
**self.serialize_url_param(
"name", self.ctx.args.name,
required=True,
),
**self.serialize_url_param(
"resourceGroupName", self.ctx.args.resource_group,
required=True,
),
**self.serialize_url_param(
"subscriptionId", self.ctx.subscription_id,
required=True,
),
}
return parameters

@property
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2018-10-15-preview",
required=True,
),
}
return parameters

def on_200(self, session):
pass


class _HibernateHelper:
"""Helper class for Hibernate"""


__all__ = ["Hibernate"]
3 changes: 2 additions & 1 deletion src/azure-cli/azure/cli/command_modules/lab/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ def load_command_table(self, _):

with self.command_group('lab vm'):
from .custom import LabVmCreate, LabVmList, LabVmShow, LabVmDelete, LabVmStart, LabVmStop, \
LabVmApplyArtifacts
LabVmApplyArtifacts, LabVmHibernate
self.command_table['lab vm create'] = LabVmCreate(loader=self)
self.command_table['lab vm list'] = LabVmList(loader=self, table_transformer=transform_vm_list)
self.command_table['lab vm show'] = LabVmShow(loader=self, table_transformer=transform_vm)
self.command_table['lab vm delete'] = LabVmDelete(loader=self)
self.command_table['lab vm start'] = LabVmStart(loader=self)
self.command_table['lab vm stop'] = LabVmStop(loader=self)
self.command_table['lab vm hibernate'] = LabVmHibernate(loader=self)
self.command_table['lab vm apply-artifacts'] = LabVmApplyArtifacts(loader=self)

# Lab Operations Commands
Expand Down
12 changes: 11 additions & 1 deletion src/azure-cli/azure/cli/command_modules/lab/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
from azure.cli.core.aaz import has_value, register_command
from .aaz.latest.lab import Get as _LabGet, Delete as _LabDelete, CreateEnvironment as _LabVmCreate
from .aaz.latest.lab.vm import (List as _LabVmList, Show as _LabVmShow, Delete as _LabVmDelete, Start as _LabVmStart,
Stop as _LabVmStop, ApplyArtifacts as _LabVmApplyArtifacts, Claim as LabVmClaim)
Stop as _LabVmStop, ApplyArtifacts as _LabVmApplyArtifacts, Claim as LabVmClaim,
Hibernate as _LabVmHibernate)
from .aaz.latest.lab.custom_image import (Show as _CustomImageShow, Delete as _CustomImageDelete,
Create as _CustomImageCreate)
from .aaz.latest.lab.artifact_source import Show as _ArtifactSourceShow
Expand Down Expand Up @@ -223,6 +224,15 @@ def _build_arguments_schema(cls, *args, **kwargs):
return args_schema


class LabVmHibernate(_LabVmHibernate):
@classmethod
def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
args_schema.name._id_part = None
args_schema.lab_name._id_part = None
return args_schema


class LabVmApplyArtifacts(_LabVmApplyArtifacts):
@classmethod
def _build_arguments_schema(cls, *args, **kwargs):
Expand Down
Loading

0 comments on commit a29d2e7

Please sign in to comment.