From 6caba78902286944c9b06c5101676854f9c62233 Mon Sep 17 00:00:00 2001 From: rhoover Date: Tue, 27 Sep 2022 16:24:32 -0500 Subject: [PATCH 01/17] Updated code to enable the cli to connect to serial-console over different regions --- .../azext_serialconsole/_client_factory.py | 16 +++++-- .../azext_serialconsole/custom.py | 22 ++++----- .../serialconsole/_arm_endpoints.py | 47 ++++++++++++++++++ .../_microsoft_serial_console_client.py | 48 +++++++++++++++++-- 4 files changed, 114 insertions(+), 19 deletions(-) create mode 100644 src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py diff --git a/src/serial-console/azext_serialconsole/_client_factory.py b/src/serial-console/azext_serialconsole/_client_factory.py index fbaed116da0..223b9e9c08b 100644 --- a/src/serial-console/azext_serialconsole/_client_factory.py +++ b/src/serial-console/azext_serialconsole/_client_factory.py @@ -3,9 +3,10 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from azure.cli.core.profiles import ResourceType + def _compute_client_factory(cli_ctx, **kwargs): - from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_COMPUTE, subscription_id=kwargs.get('subscription_id'), @@ -15,9 +16,18 @@ def _compute_client_factory(cli_ctx, **kwargs): def cf_serialconsole(cli_ctx, *_): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_serialconsole.vendored_sdks.serialconsole import MicrosoftSerialConsoleClient + if len(*_) > 0: + kwargs = {'client_ctx': cli_ctx, 'resource_group_name': _[0], 'vm_name': _[1]} + else: + kwargs = {'client_ctx': cli_ctx} return get_mgmt_service_client(cli_ctx, - MicrosoftSerialConsoleClient) + MicrosoftSerialConsoleClient, **kwargs) def cf_serial_port(cli_ctx, *_): - return cf_serialconsole(cli_ctx).serial_ports + return cf_serialconsole(cli_ctx, *_).serial_ports + + +def storage_client_factory(cli_ctx, *_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_STORAGE) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index c225b61b2a8..7e954fc89b6 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -198,8 +198,8 @@ def _getch_windows(self): class Terminal: ERROR_MESSAGE = "Unable to configure terminal." - RECOMENDATION = ("Make sure that app in running in a terminal on a Windows 10 " - "or Unix based machine. Versions earlier than Windows 10 are not supported.") + RECOMMENDATION = ("Make sure that app in running in a terminal on a Windows 10 " + "or Unix based machine. Versions earlier than Windows 10 are not supported.") def __init__(self): self.win_original_out_mode = None @@ -232,7 +232,7 @@ def configure_terminal(self): if (not kernel32.GetConsoleMode(self.win_out, ctypes.byref(dw_original_out_mode)) or not kernel32.GetConsoleMode(self.win_in, ctypes.byref(dw_original_in_mode))): quitapp(error_message=Terminal.ERROR_MESSAGE, - error_recommendation=Terminal.RECOMENDATION, error_func=UnclassifiedUserFault) + error_recommendation=Terminal.RECOMMENDATION, error_func=UnclassifiedUserFault) self.win_original_out_mode = dw_original_out_mode.value self.win_original_in_mode = dw_original_in_mode.value @@ -244,7 +244,7 @@ def configure_terminal(self): if (not kernel32.SetConsoleMode(self.win_out, dw_out_mode) or not kernel32.SetConsoleMode(self.win_in, dw_in_mode)): quitapp(error_message=Terminal.ERROR_MESSAGE, - error_recommendation=Terminal.RECOMENDATION, error_func=UnclassifiedUserFault) + error_recommendation=Terminal.RECOMMENDATION, error_func=UnclassifiedUserFault) else: try: import tty @@ -252,7 +252,7 @@ def configure_terminal(self): fd = sys.stdin.fileno() except (ModuleNotFoundError, ValueError): quitapp(error_message=Terminal.ERROR_MESSAGE, - error_recommendation=Terminal.RECOMENDATION, error_func=UnclassifiedUserFault) + error_recommendation=Terminal.RECOMMENDATION, error_func=UnclassifiedUserFault) self.unix_original_mode = termios.tcgetattr(fd) tty.setraw(fd) @@ -277,7 +277,7 @@ def revert_terminal(self): class SerialConsole: def __init__(self, cmd, resource_group_name, vm_vmss_name, vmss_instanceid): - client = cf_serial_port(cmd.cli_ctx) + client = cf_serial_port(cmd.cli_ctx, resource_group_name, vm_vmss_name) if vmss_instanceid is None: self.connect_func = lambda: client.connect( resource_group_name=resource_group_name, @@ -457,7 +457,7 @@ def connect_thread(): GV.websocket_instance.run_forever(skip_utf8_validation=True) else: GV.loading = False - message = ("\r\nAn unexpected error occured. Could not establish connection to VM or VMSS. " + message = ("\r\nAn unexpected error occurred. Could not establish connection to VM or VMSS. " "Check network connection and press \"Enter\" to try again...") PC.print(message, color=PrintClass.RED) @@ -563,14 +563,14 @@ def on_message(ws, _): error_message, recommendation=recommendation) else: GV.loading = False - error_message = "An unexpected error occured. Could not establish connection to VM or VMSS." + error_message = "An unexpected error occurred. Could not establish connection to VM or VMSS." recommendation = "Check network connection and try again." raise ResourceNotFoundError( error_message, recommendation=recommendation) -def check_serial_console_enabled(cli_ctx): - client = cf_serialconsole(cli_ctx) +def check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name): + client = cf_serialconsole(cli_ctx, resource_group_name, vm_vmss_name) result = client.get_console_status().additional_properties if ("properties" in result and "disabled" in result["properties"] and not result["properties"]["disabled"]): @@ -581,7 +581,7 @@ def check_serial_console_enabled(cli_ctx): def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): - check_serial_console_enabled(cli_ctx) + check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name) client = _compute_client_factory(cli_ctx) if vmss_instanceid: result = client.virtual_machine_scale_set_vms.get_instance_view( diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py new file mode 100644 index 00000000000..c092b04213a --- /dev/null +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py @@ -0,0 +1,47 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + + +class ArmEndpoints: + region_prefix_pairings = {'australiacentral': 'australiaeast', + 'australiaeast': 'australiacentral', + 'brazilsouth': 'brazilsoutheast', + 'brazilsoutheast': 'brazilsouth', + 'canadacentral': 'canadaeast', + 'canadaeast': 'canadacentral', + 'centralindia': 'southindia', + 'centralus': 'westcentralus', + 'centraluseuap': 'eastus2euap', + 'eastasia': 'southeastasia', + 'eastus2': 'westus2', # pairing eastus2 + westus2 ensure that INT works as expected + 'eastus2euap': 'centraluseuap', + 'francecentral': 'francesouth', + 'francesouth': 'francecentral', + 'germanynorth': 'germanywestcentral', + 'germanywestcentral': 'germanynorth', + 'japaneast': 'japanwest', + 'japanwest': 'japaneast', + 'koreacentral': 'koreasouth', + 'koreasouth': 'koreacentral', + 'northeurope': 'westeurope', + 'norwayeast': 'norwaywest', + 'norwaywest': 'norwayeast', + # 'southafricanorth': 'southafricawest' is not yet deployed + 'southeastasia': 'eastasia', + 'southindia': 'centralindia', + 'swedencentral': 'swedensouth', + 'swedensouth': 'swedencentral', + 'switzerlandnorth': 'switzerlandwest', + 'switzerlandwest': 'switzerlandnorth', + 'uaecentral': 'uaenorth', + 'uaenorth': 'uaecentral', + 'uksouth': 'ukwest', + 'ukwest': 'uksouth', + 'westcentralus': 'centralus', + 'westeurope': 'northeurope', + 'westus2': 'eastus2', + 'usgovarizona': 'usgoveast', # usgoveast == usgovvirginia + 'usgovvirginia': 'usgovsw', # usgovsw == usgovarizona + } diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py index 3176195fef4..23d3df2d029 100644 --- a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py @@ -36,13 +36,17 @@ class MicrosoftSerialConsoleClient(MicrosoftSerialConsoleClientOperationsMixin): """ def __init__( - self, - credential, # type: "TokenCredential" - subscription_id, # type: str - base_url=None, # type: Optional[str] - **kwargs # type: Any + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + base_url=None, # type: Optional[str] + **kwargs # type: Any ): # type: (...) -> None + storage_account_location = self.modify_baseurl_for_storage_account_firewall(**kwargs) + if storage_account_location is not None: + base_url = 'https://{}.management.azure.com'.format(storage_account_location) + if not base_url: base_url = 'https://management.azure.com' self._config = MicrosoftSerialConsoleClientConfiguration(credential, subscription_id, **kwargs) @@ -67,3 +71,37 @@ def __enter__(self): def __exit__(self, *exc_details): # type: (Any) -> None self._client.__exit__(*exc_details) + + @staticmethod + def modify_baseurl_for_storage_account_firewall(**kwargs): + from tld import get_tld + from azext_serialconsole._client_factory import _compute_client_factory + from azext_serialconsole._client_factory import storage_client_factory + from . import _arm_endpoints as AE + if len(kwargs) > 0: + cli_ctx = kwargs['client_ctx'] + resource_group_name = kwargs['resource_group_name'] + vm_vmss_name = kwargs['vm_name'] + else: + return None + + client = _compute_client_factory(cli_ctx) + scf = storage_client_factory(cli_ctx) + + result = client.virtual_machines.get( + resource_group_name, vm_vmss_name, expand='instanceView') + + if (result.diagnostics_profile is not None and + result.diagnostics_profile.boot_diagnostics is not None): + storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri + sa_info = get_tld(storage_account_url, as_object=True) + sa_info_list = sa_info.subdomain.split('.') + if len(sa_info_list) > 0: + storage_account = sa_info_list[0] + sa_result = scf.storage_accounts.get_properties(resource_group_name, storage_account) + if (sa_result is not None and + sa_result.network_rule_set is not None and + len(sa_result.network_rule_set.ip_rules) > 0): + return AE.ArmEndpoints.region_prefix_pairings[sa_result.location] + + return None From cb5b28b3156398ec6c677d3023527425c2c3b83f Mon Sep 17 00:00:00 2001 From: Richard Hoover Date: Tue, 27 Sep 2022 17:29:24 -0500 Subject: [PATCH 02/17] Updated arguments that are passed around for the clients --- .../azext_serialconsole/_client_factory.py | 10 +++------- src/serial-console/azext_serialconsole/custom.py | 6 ++++-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/serial-console/azext_serialconsole/_client_factory.py b/src/serial-console/azext_serialconsole/_client_factory.py index 223b9e9c08b..ccfaf9ec465 100644 --- a/src/serial-console/azext_serialconsole/_client_factory.py +++ b/src/serial-console/azext_serialconsole/_client_factory.py @@ -13,19 +13,15 @@ def _compute_client_factory(cli_ctx, **kwargs): aux_subscriptions=kwargs.get('aux_subscriptions')) -def cf_serialconsole(cli_ctx, *_): +def cf_serialconsole(cli_ctx, **kwargs): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_serialconsole.vendored_sdks.serialconsole import MicrosoftSerialConsoleClient - if len(*_) > 0: - kwargs = {'client_ctx': cli_ctx, 'resource_group_name': _[0], 'vm_name': _[1]} - else: - kwargs = {'client_ctx': cli_ctx} return get_mgmt_service_client(cli_ctx, MicrosoftSerialConsoleClient, **kwargs) -def cf_serial_port(cli_ctx, *_): - return cf_serialconsole(cli_ctx, *_).serial_ports +def cf_serial_port(cli_ctx, **kwargs): + return cf_serialconsole(cli_ctx, **kwargs).serial_ports def storage_client_factory(cli_ctx, *_): diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 7e954fc89b6..50cc744fe65 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -277,7 +277,8 @@ def revert_terminal(self): class SerialConsole: def __init__(self, cmd, resource_group_name, vm_vmss_name, vmss_instanceid): - client = cf_serial_port(cmd.cli_ctx, resource_group_name, vm_vmss_name) + kwargs = {'client_ctx': cmd.cli_ctx, 'resource_group_name': resource_group_name, 'vm_name': vm_vmss_name} + client = cf_serial_port(cmd.cli_ctx, **kwargs) if vmss_instanceid is None: self.connect_func = lambda: client.connect( resource_group_name=resource_group_name, @@ -570,7 +571,8 @@ def on_message(ws, _): def check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name): - client = cf_serialconsole(cli_ctx, resource_group_name, vm_vmss_name) + kwargs = {'client_ctx': cli_ctx, 'resource_group_name': resource_group_name, 'vm_name': vm_vmss_name} + client = cf_serialconsole(cli_ctx, **kwargs) result = client.get_console_status().additional_properties if ("properties" in result and "disabled" in result["properties"] and not result["properties"]["disabled"]): From a59631e173860712cc9d32a3c07ba10627ad833e Mon Sep 17 00:00:00 2001 From: rhoover Date: Tue, 27 Sep 2022 20:37:14 -0500 Subject: [PATCH 03/17] Change the code to resolve the region name at the beginning of the cli command --- .../azext_serialconsole/custom.py | 53 ++++++++++++++++--- .../_microsoft_serial_console_client.py | 39 +------------- 2 files changed, 49 insertions(+), 43 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 50cc744fe65..b8e021f2bad 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -277,7 +277,9 @@ def revert_terminal(self): class SerialConsole: def __init__(self, cmd, resource_group_name, vm_vmss_name, vmss_instanceid): - kwargs = {'client_ctx': cmd.cli_ctx, 'resource_group_name': resource_group_name, 'vm_name': vm_vmss_name} + storage_account_region = get_region_from_storage_account(cmd.cli_ctx, resource_group_name, vm_vmss_name) + if storage_account_region is not None: + kwargs = {'storage_account_region': storage_account_region} client = cf_serial_port(cmd.cli_ctx, **kwargs) if vmss_instanceid is None: self.connect_func = lambda: client.connect( @@ -525,6 +527,7 @@ def connect_and_send_admin_command(self, command, arg_characters=None): elif command == "sysrq" and arg_characters is not None: def wrapper(): return self.send_sys_rq(arg_characters) + func = wrapper success_message = "Successfully sent SysRq command\r\n" failure_message = "Failed to send SysRq command. Make sure the input only contains numbers and letters.\r\n" @@ -570,8 +573,9 @@ def on_message(ws, _): error_message, recommendation=recommendation) -def check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name): - kwargs = {'client_ctx': cli_ctx, 'resource_group_name': resource_group_name, 'vm_name': vm_vmss_name} +def check_serial_console_enabled(cli_ctx, storage_account_region): + if storage_account_region is not None: + kwargs = {'storage_account_region': storage_account_region} client = cf_serialconsole(cli_ctx, **kwargs) result = client.get_console_status().additional_properties if ("properties" in result and "disabled" in result["properties"] and @@ -583,7 +587,8 @@ def check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name): def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): - check_serial_console_enabled(cli_ctx, resource_group_name, vm_vmss_name) + storage_account_region = get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name) + check_serial_console_enabled(cli_ctx, storage_account_region) client = _compute_client_factory(cli_ctx) if vmss_instanceid: result = client.virtual_machine_scale_set_vms.get_instance_view( @@ -600,7 +605,7 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): error_message, recommendation=recommendation) if result.boot_diagnostics is None: - error_message = ("Azure Serial Console requires boot diagnostics to be enabled.") + error_message = "Azure Serial Console requires boot diagnostics to be enabled." recommendation = ('Use "az vmss update --name MyScaleSet --resource-group MyResourceGroup --set ' 'virtualMachineProfile.diagnosticsProfile="{\\"bootDiagnostics\\": {\\"Enabled\\" : ' '\\"True\\",\\"StorageUri\\" : null}}"" to enable boot diagnostics. ' @@ -645,7 +650,7 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): if (result.diagnostics_profile is None or result.diagnostics_profile.boot_diagnostics is None or not result.diagnostics_profile.boot_diagnostics.enabled): - error_message = ("Azure Serial Console requires boot diagnostics to be enabled.") + error_message = "Azure Serial Console requires boot diagnostics to be enabled." recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup" ' 'to enable boot diagnostics. You can specify a custom storage account with the ' 'parameter "--storage https://mystor.blob.windows.net/".') @@ -697,3 +702,39 @@ def enable_serialconsole(cmd): def disable_serialconsole(cmd): client = cf_serialconsole(cmd.cli_ctx) return client.disable_console() + + +def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): + from tld import get_tld + from azext_serialconsole._client_factory import _compute_client_factory + from azext_serialconsole._client_factory import storage_client_factory + from . import _arm_endpoints as AE + + client = _compute_client_factory(cli_ctx) + scf = storage_client_factory(cli_ctx) + + try: + result = client.virtual_machines.get( + resource_group_name, vm_vmss_name, expand='instanceView') + except ComputeClientResourceNotFoundError as e: + error_message = e.message + recommendation = ("The specified Virtual Machine {} couldn't be within the resource group {}. " + "Please verify that the Virtual Machine exists and is valid for your subscription.".format( + vm_vmss_name, resource_group_name)) + raise ResourceNotFoundError( + error_message, recommendation=recommendation) from e + + if (result.diagnostics_profile is not None and + result.diagnostics_profile.boot_diagnostics is not None): + storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri + sa_info = get_tld(storage_account_url, as_object=True) + sa_info_list = sa_info.subdomain.split('.') + if len(sa_info_list) > 0: + storage_account = sa_info_list[0] + sa_result = scf.storage_accounts.get_properties(resource_group_name, storage_account) + if (sa_result is not None and + sa_result.network_rule_set is not None and + len(sa_result.network_rule_set.ip_rules) > 0): + return AE.ArmEndpoints.region_prefix_pairings[sa_result.location] + + return None diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py index 23d3df2d029..331fbbbaacc 100644 --- a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py @@ -43,9 +43,8 @@ def __init__( **kwargs # type: Any ): # type: (...) -> None - storage_account_location = self.modify_baseurl_for_storage_account_firewall(**kwargs) - if storage_account_location is not None: - base_url = 'https://{}.management.azure.com'.format(storage_account_location) + if len(kwargs) > 0 and kwargs['storage_account_region'] is not None: + base_url = 'https://{}.management.azure.com'.format(kwargs['storage_account_region']) if not base_url: base_url = 'https://management.azure.com' @@ -71,37 +70,3 @@ def __enter__(self): def __exit__(self, *exc_details): # type: (Any) -> None self._client.__exit__(*exc_details) - - @staticmethod - def modify_baseurl_for_storage_account_firewall(**kwargs): - from tld import get_tld - from azext_serialconsole._client_factory import _compute_client_factory - from azext_serialconsole._client_factory import storage_client_factory - from . import _arm_endpoints as AE - if len(kwargs) > 0: - cli_ctx = kwargs['client_ctx'] - resource_group_name = kwargs['resource_group_name'] - vm_vmss_name = kwargs['vm_name'] - else: - return None - - client = _compute_client_factory(cli_ctx) - scf = storage_client_factory(cli_ctx) - - result = client.virtual_machines.get( - resource_group_name, vm_vmss_name, expand='instanceView') - - if (result.diagnostics_profile is not None and - result.diagnostics_profile.boot_diagnostics is not None): - storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri - sa_info = get_tld(storage_account_url, as_object=True) - sa_info_list = sa_info.subdomain.split('.') - if len(sa_info_list) > 0: - storage_account = sa_info_list[0] - sa_result = scf.storage_accounts.get_properties(resource_group_name, storage_account) - if (sa_result is not None and - sa_result.network_rule_set is not None and - len(sa_result.network_rule_set.ip_rules) > 0): - return AE.ArmEndpoints.region_prefix_pairings[sa_result.location] - - return None From e5e987ce66ce19b61c9f64c84b3ed9c66e31a6af Mon Sep 17 00:00:00 2001 From: rhoover Date: Tue, 27 Sep 2022 20:44:09 -0500 Subject: [PATCH 04/17] Moved the _arm_endpoints.py file up two directories to resolve import issues --- .../{vendored_sdks/serialconsole => }/_arm_endpoints.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/serial-console/azext_serialconsole/{vendored_sdks/serialconsole => }/_arm_endpoints.py (100%) diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py b/src/serial-console/azext_serialconsole/_arm_endpoints.py similarity index 100% rename from src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_arm_endpoints.py rename to src/serial-console/azext_serialconsole/_arm_endpoints.py From cccacdefb9bb1c44f6e7f750bd0451c38739f21d Mon Sep 17 00:00:00 2001 From: Richard Hoover Date: Tue, 27 Sep 2022 21:45:22 -0500 Subject: [PATCH 05/17] Fix code issues where the serial-console wasn't using the storage_url correctly --- .../azext_serialconsole/custom.py | 23 ++++++++++++++----- .../_microsoft_serial_console_client.py | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index b8e021f2bad..84645c993b9 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -573,9 +573,11 @@ def on_message(ws, _): error_message, recommendation=recommendation) -def check_serial_console_enabled(cli_ctx, storage_account_region): +def check_serial_console_enabled(cli_ctx, storage_account_region=None): if storage_account_region is not None: kwargs = {'storage_account_region': storage_account_region} + else: + kwargs = dict() client = cf_serialconsole(cli_ctx, **kwargs) result = client.get_console_status().additional_properties if ("properties" in result and "disabled" in result["properties"] and @@ -705,7 +707,6 @@ def disable_serialconsole(cmd): def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): - from tld import get_tld from azext_serialconsole._client_factory import _compute_client_factory from azext_serialconsole._client_factory import storage_client_factory from . import _arm_endpoints as AE @@ -727,10 +728,8 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): if (result.diagnostics_profile is not None and result.diagnostics_profile.boot_diagnostics is not None): storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri - sa_info = get_tld(storage_account_url, as_object=True) - sa_info_list = sa_info.subdomain.split('.') - if len(sa_info_list) > 0: - storage_account = sa_info_list[0] + storage_account = parse_storage_account_url(storage_account_url) + if storage_account is not None: sa_result = scf.storage_accounts.get_properties(resource_group_name, storage_account) if (sa_result is not None and sa_result.network_rule_set is not None and @@ -738,3 +737,15 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): return AE.ArmEndpoints.region_prefix_pairings[sa_result.location] return None + + +def parse_storage_account_url(url): + saList = url.split('.') + if len(saList) > 0: + saUrl = saList[0] + saUrl = saUrl.replace("https://", "") + return saUrl + + return None + + diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py index 331fbbbaacc..3567bd77af5 100644 --- a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py @@ -43,7 +43,7 @@ def __init__( **kwargs # type: Any ): # type: (...) -> None - if len(kwargs) > 0 and kwargs['storage_account_region'] is not None: + if len(kwargs) > 0 and kwargs.get('storage_account_region') is not None: base_url = 'https://{}.management.azure.com'.format(kwargs['storage_account_region']) if not base_url: From 008974625ce5aa56359f8450b9f98b19f3f5a803 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 09:20:09 -0500 Subject: [PATCH 06/17] Resolve Pylint issues --- src/serial-console/azext_serialconsole/custom.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 84645c993b9..ca1ab6316e6 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -577,7 +577,7 @@ def check_serial_console_enabled(cli_ctx, storage_account_region=None): if storage_account_region is not None: kwargs = {'storage_account_region': storage_account_region} else: - kwargs = dict() + kwargs = {} client = cf_serialconsole(cli_ctx, **kwargs) result = client.get_console_status().additional_properties if ("properties" in result and "disabled" in result["properties"] and @@ -707,7 +707,6 @@ def disable_serialconsole(cmd): def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): - from azext_serialconsole._client_factory import _compute_client_factory from azext_serialconsole._client_factory import storage_client_factory from . import _arm_endpoints as AE @@ -719,7 +718,7 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): resource_group_name, vm_vmss_name, expand='instanceView') except ComputeClientResourceNotFoundError as e: error_message = e.message - recommendation = ("The specified Virtual Machine {} couldn't be within the resource group {}. " + recommendation = ("The specified Virtual Machine {} wasn't found within the resource group {}. " "Please verify that the Virtual Machine exists and is valid for your subscription.".format( vm_vmss_name, resource_group_name)) raise ResourceNotFoundError( @@ -747,5 +746,3 @@ def parse_storage_account_url(url): return saUrl return None - - From fab98c848d293bc17cae43eaff3c3837fe261671 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 09:37:46 -0500 Subject: [PATCH 07/17] Resolve Pylint issues --- src/serial-console/azext_serialconsole/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index ca1ab6316e6..c42e1c4d30b 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -719,8 +719,8 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): except ComputeClientResourceNotFoundError as e: error_message = e.message recommendation = ("The specified Virtual Machine {} wasn't found within the resource group {}. " - "Please verify that the Virtual Machine exists and is valid for your subscription.".format( - vm_vmss_name, resource_group_name)) + "Please verify that the Virtual Machine exists and is valid for your " + "subscription.".format(vm_vmss_name, resource_group_name)) raise ResourceNotFoundError( error_message, recommendation=recommendation) from e From 96e1e60e7537f65dfddef4d5813b512bc8ac38f3 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 09:42:33 -0500 Subject: [PATCH 08/17] Resolve Pylint issues --- src/serial-console/azext_serialconsole/custom.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index c42e1c4d30b..4bc5479f075 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -718,9 +718,9 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): resource_group_name, vm_vmss_name, expand='instanceView') except ComputeClientResourceNotFoundError as e: error_message = e.message - recommendation = ("The specified Virtual Machine {} wasn't found within the resource group {}. " - "Please verify that the Virtual Machine exists and is valid for your " - "subscription.".format(vm_vmss_name, resource_group_name)) + recommendation = (f"The specified Virtual Machine {vm_vmss_name} wasn't found within the " + f"resource group {resource_group_name}. Please verify that the Virtual Machine " + "exists and is valid for your subscription.") raise ResourceNotFoundError( error_message, recommendation=recommendation) from e @@ -739,10 +739,10 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): def parse_storage_account_url(url): - saList = url.split('.') - if len(saList) > 0: - saUrl = saList[0] - saUrl = saUrl.replace("https://", "") - return saUrl + sa_list = url.split('.') + if len(sa_list) > 0: + sa_url = sa_list[0] + sa_url = sa_url.replace("https://", "") + return sa_url return None From f2efc7b15fc9534b7df9c65bd5b2102bcbed2aa7 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 09:45:00 -0500 Subject: [PATCH 09/17] Resolve Pylint issue with to few public methods --- src/serial-console/azext_serialconsole/_arm_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serial-console/azext_serialconsole/_arm_endpoints.py b/src/serial-console/azext_serialconsole/_arm_endpoints.py index c092b04213a..1bad0cd2e27 100644 --- a/src/serial-console/azext_serialconsole/_arm_endpoints.py +++ b/src/serial-console/azext_serialconsole/_arm_endpoints.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- -class ArmEndpoints: +class ArmEndpoints: # pylint: disable=too-few-public-methods region_prefix_pairings = {'australiacentral': 'australiaeast', 'australiaeast': 'australiacentral', 'brazilsouth': 'brazilsoutheast', From b1a000ff9763db4c464a5093cdbadbe7fb020719 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 10:05:07 -0500 Subject: [PATCH 10/17] Update the version and release notes --- src/serial-console/HISTORY.rst | 4 ++++ src/serial-console/setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/serial-console/HISTORY.rst b/src/serial-console/HISTORY.rst index 1b68bd0f626..04595d0402b 100644 --- a/src/serial-console/HISTORY.rst +++ b/src/serial-console/HISTORY.rst @@ -1,6 +1,10 @@ Release History =============== +0.1.3 +++++++ +* Change to use different region for http calls when custom storage account firewalls are enabled + 0.1.2 ++++++ * Change to make custom boot diagnostics optional diff --git a/src/serial-console/setup.py b/src/serial-console/setup.py index 3bded74de4a..f0d69cf113e 100644 --- a/src/serial-console/setup.py +++ b/src/serial-console/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.2' +VERSION = '0.1.3' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 397ced32ff4808435226af0e888a5b85f9638b26 Mon Sep 17 00:00:00 2001 From: rhoover Date: Wed, 28 Sep 2022 10:06:43 -0500 Subject: [PATCH 11/17] Change release note verbiage --- src/serial-console/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serial-console/HISTORY.rst b/src/serial-console/HISTORY.rst index 04595d0402b..eb830fa685a 100644 --- a/src/serial-console/HISTORY.rst +++ b/src/serial-console/HISTORY.rst @@ -3,7 +3,7 @@ Release History 0.1.3 ++++++ -* Change to use different region for http calls when custom storage account firewalls are enabled +* Change to use different region for url calls when custom storage account firewalls are enabled 0.1.2 ++++++ From 278162178f2938abaa7e3a0109d5c9130bc0180e Mon Sep 17 00:00:00 2001 From: Richard Hoover Date: Wed, 12 Oct 2022 15:52:18 -0500 Subject: [PATCH 12/17] Fix live tests --- .../azext_serialconsole/custom.py | 142 +- .../recordings/test_check_resource_VM.yaml | 2798 +++++------ .../recordings/test_check_resource_VMSS.yaml | 4114 +++++++++++------ .../recordings/test_enable_disable.yaml | 16 +- 4 files changed, 4183 insertions(+), 2887 deletions(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 4bc5479f075..7459cc3ffae 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -132,7 +132,7 @@ def prompt(self, getch, message): c = getch() self.hide_cursor(buffer=False) for _ in range(lines): - self.clear_line(buffer=False) + # self.clear_line(buffer=False) self.cursor_up(buffer=False) self.set_cursor_horizontal_position(col, buffer=False) self.show_cursor(buffer=False) @@ -277,9 +277,12 @@ def revert_terminal(self): class SerialConsole: def __init__(self, cmd, resource_group_name, vm_vmss_name, vmss_instanceid): - storage_account_region = get_region_from_storage_account(cmd.cli_ctx, resource_group_name, vm_vmss_name) + result, storage_account_region = get_region_from_storage_account(cmd.cli_ctx, resource_group_name, + vm_vmss_name, vmss_instanceid) if storage_account_region is not None: kwargs = {'storage_account_region': storage_account_region} + else: + kwargs = {} client = cf_serial_port(cmd.cli_ctx, **kwargs) if vmss_instanceid is None: self.connect_func = lambda: client.connect( @@ -368,7 +371,7 @@ def connect_loading_message_linux(): chars_copy = chars.copy() chars_copy[indx] = "\u25A0" squares = " ".join(chars_copy) - PC.clear_line() + # PC.clear_line() PC.print("Connecting to console of VM " + squares, color=PrintClass.CYAN) PC.show_cursor() @@ -589,12 +592,11 @@ def check_serial_console_enabled(cli_ctx, storage_account_region=None): def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): - storage_account_region = get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name) + result, storage_account_region = get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name, + vmss_instanceid) check_serial_console_enabled(cli_ctx, storage_account_region) - client = _compute_client_factory(cli_ctx) + if vmss_instanceid: - result = client.virtual_machine_scale_set_vms.get_instance_view( - resource_group_name, vm_vmss_name, vmss_instanceid) if 'osName' in result.additional_properties and "windows" in result.additional_properties['osName'].lower(): GV.os_is_windows = True @@ -605,32 +607,7 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): recommendation = 'Use "az vmss start" to start the Virtual Machine.' raise AzureConnectionError( error_message, recommendation=recommendation) - - if result.boot_diagnostics is None: - error_message = "Azure Serial Console requires boot diagnostics to be enabled." - recommendation = ('Use "az vmss update --name MyScaleSet --resource-group MyResourceGroup --set ' - 'virtualMachineProfile.diagnosticsProfile="{\\"bootDiagnostics\\": {\\"Enabled\\" : ' - '\\"True\\",\\"StorageUri\\" : null}}"" to enable boot diagnostics. ' - 'You can replace "null" with a custom storage account ' - '\\"https://mystor.blob.windows.net/"\\. Then run "az vmss update-instances -n ' - 'MyScaleSet -g MyResourceGroup --instance-ids *".') - raise AzureConnectionError( - error_message, recommendation=recommendation) else: - try: - result = client.virtual_machines.get( - resource_group_name, vm_vmss_name, expand='instanceView') - except ComputeClientResourceNotFoundError as e: - try: - client.virtual_machine_scale_sets.get( - resource_group_name, vm_vmss_name) - except ComputeClientResourceNotFoundError: - raise e from e - error_message = e.message - recommendation = ("We found that you specified a Virtual Machine Scale Set and not a VM. " - "Use the --instance-id parameter to select the VMSS instance you want to connect to.") - raise ResourceNotFoundError( - error_message, recommendation=recommendation) from e if (result.instance_view is not None and result.instance_view.os_name is not None and "windows" in result.instance_view.os_name.lower()): @@ -649,16 +626,6 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): raise AzureConnectionError( error_message, recommendation=recommendation) - if (result.diagnostics_profile is None or - result.diagnostics_profile.boot_diagnostics is None or - not result.diagnostics_profile.boot_diagnostics.enabled): - error_message = "Azure Serial Console requires boot diagnostics to be enabled." - recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup" ' - 'to enable boot diagnostics. You can specify a custom storage account with the ' - 'parameter "--storage https://mystor.blob.windows.net/".') - raise AzureConnectionError( - error_message, recommendation=recommendation) - def connect_serialconsole(cmd, resource_group_name, vm_vmss_name, vmss_instanceid=None): check_resource(cmd.cli_ctx, resource_group_name, @@ -706,43 +673,90 @@ def disable_serialconsole(cmd): return client.disable_console() -def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name): +def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): from azext_serialconsole._client_factory import storage_client_factory - from . import _arm_endpoints as AE + result = None + storage_account_region = None client = _compute_client_factory(cli_ctx) scf = storage_client_factory(cli_ctx) - try: - result = client.virtual_machines.get( - resource_group_name, vm_vmss_name, expand='instanceView') - except ComputeClientResourceNotFoundError as e: - error_message = e.message - recommendation = (f"The specified Virtual Machine {vm_vmss_name} wasn't found within the " - f"resource group {resource_group_name}. Please verify that the Virtual Machine " - "exists and is valid for your subscription.") - raise ResourceNotFoundError( - error_message, recommendation=recommendation) from e - - if (result.diagnostics_profile is not None and - result.diagnostics_profile.boot_diagnostics is not None): - storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri + if vmss_instanceid: + result_data = client.virtual_machine_scale_set_vms.get_instance_view( + resource_group_name, vm_vmss_name, vmss_instanceid) + result = result_data + + if result_data.boot_diagnostics is None: + error_message = "Azure Serial Console requires boot diagnostics to be enabled." + recommendation = ('Use "az vmss update --name MyScaleSet --resource-group MyResourceGroup --set ' + 'virtualMachineProfile.diagnosticsProfile="{\\"bootDiagnostics\\": {\\"Enabled\\" : ' + '\\"True\\",\\"StorageUri\\" : null}}"" to enable boot diagnostics. ' + 'You can replace "null" with a custom storage account ' + '\\"https://mystor.blob.windows.net/"\\. Then run "az vmss update-instances -n ' + 'MyScaleSet -g MyResourceGroup --instance-ids *".') + raise AzureConnectionError( + error_message, recommendation=recommendation) + else: + if result.boot_diagnostics is not None: + print(result.boot_diagnostics) + if result.boot_diagnostics.console_screenshot_blob_uri is not None: + storage_account_url = result.boot_diagnostics.console_screenshot_blob_uri + storage_account_region = get_storage_account_info(storage_account_url, resource_group_name, scf) + else: + try: + result_data = client.virtual_machines.get( + resource_group_name, vm_vmss_name, expand='instanceView') + result = result_data + except ComputeClientResourceNotFoundError as e: + try: + client.virtual_machine_scale_sets.get(resource_group_name, vm_vmss_name) + except ComputeClientResourceNotFoundError: + raise e from e + error_message = e.message + recommendation = ("We found that you specified a Virtual Machine Scale Set and not a VM. " + "Use the --instance-id parameter to select the VMSS instance you want to connect to.") + raise ResourceNotFoundError( + error_message, recommendation=recommendation) from e + + if (result.diagnostics_profile is None or + result.diagnostics_profile.boot_diagnostics is None or + not result.diagnostics_profile.boot_diagnostics.enabled): + error_message = "Azure Serial Console requires boot diagnostics to be enabled." + recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup" ' + 'to enable boot diagnostics. You can specify a custom storage account with the ' + 'parameter "--storage https://mystor.blob.windows.net/".') + raise AzureConnectionError( + error_message, recommendation=recommendation) + else: + if result.diagnostics_profile is not None: + if result.diagnostics_profile.boot_diagnostics is not None: + storage_account_url = result.diagnostics_profile.boot_diagnostics.storage_uri + storage_account_region = get_storage_account_info(storage_account_url, resource_group_name, scf) + + return result, storage_account_region + + +def get_storage_account_info(storage_account_url, resource_group_name, scf): + from azext_serialconsole._arm_endpoints import ArmEndpoints + + if storage_account_url is not None: storage_account = parse_storage_account_url(storage_account_url) if storage_account is not None: sa_result = scf.storage_accounts.get_properties(resource_group_name, storage_account) if (sa_result is not None and sa_result.network_rule_set is not None and len(sa_result.network_rule_set.ip_rules) > 0): - return AE.ArmEndpoints.region_prefix_pairings[sa_result.location] + return ArmEndpoints.region_prefix_pairings[sa_result.location] return None def parse_storage_account_url(url): - sa_list = url.split('.') - if len(sa_list) > 0: - sa_url = sa_list[0] - sa_url = sa_url.replace("https://", "") - return sa_url + if url is not None: + sa_list = url.split('.') + if len(sa_list) > 0: + sa_url = sa_list[0] + sa_url = sa_url.replace("https://", "") + return sa_url return None diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml index ae7e7197e16..56753b13741 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml @@ -11,54 +11,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:10:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - unknown - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: @@ -74,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Wed, 12 Oct 2022 20:26:45 GMT expires: - '-1' pragma: @@ -100,7 +53,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: @@ -116,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Wed, 12 Oct 2022 20:26:46 GMT expires: - '-1' pragma: @@ -142,54 +95,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:10:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - unknown - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 response: @@ -205,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:46 GMT expires: - '-1' pragma: @@ -296,13 +202,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:32 GMT + - Wed, 12 Oct 2022 20:26:47 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 04 Aug 2022 17:15:32 GMT + - Wed, 12 Oct 2022 20:31:47 GMT source-age: - - '154' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -316,15 +222,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e094d23543d00b0b2fb9b969ba4aaaf5e3e68b2f + - 29db9dba783dfb6c7445f841b680c224fadff98a x-frame-options: - deny x-github-request-id: - - 5064:23C7:122D3E:1DAA5F:62EBFB90 + - 0805:2971:2ED5B:3DBB9:6346F7A2 x-served-by: - - cache-pao17467-PAO + - cache-dal21253-DAL x-timer: - - S1659633032.083799,VS0,VE1 + - S1665606407.240136,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -344,13 +250,13 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202209210\"\r\n \ }\r\n]" headers: cache-control: @@ -360,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:46 GMT expires: - '-1' pragma: @@ -377,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982 status: code: 200 message: OK @@ -395,9 +301,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202207120?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -407,20 +313,21 @@ interactions: {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": + []\r\n },\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202209210\"\r\n}" headers: cache-control: - no-cache content-length: - - '1044' + - '1050' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:32 GMT + - Wed, 12 Oct 2022 20:26:47 GMT expires: - '-1' pragma: @@ -437,7 +344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73987 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -455,7 +362,7 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -469,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:32 GMT + - Wed, 12 Oct 2022 20:26:47 GMT expires: - '-1' pragma: @@ -513,10 +420,10 @@ interactions: "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "cli000003", - "adminUsername": "rhl", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5", - "path": "/home/rhl/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "incremental"}}' + "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n", "path": "/home/rhoover/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -527,29 +434,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3604' + - '3810' Content-Type: - application/json ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","name":"vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3174778786938806105","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-08-04T17:10:34.1268595Z","duration":"PT0.000621S","correlationId":"a96cd311-4406-46f5-b215-69ad6a4b319d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","name":"vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12101603571349635289","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-12T20:26:51.2962067Z","duration":"PT0.0006403S","correlationId":"e62f1d12-5a05-4b22-9280-6af6fd39adb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ/operationStatuses/08585419738520445305?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8/operationStatuses/08585360004759287717?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2489' + - '2491' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:33 GMT + - Wed, 12 Oct 2022 20:26:50 GMT expires: - '-1' pragma: @@ -559,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -577,51 +484,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738520445305?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Aug 2022 17:11:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image -l --generate-ssh-keys - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738520445305?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004759287717?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -633,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Wed, 12 Oct 2022 20:27:21 GMT expires: - '-1' pragma: @@ -661,21 +526,21 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","name":"vm_deploy_4DzMptweDBWqE0NyUzbtmyKes2ujJpLJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3174778786938806105","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-08-04T17:11:17.2771259Z","duration":"PT43.1508874S","correlationId":"a96cd311-4406-46f5-b215-69ad6a4b319d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","name":"vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12101603571349635289","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-12T20:27:12.5564264Z","duration":"PT21.26086S","correlationId":"e62f1d12-5a05-4b22-9280-6af6fd39adb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3349' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Wed, 12 Oct 2022 20:27:21 GMT expires: - '-1' pragma: @@ -703,64 +568,65 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-08-04T17:11:30+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"2022-10-12T20:27:22+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:10:51.5255088+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:27:02.5411761+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:11:16.4472219+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:27:11.197682+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3913' + - '4231' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Wed, 12 Oct 2022 20:27:22 GMT expires: - '-1' pragma: @@ -777,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31940 + - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31885 status: code: 200 message: OK @@ -795,18 +661,18 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"cli000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\",\r\n - \ \"etag\": \"W/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"940e455d-8148-4a75-b27f-c90279a67b3a\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"601b5ed0-d41f-4643-8e93-f1c73b03c315\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"71b33c53-36c7-4334-af34-3a370b0341db\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\",\r\n - \ \"etag\": \"W/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\r\n + \ \"etag\": \"W/\\\"940e455d-8148-4a75-b27f-c90279a67b3a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -815,8 +681,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"kzhglzq3n3getbkfek1c4nh5uc.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-77-28-51\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"pm4h3a4tkcoerfze2dzdxbd4ng.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-78-90-4E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -831,9 +697,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Wed, 12 Oct 2022 20:27:22 GMT etag: - - W/"aa101b49-17b4-47d7-b456-b0440c039d94" + - W/"940e455d-8148-4a75-b27f-c90279a67b3a" expires: - '-1' pragma: @@ -850,7 +716,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55f55800-aef1-4d1c-91b7-4e700fa97487 + - 621703d6-3573-4b8f-99f8-b2d2249dd45b status: code: 200 message: OK @@ -868,17 +734,17 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"cli000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"0289d247-5917-4b30-b9a3-abdec4758c7f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1c2a1ce2-029d-4275-a255-d11fe2811b70\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"379f9ab3-9fbd-43b4-922e-1e62313bcd59\",\r\n - \ \"ipAddress\": \"20.112.39.82\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"8870ea16-9619-42c1-ad44-a3f6cc79cb08\",\r\n + \ \"ipAddress\": \"20.112.112.217\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -886,13 +752,13 @@ interactions: cache-control: - no-cache content-length: - - '927' + - '929' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Wed, 12 Oct 2022 20:27:23 GMT etag: - - W/"0289d247-5917-4b30-b9a3-abdec4758c7f" + - W/"1c2a1ce2-029d-4275-a255-d11fe2811b70" expires: - '-1' pragma: @@ -909,7 +775,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06230199-dc1b-4e72-9e85-320ed4ee9c4d + - 8dc9747c-0e40-487f-a8a8-e8d61076357b status: code: 200 message: OK @@ -927,113 +793,65 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:11:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image -l --generate-ssh-keys - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-08-04T17:11:30+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"2022-10-12T20:27:22+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:10:51.5255088+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:27:02.5411761+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:11:16.4472219+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:27:11.197682+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3913' + - '4231' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Wed, 12 Oct 2022 20:27:24 GMT expires: - '-1' pragma: @@ -1050,7 +868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31939 + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31884 status: code: 200 message: OK @@ -1068,47 +886,48 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2608' + - '2929' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Wed, 12 Oct 2022 20:27:24 GMT expires: - '-1' pragma: @@ -1125,22 +944,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31938 + - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31883 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": - "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": + {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": - "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": - true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": + true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": true}}}}' headers: Accept: @@ -1152,58 +973,59 @@ interactions: Connection: - keep-alive Content-Length: - - '1636' + - '1942' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/84c4b08a-9fe7-46e5-833f-e3caa74dba4f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/beb4b6da-7786-44c6-befd-46916519b2fb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2706' + - '3027' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:36 GMT + - Wed, 12 Oct 2022 20:27:26 GMT expires: - '-1' pragma: @@ -1220,9 +1042,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;500,Microsoft.Compute/PutVM30Min;2507 + - Microsoft.Compute/PutVM3Min;592,Microsoft.Compute/PutVM30Min;2974 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1240,23 +1062,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/84c4b08a-9fe7-46e5-833f-e3caa74dba4f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/beb4b6da-7786-44c6-befd-46916519b2fb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:11:37.181473+00:00\",\r\n \"endTime\": - \"2022-08-04T17:11:42.3690015+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"84c4b08a-9fe7-46e5-833f-e3caa74dba4f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:27:26.1822581+00:00\",\r\n \"endTime\": + \"2022-10-12T20:27:33.0885446+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"beb4b6da-7786-44c6-befd-46916519b2fb\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:07 GMT + - Wed, 12 Oct 2022 20:27:56 GMT expires: - '-1' pragma: @@ -1273,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29871 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -1291,48 +1113,49 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2707' + - '3028' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:07 GMT + - Wed, 12 Oct 2022 20:27:56 GMT expires: - '-1' pragma: @@ -1349,56 +1172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31933 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm boot-diagnostics enable - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:12:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31880 status: code: 200 message: OK @@ -1416,67 +1190,68 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:11:48+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:27:34+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:11:37.6971283+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:27:26.760378+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:11:42.3533387+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:27:33.0728669+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4042' + - '4360' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:08 GMT + - Wed, 12 Oct 2022 20:27:57 GMT expires: - '-1' pragma: @@ -1493,7 +1268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31932 + - Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31879 status: code: 200 message: OK @@ -1505,81 +1280,84 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm boot-diagnostics enable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: '' + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '0' + - '43' + content-type: + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:12:09 GMT + - Wed, 12 Oct 2022 20:27:57 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1194 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-frame-options: + - deny status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - vm deallocate Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:09.1656681+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d7a758b8-1915-42bb-a410-7f6f3405c9bb\"\r\n}" + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 04 Aug 2022 17:12:19 GMT + - Wed, 12 Oct 2022 20:27:58 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1587,17 +1365,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29870 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1612,23 +1388,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:09.1656681+00:00\",\r\n \"endTime\": - \"2022-08-04T17:12:38.2123701+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d7a758b8-1915-42bb-a410-7f6f3405c9bb\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:27:58.7914719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3329a62-6d47-424e-ac61-93ca81f5e66c\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Wed, 12 Oct 2022 20:28:08 GMT expires: - '-1' pragma: @@ -1645,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29841 status: code: 200 message: OK @@ -1663,19 +1438,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d7a758b8-1915-42bb-a410-7f6f3405c9bb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2022-10-12T20:27:58.7914719+00:00\",\r\n \"endTime\": + \"2022-10-12T20:28:39.2284862+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c3329a62-6d47-424e-ac61-93ca81f5e66c\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '184' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Wed, 12 Oct 2022 20:28:44 GMT expires: - '-1' pragma: @@ -1685,10 +1464,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -1696,7 +1479,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1706,38 +1489,32 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: '' headers: cache-control: - no-cache content-length: - - '43' - content-type: - - application/json; charset=UTF-8 + - '0' date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Wed, 12 Oct 2022 20:28:45 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -1755,59 +1532,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n - \ \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n \"statuses\": + \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:12:37.8998954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:28:39.025367+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:12:37.9155549+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:28:39.0409995+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3501' + - '3818' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Wed, 12 Oct 2022 20:28:45 GMT expires: - '-1' pragma: @@ -1824,7 +1602,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31926 + - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31874 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:28:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny status: code: 200 message: OK @@ -1844,25 +1671,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:12:56 GMT + - Wed, 12 Oct 2022 20:28:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1873,7 +1702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195 + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1893,13 +1722,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:56.6498162+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"f7eea585-6ef7-480e-8e82-1309aec78928\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" headers: cache-control: - no-cache @@ -1908,7 +1737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:06 GMT + - Wed, 12 Oct 2022 20:28:56 GMT expires: - '-1' pragma: @@ -1925,7 +1754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29835 status: code: 200 message: OK @@ -1943,23 +1772,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:56.6498162+00:00\",\r\n \"endTime\": - \"2022-08-04T17:13:14.8372222+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f7eea585-6ef7-480e-8e82-1309aec78928\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Wed, 12 Oct 2022 20:29:05 GMT expires: - '-1' pragma: @@ -1976,7 +1804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29828 status: code: 200 message: OK @@ -1994,19 +1822,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f7eea585-6ef7-480e-8e82-1309aec78928?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"endTime\": + \"2022-10-12T20:29:07.9626692+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '184' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Wed, 12 Oct 2022 20:29:36 GMT expires: - '-1' pragma: @@ -2016,10 +1848,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -2027,37 +1863,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - vm start Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Wed, 12 Oct 2022 20:29:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2068,45 +1898,47 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1194 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29824 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - vm stop Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:13:37.8527352+00:00\",\r\n \"endTime\": - \"2022-08-04T17:13:46.103382+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b0708181-81f0-4bad-8c47-7171f5883c6e\"\r\n}" + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '183' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 04 Aug 2022 17:14:07 GMT + - Wed, 12 Oct 2022 20:29:37 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2114,17 +1946,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29825 + - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2139,19 +1969,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b0708181-81f0-4bad-8c47-7171f5883c6e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2022-10-12T20:29:38.0249186+00:00\",\r\n \"endTime\": + \"2022-10-12T20:29:43.7436098+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c830ac01-590f-4d39-bbd0-d83d9535be81\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '184' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:07 GMT + - Wed, 12 Oct 2022 20:30:08 GMT expires: - '-1' pragma: @@ -2161,10 +1995,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29824 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -2172,7 +2010,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2182,38 +2020,32 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: '' headers: cache-control: - no-cache content-length: - - '43' - content-type: - - application/json; charset=UTF-8 + - '0' date: - - Thu, 04 Aug 2022 17:14:08 GMT + - Wed, 12 Oct 2022 20:30:08 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -2231,67 +2063,72 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:12:57.8216908+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:29:41.9311381+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:13:46.0870281+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:29:43.7436098+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4089' + - '4823' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:09 GMT + - Wed, 12 Oct 2022 20:30:08 GMT expires: - '-1' pragma: @@ -2308,7 +2145,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31919 + - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31890 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:30:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny status: code: 200 message: OK @@ -2326,48 +2212,53 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2754' + - '3490' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:09 GMT + - Wed, 12 Oct 2022 20:30:10 GMT expires: - '-1' pragma: @@ -2384,22 +2275,25 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31918 + - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31889 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": - "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": + {}}}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": + {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": - "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": - true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": + true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": false}}}}' headers: Accept: @@ -2411,58 +2305,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1684' + - '2241' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/74879055-383b-4ae3-91fb-897edde33812?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ed34acc-4cdd-4c8c-870a-f02a83cf142e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2754' + - '3490' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:10 GMT + - Wed, 12 Oct 2022 20:30:13 GMT expires: - '-1' pragma: @@ -2479,9 +2378,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;479,Microsoft.Compute/PutVM30Min;2399 + - Microsoft.Compute/PutVM3Min;593,Microsoft.Compute/PutVM30Min;2972 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2499,14 +2398,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/74879055-383b-4ae3-91fb-897edde33812?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ed34acc-4cdd-4c8c-870a-f02a83cf142e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:14:10.4462305+00:00\",\r\n \"endTime\": - \"2022-08-04T17:14:12.3993014+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"74879055-383b-4ae3-91fb-897edde33812\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:30:12.0402434+00:00\",\r\n \"endTime\": + \"2022-10-12T20:30:14.5246091+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3ed34acc-4cdd-4c8c-870a-f02a83cf142e\"\r\n}" headers: cache-control: - no-cache @@ -2515,7 +2414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:40 GMT + - Wed, 12 Oct 2022 20:30:43 GMT expires: - '-1' pragma: @@ -2532,7 +2431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29813 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -2550,48 +2449,53 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2755' + - '3491' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:40 GMT + - Wed, 12 Oct 2022 20:30:43 GMT expires: - '-1' pragma: @@ -2608,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31915 + - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31881 status: code: 200 message: OK @@ -2626,115 +2530,71 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:14:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm boot-diagnostics disable - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:12.3837386+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:14.5090184+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4060' + - '4794' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:41 GMT + - Wed, 12 Oct 2022 20:30:43 GMT expires: - '-1' pragma: @@ -2751,7 +2611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31914 + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31880 status: code: 200 message: OK @@ -2771,25 +2631,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:42 GMT + - Wed, 12 Oct 2022 20:30:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2800,7 +2662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1193 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2820,23 +2682,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:14:42.6335413+00:00\",\r\n \"endTime\": - \"2022-08-04T17:14:51.3366103+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b9043596-332a-4c89-bdc0-047ff78b5a94\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:30:44.883638+00:00\",\r\n \"endTime\": + \"2022-10-12T20:30:52.805441+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"06978101-bcc4-46df-8811-e2949309adbf\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '182' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:52 GMT + - Wed, 12 Oct 2022 20:30:55 GMT expires: - '-1' pragma: @@ -2853,7 +2715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29811 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -2871,9 +2733,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b9043596-332a-4c89-bdc0-047ff78b5a94?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2883,7 +2745,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:52 GMT + - Wed, 12 Oct 2022 20:30:55 GMT expires: - '-1' pragma: @@ -2896,56 +2758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29809 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm start - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:14:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29903 status: code: 200 message: OK @@ -2963,66 +2776,71 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n + \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:30+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:51.3209989+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:52.7898439+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4060' + - '4794' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:53 GMT + - Wed, 12 Oct 2022 20:30:56 GMT expires: - '-1' pragma: @@ -3039,7 +2857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31912 + - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31878 status: code: 200 message: OK @@ -3057,48 +2875,53 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2755' + - '3491' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:53 GMT + - Wed, 12 Oct 2022 20:30:56 GMT expires: - '-1' pragma: @@ -3115,7 +2938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31911 + - Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31875 status: code: 200 message: OK @@ -3133,21 +2956,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan/providers/Microsoft.Storage/storageAccounts/bkerrigandiag","name":"bkerrigandiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-17T00:24:49.4879627Z","key2":"2022-05-17T00:24:49.4879627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-17T00:24:49.3473400Z","primaryEndpoints":{"blob":"https://bkerrigandiag.blob.core.windows.net/","queue":"https://bkerrigandiag.queue.core.windows.net/","table":"https://bkerrigandiag.table.core.windows.net/","file":"https://bkerrigandiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw/providers/Microsoft.Storage/storageAccounts/craigwendpointtest","name":"craigwendpointtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-15T21:56:49.8049186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-15T21:56:49.8049186Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-15T21:56:49.7111640Z","primaryEndpoints":{"dfs":"https://craigwendpointtest.dfs.core.windows.net/","web":"https://craigwendpointtest.z13.web.core.windows.net/","blob":"https://craigwendpointtest.blob.core.windows.net/","queue":"https://craigwendpointtest.queue.core.windows.net/","table":"https://craigwendpointtest.table.core.windows.net/","file":"https://craigwendpointtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://craigwendpointtest-secondary.dfs.core.windows.net/","web":"https://craigwendpointtest-secondary.z13.web.core.windows.net/","blob":"https://craigwendpointtest-secondary.blob.core.windows.net/","queue":"https://craigwendpointtest-secondary.queue.core.windows.net/","table":"https://craigwendpointtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-win10test/providers/Microsoft.Storage/storageAccounts/craigwwin10test","name":"craigwwin10test","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-17T23:02:04.3032505Z","key2":"2021-05-17T23:02:04.3032505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-17T23:02:04.3032505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-17T23:02:04.3032505Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-17T23:02:04.1938884Z","primaryEndpoints":{"blob":"https://craigwwin10test.blob.core.windows.net/","queue":"https://craigwwin10test.queue.core.windows.net/","table":"https://craigwwin10test.table.core.windows.net/","file":"https://craigwwin10test.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032001f4814ba9","name":"cs210032001f4814ba9","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-16T14:16:22.3477819Z","key2":"2022-05-16T14:16:22.3477819Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-16T14:16:22.2227752Z","primaryEndpoints":{"dfs":"https://cs210032001f4814ba9.dfs.core.windows.net/","web":"https://cs210032001f4814ba9.z13.web.core.windows.net/","blob":"https://cs210032001f4814ba9.blob.core.windows.net/","queue":"https://cs210032001f4814ba9.queue.core.windows.net/","table":"https://cs210032001f4814ba9.table.core.windows.net/","file":"https://cs210032001f4814ba9.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoflow/providers/Microsoft.Storage/storageAccounts/csslinuxkustoflow","name":"csslinuxkustoflow","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"CreatedBy":"craigw"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-01T20:08:38.5912170Z","primaryEndpoints":{"dfs":"https://csslinuxkustoflow.dfs.core.windows.net/","web":"https://csslinuxkustoflow.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow.blob.core.windows.net/","queue":"https://csslinuxkustoflow.queue.core.windows.net/","table":"https://csslinuxkustoflow.table.core.windows.net/","file":"https://csslinuxkustoflow.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://csslinuxkustoflow-secondary.dfs.core.windows.net/","web":"https://csslinuxkustoflow-secondary.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow-secondary.blob.core.windows.net/","queue":"https://csslinuxkustoflow-secondary.queue.core.windows.net/","table":"https://csslinuxkustoflow-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gen2-linux/providers/Microsoft.Storage/storageAccounts/gen2linux3be402a0b8","name":"gen2linux3be402a0b8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-09T22:30:46.7307987Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-09T22:30:46.7307987Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T22:30:46.6214203Z","primaryEndpoints":{"blob":"https://gen2linux3be402a0b8.blob.core.windows.net/","queue":"https://gen2linux3be402a0b8.queue.core.windows.net/","table":"https://gen2linux3be402a0b8.table.core.windows.net/","file":"https://gen2linux3be402a0b8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus/providers/Microsoft.Storage/storageAccounts/scrunnercrkwpdn5nhtgg","name":"scrunnercrkwpdn5nhtgg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T20:03:57.5451905Z","primaryEndpoints":{"blob":"https://scrunnercrkwpdn5nhtgg.blob.core.windows.net/","queue":"https://scrunnercrkwpdn5nhtgg.queue.core.windows.net/","table":"https://scrunnercrkwpdn5nhtgg.table.core.windows.net/","file":"https://scrunnercrkwpdn5nhtgg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialconsolepreview","name":"serialconsolepreview","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-07T21:41:56.3607334Z","key2":"2021-05-07T21:41:56.3607334Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-07T21:41:56.2513536Z","primaryEndpoints":{"dfs":"https://serialconsolepreview.dfs.core.windows.net/","web":"https://serialconsolepreview.z13.web.core.windows.net/","blob":"https://serialconsolepreview.blob.core.windows.net/","queue":"https://serialconsolepreview.queue.core.windows.net/","table":"https://serialconsolepreview.table.core.windows.net/","file":"https://serialconsolepreview.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://serialconsolepreview-secondary.dfs.core.windows.net/","web":"https://serialconsolepreview-secondary.z13.web.core.windows.net/","blob":"https://serialconsolepreview-secondary.blob.core.windows.net/","queue":"https://serialconsolepreview-secondary.queue.core.windows.net/","table":"https://serialconsolepreview-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialconsole-test/providers/Microsoft.Storage/storageAccounts/serialconsoletestdiag","name":"serialconsoletestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-02-06T20:21:39.5925779Z","primaryEndpoints":{"blob":"https://serialconsoletestdiag.blob.core.windows.net/","queue":"https://serialconsoletestdiag.queue.core.windows.net/","table":"https://serialconsoletestdiag.table.core.windows.net/","file":"https://serialconsoletestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialTest-EastUS/providers/Microsoft.Storage/storageAccounts/serialtesta8d7fdee41","name":"serialtesta8d7fdee41","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-11T00:38:13.4452119Z","primaryEndpoints":{"blob":"https://serialtesta8d7fdee41.blob.core.windows.net/","queue":"https://serialtesta8d7fdee41.queue.core.windows.net/","table":"https://serialtesta8d7fdee41.table.core.windows.net/","file":"https://serialtesta8d7fdee41.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialtestbootdiag123","name":"serialtestbootdiag123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-23T04:03:01.2951106Z","primaryEndpoints":{"blob":"https://serialtestbootdiag123.blob.core.windows.net/","queue":"https://serialtestbootdiag123.queue.core.windows.net/","table":"https://serialtestbootdiag123.table.core.windows.net/","file":"https://serialtestbootdiag123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuas-rg/providers/Microsoft.Storage/storageAccounts/yuasstorageacct","name":"yuasstorageacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-02T12:18:18.8547131Z","key2":"2022-08-02T12:18:18.8547131Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-02T12:18:18.7140969Z","primaryEndpoints":{"dfs":"https://yuasstorageacct.dfs.core.windows.net/","web":"https://yuasstorageacct.z13.web.core.windows.net/","blob":"https://yuasstorageacct.blob.core.windows.net/","queue":"https://yuasstorageacct.queue.core.windows.net/","table":"https://yuasstorageacct.table.core.windows.net/","file":"https://yuasstorageacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuasstorageacct-secondary.dfs.core.windows.net/","web":"https://yuasstorageacct-secondary.z13.web.core.windows.net/","blob":"https://yuasstorageacct-secondary.blob.core.windows.net/","queue":"https://yuasstorageacct-secondary.queue.core.windows.net/","table":"https://yuasstorageacct-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bkerrigandevrgdiag","name":"bkerrigandevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T15:22:23.0244089Z","key2":"2022-05-18T15:22:23.0244089Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T15:22:23.0400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T15:22:23.0400357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T15:22:22.9150287Z","primaryEndpoints":{"blob":"https://bkerrigandevrgdiag.blob.core.windows.net/","queue":"https://bkerrigandevrgdiag.queue.core.windows.net/","table":"https://bkerrigandevrgdiag.table.core.windows.net/","file":"https://bkerrigandevrgdiag.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2eastus2storage","name":"guptar2eastus2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:08:00.6935848Z","key2":"2022-07-28T23:08:00.6935848Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:08:00.5840608Z","primaryEndpoints":{"dfs":"https://guptar2eastus2storage.dfs.core.windows.net/","web":"https://guptar2eastus2storage.z20.web.core.windows.net/","blob":"https://guptar2eastus2storage.blob.core.windows.net/","queue":"https://guptar2eastus2storage.queue.core.windows.net/","table":"https://guptar2eastus2storage.table.core.windows.net/","file":"https://guptar2eastus2storage.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhel-test/providers/Microsoft.Storage/storageAccounts/rhel77acct","name":"rhel77acct","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T20:31:30.8215811Z","primaryEndpoints":{"blob":"https://rhel77acct.blob.core.windows.net/","queue":"https://rhel77acct.queue.core.windows.net/","table":"https://rhel77acct.table.core.windows.net/","file":"https://rhel77acct.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320010c152e3d","name":"cs4100320010c152e3d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-07T20:19:42.9636823Z","key2":"2022-02-07T20:19:42.9636823Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-07T20:19:42.8699133Z","primaryEndpoints":{"dfs":"https://cs4100320010c152e3d.dfs.core.windows.net/","web":"https://cs4100320010c152e3d.z22.web.core.windows.net/","blob":"https://cs4100320010c152e3d.blob.core.windows.net/","queue":"https://cs4100320010c152e3d.queue.core.windows.net/","table":"https://cs4100320010c152e3d.table.core.windows.net/","file":"https://cs4100320010c152e3d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-23T23:07:15.9333036Z","primaryEndpoints":{"dfs":"https://cs410037ffea943c134.dfs.core.windows.net/","web":"https://cs410037ffea943c134.z22.web.core.windows.net/","blob":"https://cs410037ffea943c134.blob.core.windows.net/","queue":"https://cs410037ffea943c134.queue.core.windows.net/","table":"https://cs410037ffea943c134.table.core.windows.net/","file":"https://cs410037ffea943c134.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffd81f3ab32","name":"cs41003bffd81f3ab32","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-29T00:18:56.4686445Z","key2":"2022-07-29T00:18:56.4686445Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T00:18:56.3748663Z","primaryEndpoints":{"dfs":"https://cs41003bffd81f3ab32.dfs.core.windows.net/","web":"https://cs41003bffd81f3ab32.z22.web.core.windows.net/","blob":"https://cs41003bffd81f3ab32.blob.core.windows.net/","queue":"https://cs41003bffd81f3ab32.queue.core.windows.net/","table":"https://cs41003bffd81f3ab32.table.core.windows.net/","file":"https://cs41003bffd81f3ab32.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4aa22d82de270x4becxb48","name":"cs4aa22d82de270x4becxb48","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-29T23:39:30.2563159Z","primaryEndpoints":{"blob":"https://cs4aa22d82de270x4becxb48.blob.core.windows.net/","queue":"https://cs4aa22d82de270x4becxb48.queue.core.windows.net/","table":"https://cs4aa22d82de270x4becxb48.table.core.windows.net/","file":"https://cs4aa22d82de270x4becxb48.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar/providers/Microsoft.Storage/storageAccounts/guptardevstorage","name":"guptardevstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-15T16:49:43.1435156Z","key2":"2022-02-15T16:49:43.1435156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-15T16:49:43.0341047Z","primaryEndpoints":{"dfs":"https://guptardevstorage.dfs.core.windows.net/","web":"https://guptardevstorage.z22.web.core.windows.net/","blob":"https://guptardevstorage.blob.core.windows.net/","queue":"https://guptardevstorage.queue.core.windows.net/","table":"https://guptardevstorage.table.core.windows.net/","file":"https://guptardevstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunner/providers/Microsoft.Storage/storageAccounts/scrunnerstorage","name":"scrunnerstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-06T00:42:11.6234985Z","primaryEndpoints":{"blob":"https://scrunnerstorage.blob.core.windows.net/","queue":"https://scrunnerstorage.queue.core.windows.net/","table":"https://scrunnerstorage.table.core.windows.net/","file":"https://scrunnerstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lt2-rg/providers/Microsoft.Storage/storageAccounts/sericonjziofteihi","name":"sericonjziofteihi","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-29T22:14:56.3530002Z","key2":"2022-07-29T22:14:56.3530002Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T22:14:56.3686352Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T22:14:56.3686352Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T22:14:56.2123903Z","primaryEndpoints":{"dfs":"https://sericonjziofteihi.dfs.core.windows.net/","web":"https://sericonjziofteihi.z6.web.core.windows.net/","blob":"https://sericonjziofteihi.blob.core.windows.net/","queue":"https://sericonjziofteihi.queue.core.windows.net/","table":"https://sericonjziofteihi.table.core.windows.net/","file":"https://sericonjziofteihi.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sericonjziofteihi-secondary.dfs.core.windows.net/","web":"https://sericonjziofteihi-secondary.z6.web.core.windows.net/","blob":"https://sericonjziofteihi-secondary.blob.core.windows.net/","queue":"https://sericonjziofteihi-secondary.queue.core.windows.net/","table":"https://sericonjziofteihi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/load-rg/providers/Microsoft.Storage/storageAccounts/sericonmvudqscfyk","name":"sericonmvudqscfyk","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-29T20:00:48.2252183Z","key2":"2022-07-29T20:00:48.2252183Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T20:00:48.2408363Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T20:00:48.2408363Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T20:00:48.1001806Z","primaryEndpoints":{"dfs":"https://sericonmvudqscfyk.dfs.core.windows.net/","web":"https://sericonmvudqscfyk.z6.web.core.windows.net/","blob":"https://sericonmvudqscfyk.blob.core.windows.net/","queue":"https://sericonmvudqscfyk.queue.core.windows.net/","table":"https://sericonmvudqscfyk.table.core.windows.net/","file":"https://sericonmvudqscfyk.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sericonmvudqscfyk-secondary.dfs.core.windows.net/","web":"https://sericonmvudqscfyk-secondary.z6.web.core.windows.net/","blob":"https://sericonmvudqscfyk-secondary.blob.core.windows.net/","queue":"https://sericonmvudqscfyk-secondary.queue.core.windows.net/","table":"https://sericonmvudqscfyk-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs710032001417ec1a8","name":"cs710032001417ec1a8","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-18T22:07:33.4170256Z","key2":"2021-05-18T22:07:33.4170256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-18T22:07:33.3389725Z","primaryEndpoints":{"dfs":"https://cs710032001417ec1a8.dfs.core.windows.net/","web":"https://cs710032001417ec1a8.z21.web.core.windows.net/","blob":"https://cs710032001417ec1a8.blob.core.windows.net/","queue":"https://cs710032001417ec1a8.queue.core.windows.net/","table":"https://cs710032001417ec1a8.table.core.windows.net/","file":"https://cs710032001417ec1a8.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover/providers/Microsoft.Storage/storageAccounts/rhooverstorage","name":"rhooverstorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-26T17:14:23.5085026Z","key2":"2022-05-26T17:14:23.5085026Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-26T17:14:23.4147520Z","primaryEndpoints":{"dfs":"https://rhooverstorage.dfs.core.windows.net/","web":"https://rhooverstorage.z21.web.core.windows.net/","blob":"https://rhooverstorage.blob.core.windows.net/","queue":"https://rhooverstorage.queue.core.windows.net/","table":"https://rhooverstorage.table.core.windows.net/","file":"https://rhooverstorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsarestricted","name":"aueastsarestricted","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:32:04.7486474Z","key2":"2022-07-17T04:32:04.7486474Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-networking/providers/Microsoft.Network/virtualNetworks/aueast-vnet/subnets/testing","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:32:04.6861236Z","primaryEndpoints":{"dfs":"https://aueastsarestricted.dfs.core.windows.net/","web":"https://aueastsarestricted.z8.web.core.windows.net/","blob":"https://aueastsarestricted.blob.core.windows.net/","queue":"https://aueastsarestricted.queue.core.windows.net/","table":"https://aueastsarestricted.table.core.windows.net/","file":"https://aueastsarestricted.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsastd","name":"aueastsastd","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:28:55.7260171Z","key2":"2022-07-17T04:28:55.7260171Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:28:55.6634675Z","primaryEndpoints":{"dfs":"https://aueastsastd.dfs.core.windows.net/","web":"https://aueastsastd.z8.web.core.windows.net/","blob":"https://aueastsastd.blob.core.windows.net/","queue":"https://aueastsastd.queue.core.windows.net/","table":"https://aueastsastd.table.core.windows.net/","file":"https://aueastsastd.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunnertestvmrg-AustraliaEast/providers/Microsoft.Storage/storageAccounts/scrunner4p3t72mzheluc","name":"scrunner4p3t72mzheluc","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-13T22:35:36.6210942Z","key2":"2021-04-13T22:35:36.6210942Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T22:35:36.5429508Z","primaryEndpoints":{"blob":"https://scrunner4p3t72mzheluc.blob.core.windows.net/","queue":"https://scrunner4p3t72mzheluc.queue.core.windows.net/","table":"https://scrunner4p3t72mzheluc.table.core.windows.net/","file":"https://scrunner4p3t72mzheluc.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aabedon/providers/Microsoft.Storage/storageAccounts/aabedondiag","name":"aabedondiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-18T23:08:58.5284733Z","key2":"2021-05-18T23:08:58.5284733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T23:08:58.5284733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T23:08:58.5284733Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-18T23:08:58.4503170Z","primaryEndpoints":{"blob":"https://aabedondiag.blob.core.windows.net/","queue":"https://aabedondiag.queue.core.windows.net/","table":"https://aabedondiag.table.core.windows.net/","file":"https://aabedondiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolec6uoh7l3xzbaesvvht7o4yymqvrtjxzjp6xhzlr6uq33wrwalkutf/providers/Microsoft.Storage/storageAccounts/cli2nzt6cf7elcnalnul745f","name":"cli2nzt6cf7elcnalnul745f","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:10.8883580Z","key2":"2022-08-04T17:10:10.8883580Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:10.9039542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:10.9039542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:10.7946308Z","primaryEndpoints":{"blob":"https://cli2nzt6cf7elcnalnul745f.blob.core.windows.net/","queue":"https://cli2nzt6cf7elcnalnul745f.queue.core.windows.net/","table":"https://cli2nzt6cf7elcnalnul745f.table.core.windows.net/","file":"https://cli2nzt6cf7elcnalnul745f.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolesaxgnjdvlvrazb2d7kzgbif6iqxouncy2ql4je4i6xagycvbdwqy3/providers/Microsoft.Storage/storageAccounts/cli4f6xxtlnjteigl6v5t4lv","name":"cli4f6xxtlnjteigl6v5t4lv","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:09.1695976Z","key2":"2022-08-04T17:10:09.1695976Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.1852249Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.1852249Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:09.0758710Z","primaryEndpoints":{"blob":"https://cli4f6xxtlnjteigl6v5t4lv.blob.core.windows.net/","queue":"https://cli4f6xxtlnjteigl6v5t4lv.queue.core.windows.net/","table":"https://cli4f6xxtlnjteigl6v5t4lv.table.core.windows.net/","file":"https://cli4f6xxtlnjteigl6v5t4lv.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoley3ugi77omtuicfeufj7airfyly2mx6q5werdzcrsihvoga5v3vqgw/providers/Microsoft.Storage/storageAccounts/clicnww5fgwrdzxocqcrnpfj","name":"clicnww5fgwrdzxocqcrnpfj","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:12:57.9815047Z","key2":"2022-08-04T17:12:57.9815047Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:12:57.9971598Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:12:57.9971598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:12:57.8878066Z","primaryEndpoints":{"blob":"https://clicnww5fgwrdzxocqcrnpfj.blob.core.windows.net/","queue":"https://clicnww5fgwrdzxocqcrnpfj.queue.core.windows.net/","table":"https://clicnww5fgwrdzxocqcrnpfj.table.core.windows.net/","file":"https://clicnww5fgwrdzxocqcrnpfj.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolexz7y33ftmrn4mdow7xasofcbz7532co6uk6mo33fg3frfnznzd7mt/providers/Microsoft.Storage/storageAccounts/clid32qhbjy4liaqoy6z3cot","name":"clid32qhbjy4liaqoy6z3cot","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T05:30:13.6295332Z","key2":"2022-08-04T05:30:13.6295332Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T05:30:13.6451524Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T05:30:13.6451524Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T05:30:13.5514577Z","primaryEndpoints":{"blob":"https://clid32qhbjy4liaqoy6z3cot.blob.core.windows.net/","queue":"https://clid32qhbjy4liaqoy6z3cot.queue.core.windows.net/","table":"https://clid32qhbjy4liaqoy6z3cot.table.core.windows.net/","file":"https://clid32qhbjy4liaqoy6z3cot.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolej3epdwbxyovtvemgmi2jcjmyfpfaq62os62nnyx3awxoyb54aq5e3/providers/Microsoft.Storage/storageAccounts/clielzocytedvrayy4w4hdmz","name":"clielzocytedvrayy4w4hdmz","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:14:50.2782645Z","key2":"2022-08-04T17:14:50.2782645Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:14:50.2938724Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:14:50.2938724Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2022-08-04T17:14:50.1845479Z","primaryEndpoints":{"blob":"https://clielzocytedvrayy4w4hdmz.blob.core.windows.net/","queue":"https://clielzocytedvrayy4w4hdmz.queue.core.windows.net/","table":"https://clielzocytedvrayy4w4hdmz.table.core.windows.net/","file":"https://clielzocytedvrayy4w4hdmz.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-04T17:10:09.6539719Z","key2":"2022-08-04T17:10:09.6539719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.6696214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-04T17:10:09.6696214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-04T17:10:09.5446548Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-gui-test_group/providers/Microsoft.Storage/storageAccounts/craigwguitestgroupdiag","name":"craigwguitestgroupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-25T20:43:28.9782992Z","key2":"2021-06-25T20:43:28.9782992Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-25T20:43:28.9001463Z","primaryEndpoints":{"blob":"https://craigwguitestgroupdiag.blob.core.windows.net/","queue":"https://craigwguitestgroupdiag.queue.core.windows.net/","table":"https://craigwguitestgroupdiag.table.core.windows.net/","file":"https://craigwguitestgroupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv1","name":"guptar2diagnosticsv1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:21:41.8250582Z","key2":"2022-04-05T17:21:41.8250582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-05T17:21:41.7313240Z","primaryEndpoints":{"blob":"https://guptar2diagnosticsv1.blob.core.windows.net/","queue":"https://guptar2diagnosticsv1.queue.core.windows.net/","table":"https://guptar2diagnosticsv1.table.core.windows.net/","file":"https://guptar2diagnosticsv1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv2","name":"guptar2diagnosticsv2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:22:55.8411567Z","key2":"2022-04-05T17:22:55.8411567Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-05T17:22:55.7318000Z","primaryEndpoints":{"dfs":"https://guptar2diagnosticsv2.dfs.core.windows.net/","web":"https://guptar2diagnosticsv2.z5.web.core.windows.net/","blob":"https://guptar2diagnosticsv2.blob.core.windows.net/","queue":"https://guptar2diagnosticsv2.queue.core.windows.net/","table":"https://guptar2diagnosticsv2.table.core.windows.net/","file":"https://guptar2diagnosticsv2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sericonrp-trafficmanager/providers/Microsoft.Storage/storageAccounts/sericonrpdevtmstorage","name":"sericonrpdevtmstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-15T09:23:38.0203325Z","key2":"2021-09-15T09:23:38.0203325Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-15T09:23:37.9265953Z","primaryEndpoints":{"dfs":"https://sericonrpdevtmstorage.dfs.core.windows.net/","web":"https://sericonrpdevtmstorage.z5.web.core.windows.net/","blob":"https://sericonrpdevtmstorage.blob.core.windows.net/","queue":"https://sericonrpdevtmstorage.queue.core.windows.net/","table":"https://sericonrpdevtmstorage.table.core.windows.net/","file":"https://sericonrpdevtmstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover-dev-rg/providers/Microsoft.Storage/storageAccounts/rhooverdevrgdiag","name":"rhooverdevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-20T19:39:24.4605968Z","key2":"2022-06-20T19:39:24.4605968Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-20T19:39:24.4137057Z","primaryEndpoints":{"blob":"https://rhooverdevrgdiag.blob.core.windows.net/","queue":"https://rhooverdevrgdiag.queue.core.windows.net/","table":"https://rhooverdevrgdiag.table.core.windows.net/","file":"https://rhooverdevrgdiag.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westcentralus/providers/Microsoft.Storage/storageAccounts/scrunnerrfscmqxeni3uq","name":"scrunnerrfscmqxeni3uq","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-10T22:28:55.1479670Z","primaryEndpoints":{"blob":"https://scrunnerrfscmqxeni3uq.blob.core.windows.net/","queue":"https://scrunnerrfscmqxeni3uq.queue.core.windows.net/","table":"https://scrunnerrfscmqxeni3uq.table.core.windows.net/","file":"https://scrunnerrfscmqxeni3uq.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westus3_group/providers/Microsoft.Storage/storageAccounts/ubuntuwestus3groupdiag","name":"ubuntuwestus3groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus3","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T19:48:38.9882588Z","key2":"2022-04-18T19:48:38.9882588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-18T19:48:38.9258191Z","primaryEndpoints":{"blob":"https://ubuntuwestus3groupdiag.blob.core.windows.net/","queue":"https://ubuntuwestus3groupdiag.queue.core.windows.net/","table":"https://ubuntuwestus3groupdiag.table.core.windows.net/","file":"https://ubuntuwestus3groupdiag.file.core.windows.net/"},"primaryLocation":"westus3","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/cloudshellcanarystorage","name":"cloudshellcanarystorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-01T21:16:45.8824319Z","key2":"2022-08-01T21:16:45.8824319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-01T21:16:45.8043474Z","primaryEndpoints":{"dfs":"https://cloudshellcanarystorage.dfs.core.windows.net/","web":"https://cloudshellcanarystorage.z3.web.core.windows.net/","blob":"https://cloudshellcanarystorage.blob.core.windows.net/","queue":"https://cloudshellcanarystorage.queue.core.windows.net/","table":"https://cloudshellcanarystorage.table.core.windows.net/","file":"https://cloudshellcanarystorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigwEv5-1_group/providers/Microsoft.Storage/storageAccounts/craigwev51groupdiag","name":"craigwev51groupdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-13T14:34:32.7433319Z","key2":"2022-01-13T14:34:32.7433319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-13T14:34:32.7433319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-13T14:34:32.7433319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-01-13T14:34:32.6652176Z","primaryEndpoints":{"blob":"https://craigwev51groupdiag.blob.core.windows.net/","queue":"https://craigwev51groupdiag.queue.core.windows.net/","table":"https://craigwev51groupdiag.table.core.windows.net/","file":"https://craigwev51groupdiag.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arm64-centraluseuap/providers/Microsoft.Storage/storageAccounts/sericonarm64euap","name":"sericonarm64euap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-05T18:15:35.3504562Z","key2":"2022-01-05T18:15:35.3504562Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-05T18:15:35.3504562Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-05T18:15:35.3504562Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-01-05T18:15:35.3035816Z","primaryEndpoints":{"blob":"https://sericonarm64euap.blob.core.windows.net/","queue":"https://sericonarm64euap.queue.core.windows.net/","table":"https://sericonarm64euap.table.core.windows.net/","file":"https://sericonarm64euap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan/providers/Microsoft.Storage/storageAccounts/bkerrigandiag","name":"bkerrigandiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-17T00:24:49.4879627Z","key2":"2022-05-17T00:24:49.4879627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-17T00:24:49.3473400Z","primaryEndpoints":{"blob":"https://bkerrigandiag.blob.core.windows.net/","queue":"https://bkerrigandiag.queue.core.windows.net/","table":"https://bkerrigandiag.table.core.windows.net/","file":"https://bkerrigandiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032001f4814ba9","name":"cs210032001f4814ba9","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-16T14:16:22.3477819Z","key2":"2022-05-16T14:16:22.3477819Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-16T14:16:22.2227752Z","primaryEndpoints":{"dfs":"https://cs210032001f4814ba9.dfs.core.windows.net/","web":"https://cs210032001f4814ba9.z13.web.core.windows.net/","blob":"https://cs210032001f4814ba9.blob.core.windows.net/","queue":"https://cs210032001f4814ba9.queue.core.windows.net/","table":"https://cs210032001f4814ba9.table.core.windows.net/","file":"https://cs210032001f4814ba9.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoflow/providers/Microsoft.Storage/storageAccounts/csslinuxkustoflow","name":"csslinuxkustoflow","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"CreatedBy":"craigw"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-01T20:08:38.5912170Z","primaryEndpoints":{"dfs":"https://csslinuxkustoflow.dfs.core.windows.net/","web":"https://csslinuxkustoflow.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow.blob.core.windows.net/","queue":"https://csslinuxkustoflow.queue.core.windows.net/","table":"https://csslinuxkustoflow.table.core.windows.net/","file":"https://csslinuxkustoflow.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://csslinuxkustoflow-secondary.dfs.core.windows.net/","web":"https://csslinuxkustoflow-secondary.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow-secondary.blob.core.windows.net/","queue":"https://csslinuxkustoflow-secondary.queue.core.windows.net/","table":"https://csslinuxkustoflow-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus/providers/Microsoft.Storage/storageAccounts/scrunnercrkwpdn5nhtgg","name":"scrunnercrkwpdn5nhtgg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T20:03:57.5451905Z","primaryEndpoints":{"blob":"https://scrunnercrkwpdn5nhtgg.blob.core.windows.net/","queue":"https://scrunnercrkwpdn5nhtgg.queue.core.windows.net/","table":"https://scrunnercrkwpdn5nhtgg.table.core.windows.net/","file":"https://scrunnercrkwpdn5nhtgg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialconsolepreview","name":"serialconsolepreview","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-07T21:41:56.3607334Z","key2":"2021-05-07T21:41:56.3607334Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-07T21:41:56.2513536Z","primaryEndpoints":{"dfs":"https://serialconsolepreview.dfs.core.windows.net/","web":"https://serialconsolepreview.z13.web.core.windows.net/","blob":"https://serialconsolepreview.blob.core.windows.net/","queue":"https://serialconsolepreview.queue.core.windows.net/","table":"https://serialconsolepreview.table.core.windows.net/","file":"https://serialconsolepreview.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://serialconsolepreview-secondary.dfs.core.windows.net/","web":"https://serialconsolepreview-secondary.z13.web.core.windows.net/","blob":"https://serialconsolepreview-secondary.blob.core.windows.net/","queue":"https://serialconsolepreview-secondary.queue.core.windows.net/","table":"https://serialconsolepreview-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialconsole-test/providers/Microsoft.Storage/storageAccounts/serialconsoletestdiag","name":"serialconsoletestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-02-06T20:21:39.5925779Z","primaryEndpoints":{"blob":"https://serialconsoletestdiag.blob.core.windows.net/","queue":"https://serialconsoletestdiag.queue.core.windows.net/","table":"https://serialconsoletestdiag.table.core.windows.net/","file":"https://serialconsoletestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialTest-EastUS/providers/Microsoft.Storage/storageAccounts/serialtesta8d7fdee41","name":"serialtesta8d7fdee41","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-11T00:38:13.4452119Z","primaryEndpoints":{"blob":"https://serialtesta8d7fdee41.blob.core.windows.net/","queue":"https://serialtesta8d7fdee41.queue.core.windows.net/","table":"https://serialtesta8d7fdee41.table.core.windows.net/","file":"https://serialtesta8d7fdee41.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialtestbootdiag123","name":"serialtestbootdiag123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-23T04:03:01.2951106Z","primaryEndpoints":{"blob":"https://serialtestbootdiag123.blob.core.windows.net/","queue":"https://serialtestbootdiag123.queue.core.windows.net/","table":"https://serialtestbootdiag123.table.core.windows.net/","file":"https://serialtestbootdiag123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuas-rg/providers/Microsoft.Storage/storageAccounts/yuasstorageacct","name":"yuasstorageacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-02T12:18:18.8547131Z","key2":"2022-08-02T12:18:18.8547131Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-02T12:18:18.7140969Z","primaryEndpoints":{"dfs":"https://yuasstorageacct.dfs.core.windows.net/","web":"https://yuasstorageacct.z13.web.core.windows.net/","blob":"https://yuasstorageacct.blob.core.windows.net/","queue":"https://yuasstorageacct.queue.core.windows.net/","table":"https://yuasstorageacct.table.core.windows.net/","file":"https://yuasstorageacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuasstorageacct-secondary.dfs.core.windows.net/","web":"https://yuasstorageacct-secondary.z13.web.core.windows.net/","blob":"https://yuasstorageacct-secondary.blob.core.windows.net/","queue":"https://yuasstorageacct-secondary.queue.core.windows.net/","table":"https://yuasstorageacct-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bkerriganbootdiag","name":"bkerriganbootdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-06T13:46:17.8293781Z","key2":"2022-09-06T13:46:17.8293781Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-06T13:46:17.7200090Z","primaryEndpoints":{"dfs":"https://bkerriganbootdiag.dfs.core.windows.net/","web":"https://bkerriganbootdiag.z20.web.core.windows.net/","blob":"https://bkerriganbootdiag.blob.core.windows.net/","queue":"https://bkerriganbootdiag.queue.core.windows.net/","table":"https://bkerriganbootdiag.table.core.windows.net/","file":"https://bkerriganbootdiag.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bktestsa2","name":"bktestsa2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2022-09-27T23:58:45.6496284Z","key2":"2022-09-27T23:58:45.6496284Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-27T23:58:45.5558609Z","primaryEndpoints":{"dfs":"https://bktestsa2.dfs.core.windows.net/","web":"https://bktestsa2.z20.web.core.windows.net/","blob":"https://bktestsa2.blob.core.windows.net/","queue":"https://bktestsa2.queue.core.windows.net/","table":"https://bktestsa2.table.core.windows.net/","file":"https://bktestsa2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2eastus2storage","name":"guptar2eastus2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-28T23:08:00.6935848Z","key2":"2022-07-28T23:08:00.6935848Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.98.194.64","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:08:00.5840608Z","primaryEndpoints":{"dfs":"https://guptar2eastus2storage.dfs.core.windows.net/","web":"https://guptar2eastus2storage.z20.web.core.windows.net/","blob":"https://guptar2eastus2storage.blob.core.windows.net/","queue":"https://guptar2eastus2storage.queue.core.windows.net/","table":"https://guptar2eastus2storage.table.core.windows.net/","file":"https://guptar2eastus2storage.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhel-test/providers/Microsoft.Storage/storageAccounts/rhel77acct","name":"rhel77acct","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T20:31:30.8215811Z","primaryEndpoints":{"blob":"https://rhel77acct.blob.core.windows.net/","queue":"https://rhel77acct.queue.core.windows.net/","table":"https://rhel77acct.table.core.windows.net/","file":"https://rhel77acct.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320010c152e3d","name":"cs4100320010c152e3d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-07T20:19:42.9636823Z","key2":"2022-02-07T20:19:42.9636823Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-07T20:19:42.8699133Z","primaryEndpoints":{"dfs":"https://cs4100320010c152e3d.dfs.core.windows.net/","web":"https://cs4100320010c152e3d.z22.web.core.windows.net/","blob":"https://cs4100320010c152e3d.blob.core.windows.net/","queue":"https://cs4100320010c152e3d.queue.core.windows.net/","table":"https://cs4100320010c152e3d.table.core.windows.net/","file":"https://cs4100320010c152e3d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-23T23:07:15.9333036Z","primaryEndpoints":{"dfs":"https://cs410037ffea943c134.dfs.core.windows.net/","web":"https://cs410037ffea943c134.z22.web.core.windows.net/","blob":"https://cs410037ffea943c134.blob.core.windows.net/","queue":"https://cs410037ffea943c134.queue.core.windows.net/","table":"https://cs410037ffea943c134.table.core.windows.net/","file":"https://cs410037ffea943c134.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffd81f3ab32","name":"cs41003bffd81f3ab32","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-29T00:18:56.4686445Z","key2":"2022-07-29T00:18:56.4686445Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T00:18:56.3748663Z","primaryEndpoints":{"dfs":"https://cs41003bffd81f3ab32.dfs.core.windows.net/","web":"https://cs41003bffd81f3ab32.z22.web.core.windows.net/","blob":"https://cs41003bffd81f3ab32.blob.core.windows.net/","queue":"https://cs41003bffd81f3ab32.queue.core.windows.net/","table":"https://cs41003bffd81f3ab32.table.core.windows.net/","file":"https://cs41003bffd81f3ab32.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4aa22d82de270x4becxb48","name":"cs4aa22d82de270x4becxb48","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-29T23:39:30.2563159Z","primaryEndpoints":{"blob":"https://cs4aa22d82de270x4becxb48.blob.core.windows.net/","queue":"https://cs4aa22d82de270x4becxb48.queue.core.windows.net/","table":"https://cs4aa22d82de270x4becxb48.table.core.windows.net/","file":"https://cs4aa22d82de270x4becxb48.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2storagecloudshell","name":"guptar2storagecloudshell","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-13T23:27:57.8525804Z","key2":"2022-09-13T23:27:57.8525804Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-13T23:27:57.7431842Z","primaryEndpoints":{"dfs":"https://guptar2storagecloudshell.dfs.core.windows.net/","web":"https://guptar2storagecloudshell.z22.web.core.windows.net/","blob":"https://guptar2storagecloudshell.blob.core.windows.net/","queue":"https://guptar2storagecloudshell.queue.core.windows.net/","table":"https://guptar2storagecloudshell.table.core.windows.net/","file":"https://guptar2storagecloudshell.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar/providers/Microsoft.Storage/storageAccounts/guptardevstorage","name":"guptardevstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-15T16:49:43.1435156Z","key2":"2022-02-15T16:49:43.1435156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-15T16:49:43.0341047Z","primaryEndpoints":{"dfs":"https://guptardevstorage.dfs.core.windows.net/","web":"https://guptardevstorage.z22.web.core.windows.net/","blob":"https://guptardevstorage.blob.core.windows.net/","queue":"https://guptardevstorage.queue.core.windows.net/","table":"https://guptardevstorage.table.core.windows.net/","file":"https://guptardevstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunner/providers/Microsoft.Storage/storageAccounts/scrunnerstorage","name":"scrunnerstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-06T00:42:11.6234985Z","primaryEndpoints":{"blob":"https://scrunnerstorage.blob.core.windows.net/","queue":"https://scrunnerstorage.queue.core.windows.net/","table":"https://scrunnerstorage.table.core.windows.net/","file":"https://scrunnerstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs710032001417ec1a8","name":"cs710032001417ec1a8","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-18T22:07:33.4170256Z","key2":"2021-05-18T22:07:33.4170256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-18T22:07:33.3389725Z","primaryEndpoints":{"dfs":"https://cs710032001417ec1a8.dfs.core.windows.net/","web":"https://cs710032001417ec1a8.z21.web.core.windows.net/","blob":"https://cs710032001417ec1a8.blob.core.windows.net/","queue":"https://cs710032001417ec1a8.queue.core.windows.net/","table":"https://cs710032001417ec1a8.table.core.windows.net/","file":"https://cs710032001417ec1a8.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover/providers/Microsoft.Storage/storageAccounts/rhooverstorage","name":"rhooverstorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-26T17:14:23.5085026Z","key2":"2022-05-26T17:14:23.5085026Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-26T17:14:23.4147520Z","primaryEndpoints":{"dfs":"https://rhooverstorage.dfs.core.windows.net/","web":"https://rhooverstorage.z21.web.core.windows.net/","blob":"https://rhooverstorage.blob.core.windows.net/","queue":"https://rhooverstorage.queue.core.windows.net/","table":"https://rhooverstorage.table.core.windows.net/","file":"https://rhooverstorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsarestricted","name":"aueastsarestricted","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:32:04.7486474Z","key2":"2022-07-17T04:32:04.7486474Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-networking/providers/Microsoft.Network/virtualNetworks/aueast-vnet/subnets/testing","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:32:04.6861236Z","primaryEndpoints":{"dfs":"https://aueastsarestricted.dfs.core.windows.net/","web":"https://aueastsarestricted.z8.web.core.windows.net/","blob":"https://aueastsarestricted.blob.core.windows.net/","queue":"https://aueastsarestricted.queue.core.windows.net/","table":"https://aueastsarestricted.table.core.windows.net/","file":"https://aueastsarestricted.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsastd","name":"aueastsastd","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:28:55.7260171Z","key2":"2022-07-17T04:28:55.7260171Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:28:55.6634675Z","primaryEndpoints":{"dfs":"https://aueastsastd.dfs.core.windows.net/","web":"https://aueastsastd.z8.web.core.windows.net/","blob":"https://aueastsastd.blob.core.windows.net/","queue":"https://aueastsastd.queue.core.windows.net/","table":"https://aueastsastd.table.core.windows.net/","file":"https://aueastsastd.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunnertestvmrg-AustraliaEast/providers/Microsoft.Storage/storageAccounts/scrunner4p3t72mzheluc","name":"scrunner4p3t72mzheluc","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-13T22:35:36.6210942Z","key2":"2021-04-13T22:35:36.6210942Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T22:35:36.5429508Z","primaryEndpoints":{"blob":"https://scrunner4p3t72mzheluc.blob.core.windows.net/","queue":"https://scrunner4p3t72mzheluc.queue.core.windows.net/","table":"https://scrunner4p3t72mzheluc.table.core.windows.net/","file":"https://scrunner4p3t72mzheluc.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleimai244luxkv4qi3pzelwnexgjxzvq5n6g6erlqn6mucntnjyn2lt/providers/Microsoft.Storage/storageAccounts/cliaa3vl7jr6zshgrsmarb6m","name":"cliaa3vl7jr6zshgrsmarb6m","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:18:45.9704319Z","key2":"2022-10-12T19:18:45.9704319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:18:45.8923129Z","primaryEndpoints":{"blob":"https://cliaa3vl7jr6zshgrsmarb6m.blob.core.windows.net/","queue":"https://cliaa3vl7jr6zshgrsmarb6m.queue.core.windows.net/","table":"https://cliaa3vl7jr6zshgrsmarb6m.table.core.windows.net/","file":"https://cliaa3vl7jr6zshgrsmarb6m.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleuprs6wnhhkthfvk3g347c54erbdpkxj7og4vdd5jrhlsj2i6a4y7z/providers/Microsoft.Storage/storageAccounts/cliit6yvjuhqdolxqkfrxi5p","name":"cliit6yvjuhqdolxqkfrxi5p","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-09-28T02:55:03.4203450Z","key2":"2022-09-28T02:55:03.4203450Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-28T02:55:03.3421930Z","primaryEndpoints":{"blob":"https://cliit6yvjuhqdolxqkfrxi5p.blob.core.windows.net/","queue":"https://cliit6yvjuhqdolxqkfrxi5p.queue.core.windows.net/","table":"https://cliit6yvjuhqdolxqkfrxi5p.table.core.windows.net/","file":"https://cliit6yvjuhqdolxqkfrxi5p.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolev2q2lh56h7hqtyjtanifgmz4hdorxphuxke6b6quutmbcnwbei73w/providers/Microsoft.Storage/storageAccounts/clijtqve7gvk45gcoi2b7s7b","name":"clijtqve7gvk45gcoi2b7s7b","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.6083769Z","key2":"2022-10-12T20:26:24.6083769Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.7802549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.7802549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.5146265Z","primaryEndpoints":{"blob":"https://clijtqve7gvk45gcoi2b7s7b.blob.core.windows.net/","queue":"https://clijtqve7gvk45gcoi2b7s7b.queue.core.windows.net/","table":"https://clijtqve7gvk45gcoi2b7s7b.table.core.windows.net/","file":"https://clijtqve7gvk45gcoi2b7s7b.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole65oe66637pgdja4dy4bdh3qisfcmsso6ehdjsrfzlrtbjadxpeht7/providers/Microsoft.Storage/storageAccounts/climdj65uw2u4tyesha5nafm","name":"climdj65uw2u4tyesha5nafm","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:25.4990299Z","key2":"2022-10-12T20:26:25.4990299Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.6552620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.6552620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:25.4052609Z","primaryEndpoints":{"blob":"https://climdj65uw2u4tyesha5nafm.blob.core.windows.net/","queue":"https://climdj65uw2u4tyesha5nafm.queue.core.windows.net/","table":"https://climdj65uw2u4tyesha5nafm.table.core.windows.net/","file":"https://climdj65uw2u4tyesha5nafm.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolebu3ysrz4ys6nf53sjbe27q6meplfgo42nmwtt6n42lwf7nb2djglu/providers/Microsoft.Storage/storageAccounts/clionba2zq3np42anddkf6o7","name":"clionba2zq3np42anddkf6o7","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://clionba2zq3np42anddkf6o7.blob.core.windows.net/","queue":"https://clionba2zq3np42anddkf6o7.queue.core.windows.net/","table":"https://clionba2zq3np42anddkf6o7.table.core.windows.net/","file":"https://clionba2zq3np42anddkf6o7.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolefxqkhafj52ep4gg474dntlscgprhtrbvwhs2ff4fvipbw5tg2cexz/providers/Microsoft.Storage/storageAccounts/clipfdv4l2hramy2ysuln7bs","name":"clipfdv4l2hramy2ysuln7bs","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:55:35.0170190Z","key2":"2022-10-12T19:55:35.0170190Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:55:34.9076957Z","primaryEndpoints":{"blob":"https://clipfdv4l2hramy2ysuln7bs.blob.core.windows.net/","queue":"https://clipfdv4l2hramy2ysuln7bs.queue.core.windows.net/","table":"https://clipfdv4l2hramy2ysuln7bs.table.core.windows.net/","file":"https://clipfdv4l2hramy2ysuln7bs.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-gui-test_group/providers/Microsoft.Storage/storageAccounts/craigwguitestgroupdiag","name":"craigwguitestgroupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-25T20:43:28.9782992Z","key2":"2021-06-25T20:43:28.9782992Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-25T20:43:28.9001463Z","primaryEndpoints":{"blob":"https://craigwguitestgroupdiag.blob.core.windows.net/","queue":"https://craigwguitestgroupdiag.queue.core.windows.net/","table":"https://craigwguitestgroupdiag.table.core.windows.net/","file":"https://craigwguitestgroupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv1","name":"guptar2diagnosticsv1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:21:41.8250582Z","key2":"2022-04-05T17:21:41.8250582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-05T17:21:41.7313240Z","primaryEndpoints":{"blob":"https://guptar2diagnosticsv1.blob.core.windows.net/","queue":"https://guptar2diagnosticsv1.queue.core.windows.net/","table":"https://guptar2diagnosticsv1.table.core.windows.net/","file":"https://guptar2diagnosticsv1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv2","name":"guptar2diagnosticsv2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-04-05T17:22:55.8411567Z","key2":"2022-04-05T17:22:55.8411567Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-05T17:22:55.7318000Z","primaryEndpoints":{"dfs":"https://guptar2diagnosticsv2.dfs.core.windows.net/","web":"https://guptar2diagnosticsv2.z5.web.core.windows.net/","blob":"https://guptar2diagnosticsv2.blob.core.windows.net/","queue":"https://guptar2diagnosticsv2.queue.core.windows.net/","table":"https://guptar2diagnosticsv2.table.core.windows.net/","file":"https://guptar2diagnosticsv2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sericonrp-trafficmanager/providers/Microsoft.Storage/storageAccounts/sericonrpdevtmstorage","name":"sericonrpdevtmstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-15T09:23:38.0203325Z","key2":"2021-09-15T09:23:38.0203325Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-15T09:23:37.9265953Z","primaryEndpoints":{"dfs":"https://sericonrpdevtmstorage.dfs.core.windows.net/","web":"https://sericonrpdevtmstorage.z5.web.core.windows.net/","blob":"https://sericonrpdevtmstorage.blob.core.windows.net/","queue":"https://sericonrpdevtmstorage.queue.core.windows.net/","table":"https://sericonrpdevtmstorage.table.core.windows.net/","file":"https://sericonrpdevtmstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar3storage","name":"guptar3storage","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-20T21:34:53.7867708Z","key2":"2022-09-20T21:34:53.7867708Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-20T21:34:53.7086332Z","primaryEndpoints":{"blob":"https://guptar3storage.blob.core.windows.net/","queue":"https://guptar3storage.queue.core.windows.net/","table":"https://guptar3storage.table.core.windows.net/","file":"https://guptar3storage.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover-dev-rg/providers/Microsoft.Storage/storageAccounts/rhooverdevrgdiag","name":"rhooverdevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T19:39:24.4605968Z","key2":"2022-06-20T19:39:24.4605968Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-20T19:39:24.4137057Z","primaryEndpoints":{"blob":"https://rhooverdevrgdiag.blob.core.windows.net/","queue":"https://rhooverdevrgdiag.queue.core.windows.net/","table":"https://rhooverdevrgdiag.table.core.windows.net/","file":"https://rhooverdevrgdiag.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westcentralus/providers/Microsoft.Storage/storageAccounts/scrunnerrfscmqxeni3uq","name":"scrunnerrfscmqxeni3uq","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-10T22:28:55.1479670Z","primaryEndpoints":{"blob":"https://scrunnerrfscmqxeni3uq.blob.core.windows.net/","queue":"https://scrunnerrfscmqxeni3uq.queue.core.windows.net/","table":"https://scrunnerrfscmqxeni3uq.table.core.windows.net/","file":"https://scrunnerrfscmqxeni3uq.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westus3_group/providers/Microsoft.Storage/storageAccounts/ubuntuwestus3groupdiag","name":"ubuntuwestus3groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus3","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T19:48:38.9882588Z","key2":"2022-04-18T19:48:38.9882588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-18T19:48:38.9258191Z","primaryEndpoints":{"blob":"https://ubuntuwestus3groupdiag.blob.core.windows.net/","queue":"https://ubuntuwestus3groupdiag.queue.core.windows.net/","table":"https://ubuntuwestus3groupdiag.table.core.windows.net/","file":"https://ubuntuwestus3groupdiag.file.core.windows.net/"},"primaryLocation":"westus3","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/cloudshellcanarystorage","name":"cloudshellcanarystorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-01T21:16:45.8824319Z","key2":"2022-08-01T21:16:45.8824319Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-01T21:16:45.8043474Z","primaryEndpoints":{"dfs":"https://cloudshellcanarystorage.dfs.core.windows.net/","web":"https://cloudshellcanarystorage.z3.web.core.windows.net/","blob":"https://cloudshellcanarystorage.blob.core.windows.net/","queue":"https://cloudshellcanarystorage.queue.core.windows.net/","table":"https://cloudshellcanarystorage.table.core.windows.net/","file":"https://cloudshellcanarystorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '65114' + - '60142' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:54 GMT + - Wed, 12 Oct 2022 20:30:56 GMT expires: - '-1' pragma: @@ -3159,32 +2982,33 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 8e0ff669-ebcd-4345-b378-e3788d45d5eb - - 0baff437-1edb-4aad-bed2-70ca6524f4f2 - - bf505621-337a-469d-b3de-4b51c2d20478 - - c5eddcd4-929c-43ff-8e08-002e52ce3ac1 - - f2d0db79-8325-4630-a726-98452a4e2399 - - 969149af-9b76-4e82-8f2f-d6b7ab7b6f20 - - f7ebe0b9-29c7-49f8-bea0-2863f110e65a - - a791869c-9f98-4a0e-9774-19f0b3f93a18 - - 40ca744b-cb2a-4fe1-ac3f-b4419a69271c - - ddc0071b-97f5-4544-a28d-3b09030a109f - - 87b2d234-b821-4dfb-9a9d-f83401774c34 + - a9c6bfaa-af41-433c-a8de-b06c24e63c6c + - eb6fd29a-2f2f-4a9d-9fc3-999084619078 + - 76669470-2d38-4ab8-b2c4-2f9e95d81c1d + - 0762b890-dffc-4fce-8e89-47cac25e0786 + - e469d53c-8002-4399-9839-2c6c7ca9b587 + - d619e7bb-569f-47c1-8f7f-954c21e66ad5 + - f680498a-4cf0-4e5a-98b2-c1519d721b38 + - 7b773c1c-8bfa-4878-a7f9-2fe79be63c92 + - 2ef1a6ae-282f-43cd-b917-dcd60417d3d2 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"hardwareProfile": {"vmSize": - "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474", + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": + {}}}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": + {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhl", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": - "ImageDefault"}}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": - true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": + true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": true, "storageUri": "https://cli000002.blob.core.windows.net/"}}}}' headers: Accept: @@ -3196,59 +3020,64 @@ interactions: Connection: - keep-alive Content-Length: - - '1741' + - '2298' Content-Type: - application/json ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": - \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0ced3b93-2308-4f13-aee3-40e5678e1217?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b64c8594-653c-4b97-8fcc-45093e455c3f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '2820' + - '3556' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:54 GMT + - Wed, 12 Oct 2022 20:30:59 GMT expires: - '-1' pragma: @@ -3265,7 +3094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;464,Microsoft.Compute/PutVM30Min;2327 + - Microsoft.Compute/PutVM3Min;593,Microsoft.Compute/PutVM30Min;2980 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3285,23 +3114,23 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0ced3b93-2308-4f13-aee3-40e5678e1217?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b64c8594-653c-4b97-8fcc-45093e455c3f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:14:55.5397029+00:00\",\r\n \"endTime\": - \"2022-08-04T17:15:03.508426+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0ced3b93-2308-4f13-aee3-40e5678e1217\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:30:59.0553907+00:00\",\r\n \"endTime\": + \"2022-10-12T20:31:08.4146689+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b64c8594-653c-4b97-8fcc-45093e455c3f\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:25 GMT + - Wed, 12 Oct 2022 20:31:29 GMT expires: - '-1' pragma: @@ -3318,7 +3147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29801 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -3336,49 +3165,54 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-08-04T17:10:47.8380764+00:00\"\r\n }\r\n}" + \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2821' + - '3557' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:26 GMT + - Wed, 12 Oct 2022 20:31:29 GMT expires: - '-1' pragma: @@ -3395,56 +3229,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31904 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm boot-diagnostics enable - Connection: - - keep-alive - ParameterSetName: - - -g -n --storage - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:15:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31871 status: code: 200 message: OK @@ -3462,69 +3247,74 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:15:03.4927468+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4575' + - '5309' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:26 GMT + - Wed, 12 Oct 2022 20:31:30 GMT expires: - '-1' pragma: @@ -3541,7 +3331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31903 + - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31870 status: code: 200 message: OK @@ -3553,36 +3343,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console disable + - vm boot-diagnostics enable Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json + ParameterSetName: + - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '42' + - '1259' content-type: - - application/json; charset=UTF-8 + - application/json date: - - Thu, 04 Aug 2022 17:15:27 GMT + - Wed, 12 Oct 2022 20:31:30 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3591,10 +3378,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -3606,26 +3389,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console disable + - vm boot-diagnostics enable Connection: - keep-alive + ParameterSetName: + - -g -n --storage User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '42' + - '43' content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:27 GMT + - Wed, 12 Oct 2022 20:31:31 GMT expires: - '-1' pragma: @@ -3653,7 +3438,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console enable + - serial-console disable Connection: - keep-alive Content-Length: @@ -3661,22 +3446,22 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '43' + - '42' content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:28 GMT + - Wed, 12 Oct 2022 20:31:31 GMT expires: - '-1' pragma: @@ -3694,54 +3479,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - serial-console enable - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:15:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - '1199' status: code: 200 message: OK @@ -3753,73 +3491,78 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console enable + - serial-console disable Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:15:03.4927468+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4575' + - '5309' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:28 GMT + - Wed, 12 Oct 2022 20:31:31 GMT expires: - '-1' pragma: @@ -3836,7 +3579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3972,Microsoft.Compute/LowCostGet30Min;31902 + - Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31867 status: code: 200 message: OK @@ -3848,87 +3591,76 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - serial-console disable Connection: - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '0' + - '1259' + content-type: + - application/json date: - - Thu, 04 Aug 2022 17:15:29 GMT + - Wed, 12 Oct 2022 20:31:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1192 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - serial-console disable Connection: - keep-alive - ParameterSetName: - - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:15:29.3363648+00:00\",\r\n \"endTime\": - \"2022-08-04T17:15:36.2269196+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"db0e3f78-459d-4638-961f-72e4a31d6a15\"\r\n}" + string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '184' + - '42' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:58 GMT + - Wed, 12 Oct 2022 20:31:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3937,8 +3669,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29794 + x-frame-options: + - deny status: code: 200 message: OK @@ -3946,29 +3678,135 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - serial-console enable + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:31:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console enable Connection: - keep-alive - ParameterSetName: - - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": + {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n + \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": + \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n + \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '5309' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:58 GMT + - Wed, 12 Oct 2022 20:31:33 GMT expires: - '-1' pragma: @@ -3978,10 +3816,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29793 + - Microsoft.Compute/LowCostGet3Min;3961,Microsoft.Compute/LowCostGet30Min;31866 status: code: 200 message: OK @@ -3993,14 +3835,56 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - serial-console enable Connection: - keep-alive - ParameterSetName: - - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1259' + content-type: + - application/json + date: + - Wed, 12 Oct 2022 20:31:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console enable + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4014,7 +3898,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:16:00 GMT + - Wed, 12 Oct 2022 20:31:34 GMT expires: - '-1' pragma: @@ -4045,72 +3929,224 @@ interactions: - vm stop Connection: - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Oct 2022 20:31:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1194 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-12T20:31:35.0862756+00:00\",\r\n \"endTime\": + \"2022-10-12T20:31:39.8206372+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b2058417-5714-430d-9b31-f1960a49a215\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:32:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29882 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Oct 2022 20:32:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29881 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhl\",\r\n + {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.7.3.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-08-04T17:15:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n + \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:10.9774837+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:15:36.2269196+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-12T20:31:39.8050144+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4575' + - '5309' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:00 GMT + - Wed, 12 Oct 2022 20:32:06 GMT expires: - '-1' pragma: @@ -4127,7 +4163,102 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31900 + - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31858 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1259' + content-type: + - application/json + date: + - Wed, 12 Oct 2022 20:32:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:32:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny status: code: 200 message: OK @@ -4147,25 +4278,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:00 GMT + - Wed, 12 Oct 2022 20:32:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4176,9 +4309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1191 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -4196,13 +4329,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:16:01.1486551+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"bdff402c-bf07-4db1-90ea-42de7c3442b5\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:32:07.4765525+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"3483c650-3779-4237-ae18-c94fc45b2147\"\r\n}" headers: cache-control: - no-cache @@ -4211,7 +4344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Wed, 12 Oct 2022 20:32:17 GMT expires: - '-1' pragma: @@ -4228,7 +4361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29789 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29878 status: code: 200 message: OK @@ -4246,14 +4379,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:16:01.1486551+00:00\",\r\n \"endTime\": - \"2022-08-04T17:16:34.8359408+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"bdff402c-bf07-4db1-90ea-42de7c3442b5\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:32:07.4765525+00:00\",\r\n \"endTime\": + \"2022-10-12T20:32:41.3513052+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3483c650-3779-4237-ae18-c94fc45b2147\"\r\n}" headers: cache-control: - no-cache @@ -4262,7 +4395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:47 GMT + - Wed, 12 Oct 2022 20:32:53 GMT expires: - '-1' pragma: @@ -4279,7 +4412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29778 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29866 status: code: 200 message: OK @@ -4297,9 +4430,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bdff402c-bf07-4db1-90ea-42de7c3442b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4309,7 +4442,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:47 GMT + - Wed, 12 Oct 2022 20:32:53 GMT expires: - '-1' pragma: @@ -4322,7 +4455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29777 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29865 status: code: 200 message: OK @@ -4340,28 +4473,73 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": + \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n + \ \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": + {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:32:41.1794563+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"time\": \"2022-10-12T20:32:41.1950084+00:00\"\r\n },\r\n + \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '4767' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:47 GMT + - Wed, 12 Oct 2022 20:32:54 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4370,8 +4548,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31851 status: code: 200 message: OK @@ -4389,68 +4567,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e048a2e9-76a7-497c-8ed7-829625b39824\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202207120\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\r\n - \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n - \ \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n - \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:16:34.5390781+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliqeh2b2-e048a2e9-76a7-497c-8ed7-829625b39824/cli000003.e048a2e9-76a7-497c-8ed7-829625b39824.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:16:34.5547235+00:00\"\r\n },\r\n - \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-08-04T17:10:47.8380764+00:00\"\r\n - \ }\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '4034' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:16:48 GMT + - Wed, 12 Oct 2022 20:32:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4459,8 +4596,55 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31897 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:32:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny status: code: 200 message: OK diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml index 6be68f040c8..89be2452fd9 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml @@ -11,54 +11,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:10:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - unknown - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: @@ -74,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Wed, 12 Oct 2022 20:26:45 GMT expires: - '-1' pragma: @@ -100,7 +53,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: @@ -116,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Wed, 12 Oct 2022 20:26:45 GMT expires: - '-1' pragma: @@ -142,54 +95,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:10:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - unknown - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 response: @@ -205,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Wed, 12 Oct 2022 20:26:45 GMT expires: - '-1' pragma: @@ -296,13 +202,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:47 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 04 Aug 2022 17:15:31 GMT + - Wed, 12 Oct 2022 20:31:47 GMT source-age: - - '153' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -312,19 +218,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '1' + - '2' x-content-type-options: - nosniff x-fastly-request-id: - - 2efe8a199373fd72a8df5a2a83bccb2a320d768c + - cde32ce265015b4f100d43b3ac076b79239d97ec x-frame-options: - deny x-github-request-id: - - 5064:23C7:122D3E:1DAA5F:62EBFB90 + - 0805:2971:2ED5B:3DBB9:6346F7A2 x-served-by: - - cache-pao17443-PAO + - cache-dal21256-DAL x-timer: - - S1659633032.524216,VS0,VE1 + - S1665606407.004837,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -344,13 +250,13 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202209210\"\r\n \ }\r\n]" headers: cache-control: @@ -360,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:47 GMT expires: - '-1' pragma: @@ -377,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 status: code: 200 message: OK @@ -395,9 +301,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202207120?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -407,20 +313,21 @@ interactions: {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus2\",\r\n \"name\": \"18.04.202207120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202207120\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": + []\r\n },\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202209210\"\r\n}" headers: cache-control: - no-cache content-length: - - '1044' + - '1050' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:47 GMT expires: - '-1' pragma: @@ -437,7 +344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73989 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -455,7 +362,7 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -469,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Wed, 12 Oct 2022 20:26:47 GMT expires: - '-1' pragma: @@ -509,12 +416,12 @@ interactions: {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "clinqc38b", "adminUsername": "rhl", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", - "properties": {"ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "cli5ze36dNic", "properties": {"ipConfigurations": [{"name": "cli5ze36dIPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2", @@ -531,29 +438,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4106' + - '4312' Content-Type: - application/json ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","name":"vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5012540532131786740","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-08-04T17:10:43.791516Z","duration":"PT0.0002535S","correlationId":"1e5a3c82-ee7f-4fa4-a4ea-4df37be452a2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","name":"vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6106912332916333966","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-12T20:26:52.7150809Z","duration":"PT0.0004676S","correlationId":"1bd801d0-af72-4f40-bb71-99a2bba36413","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K/operationStatuses/08585419738427778273?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc/operationStatuses/08585360004744275774?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2414' + - '2415' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:43 GMT + - Wed, 12 Oct 2022 20:26:53 GMT expires: - '-1' pragma: @@ -581,9 +488,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -595,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:13 GMT + - Wed, 12 Oct 2022 20:27:23 GMT expires: - '-1' pragma: @@ -623,9 +530,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -637,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:44 GMT + - Wed, 12 Oct 2022 20:27:53 GMT expires: - '-1' pragma: @@ -665,21 +572,21 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585419738427778273?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:14 GMT + - Wed, 12 Oct 2022 20:28:24 GMT expires: - '-1' pragma: @@ -707,22 +614,21 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","name":"vmss_deploy_mqVrveBcuXIOanW0hg0AJuSsCVgT6U7K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5012540532131786740","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-08-04T17:11:45.7224405Z","duration":"PT1M1.931178S","correlationId":"1e5a3c82-ee7f-4fa4-a4ea-4df37be452a2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"clinqc38b","adminUsername":"rhl","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/rhl/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"clinqc38bNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clinqc38bIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a","timeCreated":"2022-08-04T17:10:51.2598866+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '5543' + - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:14 GMT + - Wed, 12 Oct 2022 20:28:53 GMT expires: - '-1' pragma: @@ -740,7 +646,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -750,38 +656,159 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '43' + - '20' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:14 GMT + - Wed, 12 Oct 2022 20:29:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --instance-count -l + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:29:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --instance-count -l + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:30:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --instance-count -l + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","name":"vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6106912332916333966","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-12T20:30:04.810926Z","duration":"PT3M12.0963127S","correlationId":"1bd801d0-af72-4f40-bb71-99a2bba36413","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"cli5ze36d","adminUsername":"rhoover","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/rhoover/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"cli5ze36dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"cli5ze36dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]},"extensionProfile":{"extensions":[{"name":"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Monitor","type":"AzureMonitorLinuxAgent","typeHandlerVersion":"1.0","settings":{"GCS_AUTO_CONFIG":true}}},{"name":"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Security.Monitoring","type":"AzureSecurityLinuxAgent","typeHandlerVersion":"2.0","settings":{"enableGenevaUpload":true,"enableAutoConfig":true,"reportSuccessOnUnsupportedDistro":true}}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d","timeCreated":"2022-10-12T20:27:03.1817718+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '6443' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:30:24 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny status: code: 200 message: OK @@ -799,7 +826,7 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 response: @@ -815,7 +842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Wed, 12 Oct 2022 20:30:25 GMT expires: - '-1' pragma: @@ -843,49 +870,63 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n + \ \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": + {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n - \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n - \ }\r\n}" + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3417' + - '4822' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Wed, 12 Oct 2022 20:30:25 GMT expires: - '-1' pragma: @@ -902,7 +943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2538 + - Microsoft.Compute/GetVMScaleSet3Min;394,Microsoft.Compute/GetVMScaleSet30Min;2560 status: code: 200 message: OK @@ -920,7 +961,7 @@ interactions: ParameterSetName: - --resource-group --name --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines?api-version=2022-03-01 response: @@ -928,75 +969,112 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli000003_0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"instanceId\": - \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": - true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"3d348973-8135-413e-93ca-7215f26d1bac\",\r\n \"hardwareProfile\": + \ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": + \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n + \ \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n + \ \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": + {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"1c29b42c-c926-4169-b873-919f44453a1c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202207120\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_9d3b4aa626d54d8e9c891331fdca0d7f\",\r\n + \ \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_5ebd7e36eb5d4d26b18c28fa35cf9a53\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_9d3b4aa626d54d8e9c891331fdca0d7f\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_5ebd7e36eb5d4d26b18c28fa35cf9a53\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"clinqc38b000000\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": + \"cli5ze36d000000\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/networkInterfaces/clinqc38bNic\"}]},\r\n - \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.3692529+00:00\"\r\n - \ }\r\n },\r\n {\r\n \"name\": \"cli000003_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3\",\r\n + \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/networkInterfaces/cli5ze36dNic\"}]},\r\n + \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2022-10-12T20:27:03.3224693+00:00\"\r\n + \ },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_0/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": + \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n + \ \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_0/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": + \"cli000003_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": - true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"c47ce47c-9b4d-461d-8f0e-b5a271ca2265\",\r\n \"hardwareProfile\": + \ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": + \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n + \ \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n + \ \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": + {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"553a2ebf-ee4b-4655-9315-547772ecdea9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202207120\"\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n + \ \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": + \"cli5ze36d000002\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/networkInterfaces/clinqc38bNic\"}]},\r\n + \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/networkInterfaces/cli5ze36dNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-08-04T17:10:51.3692529+00:00\"\r\n }\r\n }\r\n ]\r\n}" + \"2022-10-12T20:27:03.3224693+00:00\"\r\n },\r\n \"resources\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": + \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n + \ \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '8097' + - '12221' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Wed, 12 Oct 2022 20:30:26 GMT expires: - '-1' pragma: @@ -1013,7 +1091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;884,Microsoft.Compute/VMScaleSetVMViews3Min;4981 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;891,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '4' status: @@ -1033,49 +1111,63 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n + \ \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": + {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]}\r\n - \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n - \ }\r\n}" + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3417' + - '4822' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Wed, 12 Oct 2022 20:30:26 GMT expires: - '-1' pragma: @@ -1092,32 +1184,39 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2535 + - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2559 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "sku": {"name": "Standard_DS1_v2", - "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": - "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": - 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": - "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, - "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", - "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", - "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": - {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "sku": {"name": "Standard_DS1_v2", "tier": "Standard", "capacity": + 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": + {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": + 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": + {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": + true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": + "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": + "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], "enableIPForwarding": false}}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": - true}}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": false, - "singlePlacementGroup": true}}' + true}}, "extensionProfile": {"extensions": [{"name": "Microsoft.Azure.Monitor.AzureMonitorLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Monitor", "type": "AzureMonitorLinuxAgent", + "typeHandlerVersion": "1.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"GCS_AUTO_CONFIG": true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"enableGenevaUpload": true, "enableAutoConfig": true, "reportSuccessOnUnsupportedDistro": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true, "orchestrationMode": "Uniform"}}' headers: Accept: - application/json @@ -1128,60 +1227,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2357' + - '3402' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n + \ \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": + {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3525' + - '4930' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:18 GMT + - Wed, 12 Oct 2022 20:30:29 GMT expires: - '-1' pragma: @@ -1198,9 +1311,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;118,Microsoft.Compute/CreateVMScaleSet30Min;603,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;739,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-ms-request-charge: - '0' status: @@ -1220,13 +1333,13 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:18.6030877+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"5a472f80-cb97-46d3-8e9a-773ea3a5ae28\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:30:29.6650339+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f840403a-2930-41dc-940a-3c9b6ae4f4ac\"\r\n}" headers: cache-control: - no-cache @@ -1235,7 +1348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:28 GMT + - Wed, 12 Oct 2022 20:30:39 GMT expires: - '-1' pragma: @@ -1252,7 +1365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29866 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -1270,14 +1383,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5a472f80-cb97-46d3-8e9a-773ea3a5ae28?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:12:18.6030877+00:00\",\r\n \"endTime\": - \"2022-08-04T17:12:43.6654917+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5a472f80-cb97-46d3-8e9a-773ea3a5ae28\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:30:29.6650339+00:00\",\r\n \"endTime\": + \"2022-10-12T20:31:08.8678029+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f840403a-2930-41dc-940a-3c9b6ae4f4ac\"\r\n}" headers: cache-control: - no-cache @@ -1286,7 +1399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:05 GMT + - Wed, 12 Oct 2022 20:31:16 GMT expires: - '-1' pragma: @@ -1303,7 +1416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -1321,50 +1434,68 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3526' + - '5346' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:05 GMT + - Wed, 12 Oct 2022 20:31:16 GMT expires: - '-1' pragma: @@ -1381,12 +1512,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;375,Microsoft.Compute/GetVMScaleSet30Min;2525 + - Microsoft.Compute/GetVMScaleSet3Min;376,Microsoft.Compute/GetVMScaleSet30Min;2542 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -1403,25 +1534,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:06 GMT + - Wed, 12 Oct 2022 20:31:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1432,7 +1565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1187,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2447,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2978,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1454,23 +1587,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:13:06.5872597+00:00\",\r\n \"endTime\": - \"2022-08-04T17:13:16.493456+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"889d317a-45cb-49ea-9939-4c22229be58e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:31:18.2583376+00:00\",\r\n \"endTime\": + \"2022-10-12T20:31:34.2425603+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9f238e06-8b05-4d69-a24a-204cc506dd02\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:35 GMT + - Wed, 12 Oct 2022 20:31:48 GMT expires: - '-1' pragma: @@ -1487,7 +1620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29888 status: code: 200 message: OK @@ -1505,9 +1638,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/889d317a-45cb-49ea-9939-4c22229be58e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1517,7 +1650,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Wed, 12 Oct 2022 20:31:48 GMT expires: - '-1' pragma: @@ -1530,7 +1663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29835 + - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29887 status: code: 200 message: OK @@ -1548,28 +1681,66 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:31:33+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:31:19.2739476+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:31:34.2269291+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '2807' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:37 GMT + - Wed, 12 Oct 2022 20:31:49 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1578,8 +1749,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2490,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -1597,45 +1770,28 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:13:16+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:13:07.4309807+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:13:16.462172+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '1287' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:13:37 GMT + - Wed, 12 Oct 2022 20:31:48 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1644,10 +1800,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2472,Microsoft.Compute/VMScaleSetVMViews3Min;4986 - x-ms-request-charge: - - '1' + x-frame-options: + - deny status: code: 200 message: OK @@ -1667,25 +1821,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:37 GMT + - Wed, 12 Oct 2022 20:31:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -1696,9 +1852,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;238,Microsoft.Compute/DeleteVMScaleSetVM30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2421,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2976,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-ms-request-charge: - '1' status: @@ -1718,13 +1874,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:13:38.2433222+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"07890245-8ecb-4b70-b4cd-d9fc163cb566\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:31:50.5861498+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"64a34b43-c4a4-4325-8bd6-2e20325eb503\"\r\n}" headers: cache-control: - no-cache @@ -1733,7 +1889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:08 GMT + - Wed, 12 Oct 2022 20:32:20 GMT expires: - '-1' pragma: @@ -1750,7 +1906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29823 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29874 status: code: 200 message: OK @@ -1768,23 +1924,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:13:38.2433222+00:00\",\r\n \"endTime\": - \"2022-08-04T17:14:29.914845+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"07890245-8ecb-4b70-b4cd-d9fc163cb566\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:31:50.5861498+00:00\",\r\n \"endTime\": + \"2022-10-12T20:32:32.0232494+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"64a34b43-c4a4-4325-8bd6-2e20325eb503\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:38 GMT + - Wed, 12 Oct 2022 20:32:50 GMT expires: - '-1' pragma: @@ -1801,7 +1957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29816 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29869 status: code: 200 message: OK @@ -1819,9 +1975,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07890245-8ecb-4b70-b4cd-d9fc163cb566?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -1831,7 +1987,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:38 GMT + - Wed, 12 Oct 2022 20:32:50 GMT expires: - '-1' pragma: @@ -1844,7 +2000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29815 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29868 status: code: 200 message: OK @@ -1862,28 +2018,39 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:32:31.9763882+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"time\": \"2022-10-12T20:32:31.9920139+00:00\"\r\n },\r\n {\r\n + \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n + \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '880' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:39 GMT + - Wed, 12 Oct 2022 20:32:51 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1892,8 +2059,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2489,Microsoft.Compute/VMScaleSetVMViews3Min;4992 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -1911,39 +2080,28 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:14:29.7273434+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:14:29.7429651+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '880' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:14:39 GMT + - Wed, 12 Oct 2022 20:32:52 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1952,15 +2110,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2467,Microsoft.Compute/VMScaleSetVMViews3Min;4984 - x-ms-request-charge: - - '1' + x-frame-options: + - deny status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -1977,25 +2133,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:40 GMT + - Wed, 12 Oct 2022 20:32:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2006,9 +2164,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1185,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2387,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;231,Microsoft.Compute/VMScaleSetActions30Min;1184,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2983,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -2028,22 +2186,22 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:14:40.086698+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e546c0e8-722a-4ed0-a0f2-829e86242608\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:09 GMT + - Wed, 12 Oct 2022 20:33:23 GMT expires: - '-1' pragma: @@ -2060,7 +2218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29806 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29859 status: code: 200 message: OK @@ -2078,23 +2236,73 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:14:40.086698+00:00\",\r\n \"endTime\": - \"2022-08-04T17:15:15.6177127+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e546c0e8-722a-4ed0-a0f2-829e86242608\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:33:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29851 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss start + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"endTime\": + \"2022-10-12T20:34:03.8818075+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:39 GMT + - Wed, 12 Oct 2022 20:34:24 GMT expires: - '-1' pragma: @@ -2111,7 +2319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29800 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29849 status: code: 200 message: OK @@ -2129,9 +2337,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e546c0e8-722a-4ed0-a0f2-829e86242608?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2141,7 +2349,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:15:39 GMT + - Wed, 12 Oct 2022 20:34:24 GMT expires: - '-1' pragma: @@ -2154,12 +2362,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29799 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29848 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -2176,25 +2384,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:15:40 GMT + - Wed, 12 Oct 2022 20:34:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2205,9 +2415,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;77,Microsoft.Compute/DeleteVMScaleSet30Min;392,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2318,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2999,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -2227,14 +2437,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:15:41.1331519+00:00\",\r\n \"endTime\": - \"2022-08-04T17:15:50.3830897+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"07fc9e39-a652-4a04-8796-e82dea9cb84b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:34:25.4597031+00:00\",\r\n \"endTime\": + \"2022-10-12T20:34:31.1940117+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9ee58a53-03ca-4717-b57b-51b168cde031\"\r\n}" headers: cache-control: - no-cache @@ -2243,7 +2453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Wed, 12 Oct 2022 20:34:55 GMT expires: - '-1' pragma: @@ -2260,7 +2470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29790 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -2278,9 +2488,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/07fc9e39-a652-4a04-8796-e82dea9cb84b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2290,7 +2500,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Wed, 12 Oct 2022 20:34:55 GMT expires: - '-1' pragma: @@ -2303,7 +2513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29788 + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29841 status: code: 200 message: OK @@ -2321,28 +2531,66 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:34:05+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/NotReady/0\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:33:22.7571091+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:34:31.162765+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM stopped\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '2811' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Wed, 12 Oct 2022 20:34:56 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2351,8 +2599,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;493,Microsoft.Compute/GetVMScaleSetVM30Min;2483,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -2370,45 +2620,28 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:15:31+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:15:03.1334389+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:15:50.3518389+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '1288' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:16:12 GMT + - Wed, 12 Oct 2022 20:34:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2417,15 +2650,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2465,Microsoft.Compute/VMScaleSetVMViews3Min;4990 - x-ms-request-charge: - - '1' + x-frame-options: + - deny status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -2442,25 +2673,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:12 GMT + - Wed, 12 Oct 2022 20:34:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2471,9 +2704,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1184,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2321,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1183,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2996,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-ms-request-charge: - '1' status: @@ -2493,14 +2726,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:16:12.9142137+00:00\",\r\n \"endTime\": - \"2022-08-04T17:16:16.3048315+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1243d5f7-28ce-4878-9dbe-390b02fbb686\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:34:57.3343771+00:00\",\r\n \"endTime\": + \"2022-10-12T20:35:03.5374848+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7e2565a5-0cd1-4a55-8df6-b406b76b7e24\"\r\n}" headers: cache-control: - no-cache @@ -2509,7 +2742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:42 GMT + - Wed, 12 Oct 2022 20:35:27 GMT expires: - '-1' pragma: @@ -2526,7 +2759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29782 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29880 status: code: 200 message: OK @@ -2544,9 +2777,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/1243d5f7-28ce-4878-9dbe-390b02fbb686?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -2556,7 +2789,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:42 GMT + - Wed, 12 Oct 2022 20:35:27 GMT expires: - '-1' pragma: @@ -2569,7 +2802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29781 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -2587,50 +2820,68 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3526' + - '5346' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:43 GMT + - Wed, 12 Oct 2022 20:35:27 GMT expires: - '-1' pragma: @@ -2647,33 +2898,41 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2513 + - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2537 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "sku": {"name": "Standard_DS1_v2", - "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": - "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": - 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": - "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, - "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", - "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", - "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": - {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "sku": {"name": "Standard_DS1_v2", "tier": "Standard", "capacity": + 2}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": + {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": + {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": + 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": + {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": + true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": + "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": + "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], "enableIPForwarding": false}}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": - true, "storageUri": "https://cli000002.blob.core.windows.net/"}}}, "overprovision": - true, "doNotRunExtensionsOnOverprovisionedVMs": false, "singlePlacementGroup": - true}}' + true, "storageUri": "https://cli000002.blob.core.windows.net/"}}, "extensionProfile": + {"extensions": [{"name": "Microsoft.Azure.Monitor.AzureMonitorLinuxAgent", "properties": + {"publisher": "Microsoft.Azure.Monitor", "type": "AzureMonitorLinuxAgent", "typeHandlerVersion": + "1.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": true, "settings": + {"GCS_AUTO_CONFIG": true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"enableGenevaUpload": true, "enableAutoConfig": true, "reportSuccessOnUnsupportedDistro": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true, "orchestrationMode": "Uniform"}}' headers: Accept: - application/json @@ -2684,61 +2943,79 @@ interactions: Connection: - keep-alive Content-Length: - - '2415' + - '3711' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8153e4c3-cdab-4eed-9544-7226ec957d7b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3c00e10c-40d8-4424-9074-3b2ece2df849?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3594' + - '5414' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:46 GMT + - Wed, 12 Oct 2022 20:35:32 GMT expires: - '-1' pragma: @@ -2755,7 +3032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;113,Microsoft.Compute/CreateVMScaleSet30Min;558,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;743,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2777,14 +3054,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8153e4c3-cdab-4eed-9544-7226ec957d7b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3c00e10c-40d8-4424-9074-3b2ece2df849?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:16:46.4765007+00:00\",\r\n \"endTime\": - \"2022-08-04T17:16:46.7421169+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8153e4c3-cdab-4eed-9544-7226ec957d7b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:35:32.2246598+00:00\",\r\n \"endTime\": + \"2022-10-12T20:35:32.6465615+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3c00e10c-40d8-4424-9074-3b2ece2df849\"\r\n}" headers: cache-control: - no-cache @@ -2793,7 +3070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:56 GMT + - Wed, 12 Oct 2022 20:35:42 GMT expires: - '-1' pragma: @@ -2810,7 +3087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29775 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29875 status: code: 200 message: OK @@ -2828,51 +3105,69 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3595' + - '5415' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:56 GMT + - Wed, 12 Oct 2022 20:35:42 GMT expires: - '-1' pragma: @@ -2889,12 +3184,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;382,Microsoft.Compute/GetVMScaleSet30Min;2504 + - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2533 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -2911,25 +3206,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:57 GMT + - Wed, 12 Oct 2022 20:35:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -2940,7 +3237,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1183,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2231,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1188,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2995,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2962,23 +3259,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:16:57.6015185+00:00\",\r\n \"endTime\": - \"2022-08-04T17:17:10.288885+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5af238b5-2789-45a9-860f-6060cfaaa57c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:35:44.1308128+00:00\",\r\n \"endTime\": + \"2022-10-12T20:35:55.6621345+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"66d018ee-306b-4afb-83d1-1a1cf1ab038e\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:17:27 GMT + - Wed, 12 Oct 2022 20:36:13 GMT expires: - '-1' pragma: @@ -2995,7 +3292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29771 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29871 status: code: 200 message: OK @@ -3013,9 +3310,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5af238b5-2789-45a9-860f-6060cfaaa57c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3025,7 +3322,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:17:27 GMT + - Wed, 12 Oct 2022 20:36:13 GMT expires: - '-1' pragma: @@ -3038,7 +3335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29770 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29870 status: code: 200 message: OK @@ -3056,28 +3353,68 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '3218' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:17:28 GMT + - Wed, 12 Oct 2022 20:36:14 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3086,8 +3423,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2489,Microsoft.Compute/VMScaleSetVMViews3Min;4998 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -3105,47 +3444,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:17:09+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:17:00.6326722+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:17:10.2576133+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:17:28 GMT + - Wed, 12 Oct 2022 20:36:15 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3154,10 +3473,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;493,Microsoft.Compute/GetVMScaleSetVM30Min;2464,Microsoft.Compute/VMScaleSetVMViews3Min;4993 - x-ms-request-charge: - - '1' status: code: 200 message: OK @@ -3169,30 +3484,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console disable + - vmss update-instances Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json + ParameterSetName: + - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '42' + - '43' content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:17:28 GMT + - Wed, 12 Oct 2022 20:36:15 GMT expires: - '-1' pragma: @@ -3209,8 +3522,6 @@ interactions: - nosniff x-frame-options: - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3225,11 +3536,15 @@ interactions: - serial-console disable Connection: - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: body: string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" @@ -3241,7 +3556,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:17:29 GMT + - Wed, 12 Oct 2022 20:36:16 GMT expires: - '-1' pragma: @@ -3258,6 +3573,8 @@ interactions: - nosniff x-frame-options: - deny + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3269,30 +3586,159 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console enable + - serial-console disable Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '3218' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:17:29 GMT + - Wed, 12 Oct 2022 20:36:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2488,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console disable + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1259' + content-type: + - application/json + date: + - Wed, 12 Oct 2022 20:36:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console disable + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '42' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:36:16 GMT expires: - '-1' pragma: @@ -3309,8 +3755,6 @@ interactions: - nosniff x-frame-options: - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -3325,11 +3769,15 @@ interactions: - serial-console enable Connection: - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: body: string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" @@ -3341,7 +3789,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:17:30 GMT + - Wed, 12 Oct 2022 20:36:17 GMT expires: - '-1' pragma: @@ -3358,6 +3806,8 @@ interactions: - nosniff x-frame-options: - deny + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -3373,40 +3823,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:17:09+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:17:00.6326722+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:17:10.2576133+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1699' + - '3218' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:17:30 GMT + - Wed, 12 Oct 2022 20:36:18 GMT expires: - '-1' pragma: @@ -3423,12 +3894,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2463,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2487,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '1' status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console enable + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1259' + content-type: + - application/json + date: + - Wed, 12 Oct 2022 20:36:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console enable + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:36:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny + status: + code: 200 + message: OK - request: body: null headers: @@ -3445,25 +4007,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:17:30 GMT + - Wed, 12 Oct 2022 20:36:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3474,9 +4038,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2233,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3004,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -3496,13 +4060,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:17:31.6324677+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"86816ea3-665f-4227-97b1-cbdbc2d6fbe3\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" headers: cache-control: - no-cache @@ -3511,7 +4075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:01 GMT + - Wed, 12 Oct 2022 20:36:48 GMT expires: - '-1' pragma: @@ -3528,7 +4092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29765 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29862 status: code: 200 message: OK @@ -3546,14 +4110,164 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:17:31.6324677+00:00\",\r\n \"endTime\": - \"2022-08-04T17:18:18.0071799+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"86816ea3-665f-4227-97b1-cbdbc2d6fbe3\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:37:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29857 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:37:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29851 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:38:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29842 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"endTime\": + \"2022-10-12T20:38:23.4105521+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" headers: cache-control: - no-cache @@ -3562,7 +4276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Wed, 12 Oct 2022 20:38:49 GMT expires: - '-1' pragma: @@ -3579,7 +4293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29759 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -3597,9 +4311,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/86816ea3-665f-4227-97b1-cbdbc2d6fbe3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3609,7 +4323,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Wed, 12 Oct 2022 20:38:49 GMT expires: - '-1' pragma: @@ -3622,101 +4336,256 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29758 + - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29833 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + response: + body: + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:38:23.3480496+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-10-12T20:38:23.3792669+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1291' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Oct 2022 20:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2486,Microsoft.Compute/VMScaleSetVMViews3Min;4992 + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1259' + content-type: + - application/json + date: + - Wed, 12 Oct 2022 20:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny status: code: 200 message: OK - request: - body: null + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vmss deallocate + - vmss start Connection: - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '43' - content-type: - - application/json; charset=UTF-8 + - '0' date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Wed, 12 Oct 2022 20:38:51 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/VMScaleSetActions3Min;229,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2983,Microsoft.Compute/VmssQueuedVMOperations;0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '1' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - vmss deallocate + - vmss start Connection: - keep-alive ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:18:17.8509313+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:18:17.8665399+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" headers: cache-control: - no-cache content-length: - - '1291' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:32 GMT + - Wed, 12 Oct 2022 20:39:22 GMT expires: - '-1' pragma: @@ -3733,49 +4602,42 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2462,Microsoft.Compute/VMScaleSetVMViews3Min;4994 - x-ms-request-charge: - - '1' + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29824 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - vmss start Connection: - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:32 GMT + - Wed, 12 Oct 2022 20:39:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3783,17 +4645,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1181,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2320,Microsoft.Compute/VmssQueuedVMOperations;0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-ms-request-charge: - - '1' + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29819 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3808,14 +4670,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:18:33.2883201+00:00\",\r\n \"endTime\": - \"2022-08-04T17:18:50.2569874+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c86462cd-02d5-4754-8f50-ce258bd14d92\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"endTime\": + \"2022-10-12T20:40:07.2845895+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" headers: cache-control: - no-cache @@ -3824,7 +4686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:19:03 GMT + - Wed, 12 Oct 2022 20:40:22 GMT expires: - '-1' pragma: @@ -3841,7 +4703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29751 + - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29830 status: code: 200 message: OK @@ -3859,9 +4721,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c86462cd-02d5-4754-8f50-ce258bd14d92?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -3871,7 +4733,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:03 GMT + - Wed, 12 Oct 2022 20:40:22 GMT expires: - '-1' pragma: @@ -3884,12 +4746,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29749 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29829 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -3906,25 +4768,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:03 GMT + - Wed, 12 Oct 2022 20:40:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -3935,9 +4799,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;391,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2324,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2991,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -3957,14 +4821,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:19:04.2881363+00:00\",\r\n \"endTime\": - \"2022-08-04T17:19:09.5068433+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:40:23.5188051+00:00\",\r\n \"endTime\": + \"2022-10-12T20:40:30.4405652+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"da5d3e55-fd60-4d41-b0e9-e097ff15a5d0\"\r\n}" headers: cache-control: - no-cache @@ -3973,7 +4837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:19:33 GMT + - Wed, 12 Oct 2022 20:40:53 GMT expires: - '-1' pragma: @@ -3990,7 +4854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29744 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29822 status: code: 200 message: OK @@ -4008,9 +4872,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a99ab9a-1e7e-4f29-b923-fedb1e11a0d8?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4020,7 +4884,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:33 GMT + - Wed, 12 Oct 2022 20:40:53 GMT expires: - '-1' pragma: @@ -4033,7 +4897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29743 + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29821 status: code: 200 message: OK @@ -4051,28 +4915,68 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:39:59+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:40:30.4093113+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM stopped\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '3218' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:19:35 GMT + - Wed, 12 Oct 2022 20:40:53 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4081,8 +4985,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2480,Microsoft.Compute/VMScaleSetVMViews3Min;4989 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -4100,47 +5006,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:19:03+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:19:09.4756347+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:19:35 GMT + - Wed, 12 Oct 2022 20:40:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4149,15 +5035,60 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2455,Microsoft.Compute/VMScaleSetVMViews3Min;4984 - x-ms-request-charge: - - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss stop + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 12 Oct 2022 20:40:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - deny + status: + code: 200 + message: OK +- request: + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -4174,25 +5105,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:35 GMT + - Wed, 12 Oct 2022 20:40:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4203,9 +5136,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1179,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2322,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;233,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -4225,23 +5158,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:19:35.8816777+00:00\",\r\n \"endTime\": - \"2022-08-04T17:19:44.1785086+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"10e5b448-a2b8-4053-8fa4-5e07732fe234\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:40:55.330979+00:00\",\r\n \"endTime\": + \"2022-10-12T20:41:01.8153047+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0fefe9d2-b25c-45a4-a72d-569358a6c59f\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:05 GMT + - Wed, 12 Oct 2022 20:41:24 GMT expires: - '-1' pragma: @@ -4258,7 +5191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29739 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29816 status: code: 200 message: OK @@ -4276,9 +5209,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/10e5b448-a2b8-4053-8fa4-5e07732fe234?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4288,7 +5221,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:05 GMT + - Wed, 12 Oct 2022 20:41:25 GMT expires: - '-1' pragma: @@ -4301,7 +5234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29738 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29815 status: code: 200 message: OK @@ -4319,51 +5252,69 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3595' + - '5415' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:06 GMT + - Wed, 12 Oct 2022 20:41:25 GMT expires: - '-1' pragma: @@ -4380,32 +5331,40 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2487 + - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2503 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "sku": {"name": "Standard_DS1_v2", - "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": - "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": - 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": - "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, - "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", - "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", - "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": - {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "sku": {"name": "Standard_DS1_v2", "tier": "Standard", "capacity": + 2}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": + {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": + {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": + 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": + {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": + true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": + "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": + "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], "enableIPForwarding": false}}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": - false}}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": false, - "singlePlacementGroup": true}}' + false}}, "extensionProfile": {"extensions": [{"name": "Microsoft.Azure.Monitor.AzureMonitorLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Monitor", "type": "AzureMonitorLinuxAgent", + "typeHandlerVersion": "1.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"GCS_AUTO_CONFIG": true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"enableGenevaUpload": true, "enableAutoConfig": true, "reportSuccessOnUnsupportedDistro": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true, "orchestrationMode": "Uniform"}}' headers: Accept: - application/json @@ -4416,61 +5375,79 @@ interactions: Connection: - keep-alive Content-Length: - - '2358' + - '3654' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/17a661b6-1395-406f-9934-e93a0173985f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3595' + - '5415' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:08 GMT + - Wed, 12 Oct 2022 20:41:30 GMT expires: - '-1' pragma: @@ -4487,9 +5464,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;113,Microsoft.Compute/CreateVMScaleSet30Min;563,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;148,Microsoft.Compute/CreateVMScaleSet30Min;735,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -4509,23 +5486,23 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/17a661b6-1395-406f-9934-e93a0173985f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:20:08.9283778+00:00\",\r\n \"endTime\": - \"2022-08-04T17:20:09.084623+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5c3a3ee3-26fb-4b32-bb36-bd7c71317d8a\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:41:29.9556743+00:00\",\r\n \"endTime\": + \"2022-10-12T20:41:30.2837742+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"17a661b6-1395-406f-9934-e93a0173985f\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:18 GMT + - Wed, 12 Oct 2022 20:41:40 GMT expires: - '-1' pragma: @@ -4542,7 +5519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29737 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29812 status: code: 200 message: OK @@ -4560,51 +5537,69 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3596' + - '5416' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:18 GMT + - Wed, 12 Oct 2022 20:41:40 GMT expires: - '-1' pragma: @@ -4621,7 +5616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;379,Microsoft.Compute/GetVMScaleSet30Min;2483 + - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2499 status: code: 200 message: OK @@ -4639,28 +5634,68 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:41:27+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:41:01.7840722+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '3218' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:19 GMT + - Wed, 12 Oct 2022 20:41:40 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4669,8 +5704,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2479,Microsoft.Compute/VMScaleSetVMViews3Min;4991 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -4688,47 +5725,74 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:20:07+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clinqhzpo-c47ce47c-9b4d-461d-8f0e-b5a271ca2265/cli000003_3.c47ce47c-9b4d-461d-8f0e-b5a271ca2265.serialconsole.log\"\r\n - \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-08-04T17:19:44.1628937+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json + date: + - Wed, 12 Oct 2022 20:41:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --set + User-Agent: + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + response: + body: + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - '43' + content-type: + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:20:20 GMT + - Wed, 12 Oct 2022 20:41:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4737,15 +5801,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2454,Microsoft.Compute/VMScaleSetVMViews3Min;4984 - x-ms-request-charge: - - '1' + x-frame-options: + - deny status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -4762,25 +5824,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:20 GMT + - Wed, 12 Oct 2022 20:41:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -4791,9 +5855,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1178,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2324,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1176,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -4813,23 +5877,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:20:20.6470228+00:00\",\r\n \"endTime\": - \"2022-08-04T17:20:25.8657649+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"03de0886-4d01-4fcf-9950-acda6f1e833f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:41:42.627425+00:00\",\r\n \"endTime\": + \"2022-10-12T20:41:49.9242649+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f6e3096b-3ca1-45d6-b347-2b27c95b07d0\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:50 GMT + - Wed, 12 Oct 2022 20:42:12 GMT expires: - '-1' pragma: @@ -4846,7 +5910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29732 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29809 status: code: 200 message: OK @@ -4864,9 +5928,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/03de0886-4d01-4fcf-9950-acda6f1e833f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -4876,7 +5940,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:50 GMT + - Wed, 12 Oct 2022 20:42:12 GMT expires: - '-1' pragma: @@ -4889,56 +5953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29731 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss update-instances - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:20:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29808 status: code: 200 message: OK @@ -4956,38 +5971,59 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:20:26+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:42:03+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/NotReady/0\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:18:33.8976766+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:20:25.8188856+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:41:49.8773629+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1262' + - '2786' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:51 GMT + - Wed, 12 Oct 2022 20:42:13 GMT expires: - '-1' pragma: @@ -5004,7 +6040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;487,Microsoft.Compute/GetVMScaleSetVM30Min;2450,Microsoft.Compute/VMScaleSetVMViews3Min;4983 + - Microsoft.Compute/GetVMScaleSetVM3Min;494,Microsoft.Compute/GetVMScaleSetVM30Min;2478,Microsoft.Compute/VMScaleSetVMViews3Min;4994 x-ms-request-charge: - '1' status: @@ -5026,25 +6062,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:52 GMT + - Wed, 12 Oct 2022 20:42:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5055,7 +6093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2234,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -5077,13 +6115,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:20:53.1312236+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"903b6095-5bc8-4c09-aded-64300145e321\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:42:14.2990436+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8bea483-5609-44ec-a7a3-62b686af91b5\"\r\n}" headers: cache-control: - no-cache @@ -5092,7 +6130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:22 GMT + - Wed, 12 Oct 2022 20:42:44 GMT expires: - '-1' pragma: @@ -5109,7 +6147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29729 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29803 status: code: 200 message: OK @@ -5127,14 +6165,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:20:53.1312236+00:00\",\r\n \"endTime\": - \"2022-08-04T17:21:40.8028128+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"903b6095-5bc8-4c09-aded-64300145e321\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:42:14.2990436+00:00\",\r\n \"endTime\": + \"2022-10-12T20:43:04.0172846+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e8bea483-5609-44ec-a7a3-62b686af91b5\"\r\n}" headers: cache-control: - no-cache @@ -5143,7 +6181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Wed, 12 Oct 2022 20:43:14 GMT expires: - '-1' pragma: @@ -5160,7 +6198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29726 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29801 status: code: 200 message: OK @@ -5178,9 +6216,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/903b6095-5bc8-4c09-aded-64300145e321?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -5190,7 +6228,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Wed, 12 Oct 2022 20:43:14 GMT expires: - '-1' pragma: @@ -5203,7 +6241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29725 + - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29800 status: code: 200 message: OK @@ -5221,28 +6259,39 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:43:03.9547864+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"time\": \"2022-10-12T20:43:03.9704216+00:00\"\r\n },\r\n {\r\n + \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n + \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '854' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Wed, 12 Oct 2022 20:43:14 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5251,53 +6300,52 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;489,Microsoft.Compute/GetVMScaleSetVM30Min;2470,Microsoft.Compute/VMScaleSetVMViews3Min;4989 + x-ms-request-charge: + - '1' status: code: 200 message: OK - request: - body: null + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vmss deallocate + - vmss start Connection: - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:21:40.6465621+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:21:40.6621708+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '854' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Wed, 12 Oct 2022 20:43:15 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5305,56 +6353,49 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;484,Microsoft.Compute/GetVMScaleSetVM30Min;2446,Microsoft.Compute/VMScaleSetVMViews3Min;4980 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1175,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2989,Microsoft.Compute/VmssQueuedVMOperations;0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-ms-request-charge: - '1' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"instanceIds": ["3"]}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - vmss start Connection: - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2022-10-12T20:43:15.8765168+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"583bbb60-3725-4d75-864a-c0c716af5a53\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:54 GMT + - Wed, 12 Oct 2022 20:43:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5362,17 +6403,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2235,Microsoft.Compute/VmssQueuedVMOperations;0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-ms-request-charge: - - '1' + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29796 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5387,14 +6428,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:21:55.0995667+00:00\",\r\n \"endTime\": - \"2022-08-04T17:22:12.6150939+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ce4de450-4935-456d-8c81-df3ff06533a9\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:43:15.8765168+00:00\",\r\n \"endTime\": + \"2022-10-12T20:44:05.0792124+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"583bbb60-3725-4d75-864a-c0c716af5a53\"\r\n}" headers: cache-control: - no-cache @@ -5403,7 +6444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:24 GMT + - Wed, 12 Oct 2022 20:44:15 GMT expires: - '-1' pragma: @@ -5420,7 +6461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29720 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29790 status: code: 200 message: OK @@ -5438,9 +6479,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ce4de450-4935-456d-8c81-df3ff06533a9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -5450,7 +6491,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:22:24 GMT + - Wed, 12 Oct 2022 20:44:15 GMT expires: - '-1' pragma: @@ -5463,7 +6504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29718 + - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29789 status: code: 200 message: OK @@ -5481,51 +6522,69 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3596' + - '5416' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:26 GMT + - Wed, 12 Oct 2022 20:44:16 GMT expires: - '-1' pragma: @@ -5542,32 +6601,40 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2477 + - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2494 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "sku": {"name": "Standard_DS1_v2", - "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": - "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": - 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "clinqc38b", "adminUsername": - "rhl", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/rhl/.ssh/authorized_keys", "keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5"}]}, - "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, - "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", - "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "clinqc38bNic", - "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": - {"dnsServers": []}, "ipConfigurations": [{"name": "clinqc38bIPConfig", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, + body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "sku": {"name": "Standard_DS1_v2", "tier": "Standard", "capacity": + 2}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": + {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": + {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": + 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": + {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": + true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": + "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": + "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], "enableIPForwarding": false}}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": - true}}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": false, - "singlePlacementGroup": true}}' + true}}, "extensionProfile": {"extensions": [{"name": "Microsoft.Azure.Monitor.AzureMonitorLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Monitor", "type": "AzureMonitorLinuxAgent", + "typeHandlerVersion": "1.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"GCS_AUTO_CONFIG": true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {"enableGenevaUpload": true, "enableAutoConfig": true, "reportSuccessOnUnsupportedDistro": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true, "orchestrationMode": "Uniform"}}' headers: Accept: - application/json @@ -5578,60 +6645,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2357' + - '3653' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d54e9cdd-9671-44b5-9599-b2bb63d31fc0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/edefcf49-e268-4d68-afb3-58d96573b23d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - - '3525' + - '5345' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:28 GMT + - Wed, 12 Oct 2022 20:44:19 GMT expires: - '-1' pragma: @@ -5648,9 +6733,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;110,Microsoft.Compute/CreateVMScaleSet30Min;540,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;726,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -5670,14 +6755,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d54e9cdd-9671-44b5-9599-b2bb63d31fc0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/edefcf49-e268-4d68-afb3-58d96573b23d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:22:28.0525063+00:00\",\r\n \"endTime\": - \"2022-08-04T17:22:28.1778164+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d54e9cdd-9671-44b5-9599-b2bb63d31fc0\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:44:19.9853353+00:00\",\r\n \"endTime\": + \"2022-10-12T20:44:20.3446802+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"edefcf49-e268-4d68-afb3-58d96573b23d\"\r\n}" headers: cache-control: - no-cache @@ -5686,7 +6771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Wed, 12 Oct 2022 20:44:30 GMT expires: - '-1' pragma: @@ -5703,7 +6788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29715 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29788 status: code: 200 message: OK @@ -5721,50 +6806,68 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": - {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": - \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": - 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": - 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"clinqc38b\",\r\n \"adminUsername\": \"rhl\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/rhl/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCnShRFbeM5I8ZqZWutEqZmnfgEoQQwC4Gd+oiy/XiTTalYwRjUWC0nYLWx8QZROPCyD+GyU7Mm3KyKtWSU5yDBjAxSEegJxqc93oPTbVX8i0IuXZ1DtmdI6JBTQRvliInSnkiY2UXTE+R058LEZRiOeMkGcaLcGzKBYQe/xHzH8dbDMK9Jx1RQSKWqslb5u0YSM8aIdMlDJ2u1hRkp054yHcKdyMCR9lUYa9I6BEpZqEbk8m7Wy4jtbyCgNP7Y1AFcQUcZFtm+wplrYJf4M20umLkK6c04j7NPrAMydprprKgU4Wg7vyhIgQF9VQx6bzBmSKUgkzAYmsZpm4cDCtb5\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n - \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": + {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n + \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n + \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": + \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= + rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clinqc38bNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clinqc38bIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": - true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"239f9fe3-2e0c-403b-8c3a-55cda6cd7b9a\",\r\n - \ \"timeCreated\": \"2022-08-04T17:10:51.2598866+00:00\"\r\n }\r\n}" + true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": + {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n + \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3526' + - '5346' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Wed, 12 Oct 2022 20:44:31 GMT expires: - '-1' pragma: @@ -5781,56 +6884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2474 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --set - User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 - response: - body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" - headers: - cache-control: - - no-cache - content-length: - - '43' - content-type: - - application/json; charset=UTF-8 - date: - - Thu, 04 Aug 2022 17:22:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-frame-options: - - deny + - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2490 status: code: 200 message: OK @@ -5848,38 +6902,59 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:22:30+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:44:07+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:21:55.7245758+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:22:12.599487+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + succeeded\",\r\n \"time\": \"2022-10-12T20:43:16.6733835+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:44:05.047955+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1261' + - '2780' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Wed, 12 Oct 2022 20:44:31 GMT expires: - '-1' pragma: @@ -5896,14 +6971,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2445,Microsoft.Compute/VMScaleSetVMViews3Min;4990 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2469,Microsoft.Compute/VMScaleSetVMViews3Min;4990 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - application/json @@ -5920,25 +6995,27 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 response: body: string: '' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:22:39 GMT + - Wed, 12 Oct 2022 20:44:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 pragma: - no-cache server: @@ -5949,9 +7026,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1176,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2238,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1174,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2955,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - '1' status: @@ -5971,23 +7048,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 response: body: - string: "{\r\n \"startTime\": \"2022-08-04T17:22:39.9587222+00:00\",\r\n \"endTime\": - \"2022-08-04T17:22:48.099251+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-12T20:44:31.9383032+00:00\",\r\n \"endTime\": + \"2022-10-12T20:44:43.3288409+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"44038034-5631-454d-9d71-9cd2fd57dd11\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:23:09 GMT + - Wed, 12 Oct 2022 20:45:01 GMT expires: - '-1' pragma: @@ -6004,7 +7081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29713 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29786 status: code: 200 message: OK @@ -6022,9 +7099,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6b82fdb-efc7-4b6d-88ec-6fd59c4654e9?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 response: body: string: '' @@ -6034,7 +7111,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:23:09 GMT + - Wed, 12 Oct 2022 20:45:01 GMT expires: - '-1' pragma: @@ -6047,7 +7124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29712 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29785 status: code: 200 message: OK @@ -6065,28 +7142,66 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" + string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n + \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": + \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:44:43+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": + [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2022-10-12T20:44:33.1258162+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n + \ ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n + \ \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2022-10-12T20:44:43.2819764+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '2807' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:23:10 GMT + - Wed, 12 Oct 2022 20:45:02 GMT expires: - '-1' pragma: - no-cache server: - - nginx + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6095,8 +7210,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2468,Microsoft.Compute/VMScaleSetVMViews3Min;4990 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -6114,45 +7231,28 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.13 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: body: - string: "{\r\n \"placementGroupId\": \"d026ef0f-b482-4884-8583-16ebe50a963b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"clinqc38b000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.3.0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-08-04T17:22:48+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-08-04T17:22:40.8024299+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-08-04T17:22:48.0523799+00:00\"\r\n },\r\n {\r\n - \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '1288' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:23:10 GMT + - Wed, 12 Oct 2022 20:45:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6161,10 +7261,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2444,Microsoft.Compute/VMScaleSetVMViews3Min;4990 - x-ms-request-charge: - - '1' + x-frame-options: + - deny status: code: 200 message: OK diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml index bc7c3673474..67a1909312b 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml @@ -15,8 +15,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:10:07 GMT + - Wed, 12 Oct 2022 20:26:21 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -68,8 +68,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.39.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.13 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:10:07 GMT + - Wed, 12 Oct 2022 20:26:21 GMT expires: - '-1' pragma: @@ -101,7 +101,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK From bb45618e76a71ff8eef0dd06ec01fbde33ce0e32 Mon Sep 17 00:00:00 2001 From: Richard Hoover Date: Thu, 13 Oct 2022 13:01:20 -0500 Subject: [PATCH 13/17] Fix formatting issue --- .../serialconsole/_microsoft_serial_console_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py index 3567bd77af5..0d58642e997 100644 --- a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py @@ -48,6 +48,7 @@ def __init__( if not base_url: base_url = 'https://management.azure.com' + self._config = MicrosoftSerialConsoleClientConfiguration(credential, subscription_id, **kwargs) self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) From ad089ace8f59630e8d909fe33b72c5ab112c716c Mon Sep 17 00:00:00 2001 From: rhoover Date: Fri, 14 Oct 2022 10:43:16 -0500 Subject: [PATCH 14/17] Add new recording files from running live tests --- .../recordings/test_check_resource_VM.yaml | 1328 ++++++----- .../recordings/test_check_resource_VMSS.yaml | 2107 ++++++++--------- .../recordings/test_enable_disable.yaml | 12 +- 3 files changed, 1599 insertions(+), 1848 deletions(-) diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml index 56753b13741..7291c3c5667 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VM.yaml @@ -11,9 +11,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:45 GMT + - Fri, 14 Oct 2022 15:18:31 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachineScaleSets/cli000003'' @@ -69,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:46 GMT + - Fri, 14 Oct 2022 15:18:31 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-08-01 response: body: string: '{"error":{"code":"ParentResourceNotFound","message":"Can not perform @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:46 GMT + - Fri, 14 Oct 2022 15:18:31 GMT expires: - '-1' pragma: @@ -202,13 +202,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:33 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Wed, 12 Oct 2022 20:31:47 GMT + - Fri, 14 Oct 2022 15:23:33 GMT source-age: - - '0' + - '1' strict-transport-security: - max-age=31536000 vary: @@ -222,15 +222,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 29db9dba783dfb6c7445f841b680c224fadff98a + - 2e43cb927278d68606b26e191838c395fee87c9e x-frame-options: - deny x-github-request-id: - - 0805:2971:2ED5B:3DBB9:6346F7A2 + - 0807:11F5:8F72A:FB4B1:63497DC8 x-served-by: - - cache-dal21253-DAL + - cache-dal2120134-DAL x-timer: - - S1665606407.240136,VS0,VE1 + - S1665760714.830429,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -250,9 +250,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-08-01 response: body: string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n @@ -266,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:46 GMT + - Fri, 14 Oct 2022 15:18:33 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996 status: code: 200 message: OK @@ -301,9 +301,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-08-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:34 GMT expires: - '-1' pragma: @@ -344,7 +344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996 status: code: 200 message: OK @@ -352,7 +352,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -362,9 +362,9 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: string: '{"value":[]}' @@ -376,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:34 GMT expires: - '-1' pragma: @@ -402,7 +402,7 @@ interactions: {"securityRules": [{"name": "default-allow-ssh", "properties": {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": - "Inbound"}}]}}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", + "Inbound"}}]}}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "cli000003PublicIP", "location": "westus2", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", "name": "cli000003VMNic", "location": @@ -412,7 +412,7 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"}}}, - {"apiVersion": "2022-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + {"apiVersion": "2022-08-01", "type": "Microsoft.Compute/virtualMachines", "name": "cli000003", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/cli000003VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic", @@ -421,8 +421,8 @@ interactions: null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n", "path": "/home/rhoover/.ssh/authorized_keys"}]}}}}}], + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n", "path": "/home/rhoover/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: @@ -434,29 +434,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3810' + - '3808' Content-Type: - application/json ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","name":"vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12101603571349635289","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-12T20:26:51.2962067Z","duration":"PT0.0006403S","correlationId":"e62f1d12-5a05-4b22-9280-6af6fd39adb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ","name":"vm_deploy_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7785195787341461596","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-14T15:18:38.1015064Z","duration":"PT0.0007626S","correlationId":"04b71830-d055-4441-965e-548bdaa012d8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8/operationStatuses/08585360004759287717?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ/operationStatuses/08585358461692167705?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2491' + - '2490' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:50 GMT + - Fri, 14 Oct 2022 15:18:38 GMT expires: - '-1' pragma: @@ -484,9 +484,51 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004759287717?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461692167705?api-version=2021-04-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:19:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image -l --generate-ssh-keys + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461692167705?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -498,7 +540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:21 GMT + - Fri, 14 Oct 2022 15:19:38 GMT expires: - '-1' pragma: @@ -526,21 +568,21 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","name":"vm_deploy_73i3x914wDuuEZ8lziRsF29j0FgO2UH8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12101603571349635289","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-12T20:27:12.5564264Z","duration":"PT21.26086S","correlationId":"e62f1d12-5a05-4b22-9280-6af6fd39adb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vm_deploy_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ","name":"vm_deploy_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7785195787341461596","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-14T15:19:17.1864402Z","duration":"PT39.0856964S","correlationId":"04b71830-d055-4441-965e-548bdaa012d8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3349' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:21 GMT + - Fri, 14 Oct 2022 15:19:38 GMT expires: - '-1' pragma: @@ -568,32 +610,32 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -605,28 +647,28 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:27:22+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"2022-10-14T15:19:25+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:27:02.5411761+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:18:51.4431836+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:27:11.197682+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:19:16.0835505+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4231' + - '4239' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:22 GMT + - Fri, 14 Oct 2022 15:19:39 GMT expires: - '-1' pragma: @@ -643,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31885 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -651,7 +693,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -661,18 +703,18 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli000003VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\",\r\n - \ \"etag\": \"W/\\\"940e455d-8148-4a75-b27f-c90279a67b3a\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"039aaffd-6916-4a71-a695-0de583ae6055\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"71b33c53-36c7-4334-af34-3a370b0341db\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"38037776-5efd-4adb-b1cb-bda3ab487392\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\",\r\n - \ \"etag\": \"W/\\\"940e455d-8148-4a75-b27f-c90279a67b3a\\\"\",\r\n + \ \"etag\": \"W/\\\"039aaffd-6916-4a71-a695-0de583ae6055\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -681,25 +723,27 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"pm4h3a4tkcoerfze2dzdxbd4ng.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-78-90-4E\",\r\n \"enableAcceleratedNetworking\": false,\r\n - \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG\"\r\n + \"5ubekrqrkhlurf5gahkxelgrta.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-FC-65-EC\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n + \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n - \ \"location\": \"westus2\"\r\n}" + \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\",\r\n + \ \"kind\": \"Regular\"\r\n}" headers: cache-control: - no-cache content-length: - - '2347' + - '2523' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:22 GMT + - Fri, 14 Oct 2022 15:19:40 GMT etag: - - W/"940e455d-8148-4a75-b27f-c90279a67b3a" + - W/"039aaffd-6916-4a71-a695-0de583ae6055" expires: - '-1' pragma: @@ -716,7 +760,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 621703d6-3573-4b8f-99f8-b2d2249dd45b + - ffa84083-0fae-4347-a8e2-20f99e68e498 status: code: 200 message: OK @@ -724,7 +768,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -734,31 +778,32 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli000003PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP\",\r\n - \ \"etag\": \"W/\\\"1c2a1ce2-029d-4275-a255-d11fe2811b70\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7781bd9a-182b-45dd-a5d6-c596b1acfd34\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"8870ea16-9619-42c1-ad44-a3f6cc79cb08\",\r\n - \ \"ipAddress\": \"20.112.112.217\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"85ec7473-97f8-413f-892d-8b940148cf7c\",\r\n + \ \"ipAddress\": \"20.112.86.217\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic/ipConfigurations/ipconfigcli000003\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '929' + - '953' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:23 GMT + - Fri, 14 Oct 2022 15:19:40 GMT etag: - - W/"1c2a1ce2-029d-4275-a255-d11fe2811b70" + - W/"7781bd9a-182b-45dd-a5d6-c596b1acfd34" expires: - '-1' pragma: @@ -775,7 +820,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8dc9747c-0e40-487f-a8a8-e8d61076357b + - 984d82fc-74d9-416f-bb4c-4df013601d5a status: code: 200 message: OK @@ -793,32 +838,32 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -830,28 +875,28 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:27:22+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"2022-10-14T15:19:25+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:27:02.5411761+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:18:51.4431836+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:27:11.197682+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:19:16.0835505+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4231' + - '4239' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:24 GMT + - Fri, 14 Oct 2022 15:19:40 GMT expires: - '-1' pragma: @@ -868,7 +913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31884 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -886,48 +931,48 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2929' + - '2933' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:24 GMT + - Fri, 14 Oct 2022 15:19:40 GMT expires: - '-1' pragma: @@ -944,24 +989,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31883 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": - "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": - true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": true}}}}' headers: Accept: @@ -973,38 +1018,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1942' + - '1985' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -1012,20 +1057,20 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/beb4b6da-7786-44c6-befd-46916519b2fb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/4f6bc2e8-8a7c-4276-a7d2-9ed34c15ee1e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3027' + - '3031' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:26 GMT + - Fri, 14 Oct 2022 15:19:44 GMT expires: - '-1' pragma: @@ -1042,9 +1087,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;592,Microsoft.Compute/PutVM30Min;2974 + - Microsoft.Compute/PutVM3Min;594,Microsoft.Compute/PutVM30Min;2984 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1062,14 +1107,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/beb4b6da-7786-44c6-befd-46916519b2fb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/4f6bc2e8-8a7c-4276-a7d2-9ed34c15ee1e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:27:26.1822581+00:00\",\r\n \"endTime\": - \"2022-10-12T20:27:33.0885446+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"beb4b6da-7786-44c6-befd-46916519b2fb\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:19:43.5989027+00:00\",\r\n \"endTime\": + \"2022-10-14T15:19:50.7551028+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4f6bc2e8-8a7c-4276-a7d2-9ed34c15ee1e\"\r\n}" headers: cache-control: - no-cache @@ -1078,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:56 GMT + - Fri, 14 Oct 2022 15:20:14 GMT expires: - '-1' pragma: @@ -1095,7 +1140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1113,32 +1158,32 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -1146,16 +1191,16 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3028' + - '3032' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:56 GMT + - Fri, 14 Oct 2022 15:20:14 GMT expires: - '-1' pragma: @@ -1172,7 +1217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31880 + - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -1190,32 +1235,32 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -1228,30 +1273,30 @@ interactions: \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:27:34+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:19:49+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:27:26.760378+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:19:44.1614198+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:27:33.0728669+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:19:50.7551028+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4360' + - '4368' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:57 GMT + - Fri, 14 Oct 2022 15:20:15 GMT expires: - '-1' pragma: @@ -1268,7 +1313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31879 + - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986 status: code: 200 message: OK @@ -1286,8 +1331,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1301,7 +1346,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:27:57 GMT + - Fri, 14 Oct 2022 15:20:16 GMT expires: - '-1' pragma: @@ -1337,9 +1382,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-08-01 response: body: string: '' @@ -1347,17 +1392,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:27:58 GMT + - Fri, 14 Oct 2022 15:20:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1368,9 +1413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -1388,13 +1433,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:27:58.7914719+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3329a62-6d47-424e-ac61-93ca81f5e66c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:20:17.0204444+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"2104914c-5652-4df7-90ea-fcc5d18bbb8c\"\r\n}" headers: cache-control: - no-cache @@ -1403,7 +1448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:28:08 GMT + - Fri, 14 Oct 2022 15:20:26 GMT expires: - '-1' pragma: @@ -1420,7 +1465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29841 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1438,23 +1483,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:27:58.7914719+00:00\",\r\n \"endTime\": - \"2022-10-12T20:28:39.2284862+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c3329a62-6d47-424e-ac61-93ca81f5e66c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:20:17.0204444+00:00\",\r\n \"endTime\": + \"2022-10-14T15:20:42.926446+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2104914c-5652-4df7-90ea-fcc5d18bbb8c\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:28:44 GMT + - Fri, 14 Oct 2022 15:20:56 GMT expires: - '-1' pragma: @@ -1471,7 +1516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1489,9 +1534,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c3329a62-6d47-424e-ac61-93ca81f5e66c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1501,7 +1546,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:28:45 GMT + - Fri, 14 Oct 2022 15:20:57 GMT expires: - '-1' pragma: @@ -1514,7 +1559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982 status: code: 200 message: OK @@ -1532,30 +1577,30 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -1564,28 +1609,28 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n \"statuses\": + \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:28:39.025367+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:20:42.7389392+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:28:39.0409995+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:20:42.7545747+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3818' + - '3826' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:28:45 GMT + - Fri, 14 Oct 2022 15:20:58 GMT expires: - '-1' pragma: @@ -1602,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31874 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31978 status: code: 200 message: OK @@ -1620,8 +1665,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1635,7 +1680,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:28:46 GMT + - Fri, 14 Oct 2022 15:20:58 GMT expires: - '-1' pragma: @@ -1671,9 +1716,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -1681,17 +1726,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:28:46 GMT + - Fri, 14 Oct 2022 15:20:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1702,9 +1747,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1722,63 +1767,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:28:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29835 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm start - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:20:59.5512784+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8ebffdc3-4311-4dee-a126-81e84b11a5eb\"\r\n}" headers: cache-control: - no-cache @@ -1787,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:29:05 GMT + - Fri, 14 Oct 2022 15:21:09 GMT expires: - '-1' pragma: @@ -1804,7 +1799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29828 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1822,14 +1817,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:28:47.1034512+00:00\",\r\n \"endTime\": - \"2022-10-12T20:29:07.9626692+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0d302897-bac9-4aa4-b7a4-7abe4ecc27cd\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:20:59.5512784+00:00\",\r\n \"endTime\": + \"2022-10-14T15:21:13.4730808+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8ebffdc3-4311-4dee-a126-81e84b11a5eb\"\r\n}" headers: cache-control: - no-cache @@ -1838,7 +1833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:29:36 GMT + - Fri, 14 Oct 2022 15:21:19 GMT expires: - '-1' pragma: @@ -1855,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29825 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -1873,9 +1868,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0d302897-bac9-4aa4-b7a4-7abe4ecc27cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1885,7 +1880,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:29:36 GMT + - Fri, 14 Oct 2022 15:21:19 GMT expires: - '-1' pragma: @@ -1898,7 +1893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29824 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -1918,9 +1913,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-08-01 response: body: string: '' @@ -1928,17 +1923,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ecf1882f-e784-4fdb-a80a-7c760b34003c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:29:37 GMT + - Fri, 14 Oct 2022 15:21:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ecf1882f-e784-4fdb-a80a-7c760b34003c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1949,9 +1944,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 + - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1969,14 +1964,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ecf1882f-e784-4fdb-a80a-7c760b34003c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:29:38.0249186+00:00\",\r\n \"endTime\": - \"2022-10-12T20:29:43.7436098+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c830ac01-590f-4d39-bbd0-d83d9535be81\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:21:20.2542538+00:00\",\r\n \"endTime\": + \"2022-10-14T15:21:22.4729364+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ecf1882f-e784-4fdb-a80a-7c760b34003c\"\r\n}" headers: cache-control: - no-cache @@ -1985,7 +1980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:08 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -2002,7 +1997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29912 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966 status: code: 200 message: OK @@ -2020,9 +2015,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c830ac01-590f-4d39-bbd0-d83d9535be81?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ecf1882f-e784-4fdb-a80a-7c760b34003c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2032,7 +2027,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:30:08 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -2045,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29911 + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965 status: code: 200 message: OK @@ -2063,9 +2058,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2075,24 +2070,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2100,35 +2095,34 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n + \ \"displayStatus\": \"Not Ready\",\r\n \"message\": + \"VM status blob is found but not yet populated.\",\r\n \"time\": + \"2022-10-14T15:21:51+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:29:41.9311381+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:21:26.8635118+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:29:43.7436098+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:21:28.5822425+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4823' + - '4736' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:08 GMT + - Fri, 14 Oct 2022 15:21:50 GMT expires: - '-1' pragma: @@ -2145,7 +2139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31890 + - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31959 status: code: 200 message: OK @@ -2163,8 +2157,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2178,7 +2172,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:30:09 GMT + - Fri, 14 Oct 2022 15:21:51 GMT expires: - '-1' pragma: @@ -2212,9 +2206,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2224,24 +2218,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2249,16 +2243,16 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3490' + - '3494' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:10 GMT + - Fri, 14 Oct 2022 15:21:52 GMT expires: - '-1' pragma: @@ -2275,7 +2269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31889 + - Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31958 status: code: 200 message: OK @@ -2283,17 +2277,17 @@ interactions: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": {}}}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": - "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": - true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": false}}}}' headers: Accept: @@ -2305,15 +2299,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2241' + - '2284' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2323,24 +2317,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2348,20 +2342,20 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ed34acc-4cdd-4c8c-870a-f02a83cf142e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f1cd4507-f4e8-40b7-a565-afabb1d6fecf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3490' + - '3494' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:13 GMT + - Fri, 14 Oct 2022 15:21:55 GMT expires: - '-1' pragma: @@ -2378,9 +2372,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;593,Microsoft.Compute/PutVM30Min;2972 + - Microsoft.Compute/PutVM3Min;593,Microsoft.Compute/PutVM30Min;2981 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2398,14 +2392,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ed34acc-4cdd-4c8c-870a-f02a83cf142e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f1cd4507-f4e8-40b7-a565-afabb1d6fecf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:30:12.0402434+00:00\",\r\n \"endTime\": - \"2022-10-12T20:30:14.5246091+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3ed34acc-4cdd-4c8c-870a-f02a83cf142e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:21:55.0350892+00:00\",\r\n \"endTime\": + \"2022-10-14T15:22:07.0818652+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f1cd4507-f4e8-40b7-a565-afabb1d6fecf\"\r\n}" headers: cache-control: - no-cache @@ -2414,7 +2408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:43 GMT + - Fri, 14 Oct 2022 15:22:25 GMT expires: - '-1' pragma: @@ -2431,7 +2425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29907 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29958 status: code: 200 message: OK @@ -2449,9 +2443,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2461,24 +2455,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2486,16 +2480,16 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3491' + - '3495' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:43 GMT + - Fri, 14 Oct 2022 15:22:25 GMT expires: - '-1' pragma: @@ -2512,7 +2506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31881 + - Microsoft.Compute/LowCostGet3Min;3954,Microsoft.Compute/LowCostGet30Min;31950 status: code: 200 message: OK @@ -2530,9 +2524,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2542,24 +2536,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2567,34 +2561,33 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n + \ \"displayStatus\": \"Not Ready\",\r\n \"message\": + \"VM status blob is found but not yet populated.\",\r\n \"time\": + \"2022-10-14T15:22:26+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:14.5090184+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:07.0818652+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4794' + - '4707' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:43 GMT + - Fri, 14 Oct 2022 15:22:26 GMT expires: - '-1' pragma: @@ -2611,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31880 + - Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31949 status: code: 200 message: OK @@ -2631,9 +2624,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -2641,17 +2634,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:30:44 GMT + - Fri, 14 Oct 2022 15:22:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2662,7 +2655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1195 + - Microsoft.Compute/UpdateVM3Min;233,Microsoft.Compute/UpdateVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2682,23 +2675,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:30:44.883638+00:00\",\r\n \"endTime\": - \"2022-10-12T20:30:52.805441+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"06978101-bcc4-46df-8811-e2949309adbf\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:22:27.5661088+00:00\",\r\n \"endTime\": + \"2022-10-14T15:22:35.5972271+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8a232137-dc32-40fe-8c57-97f9381a8b7c\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:55 GMT + - Fri, 14 Oct 2022 15:22:37 GMT expires: - '-1' pragma: @@ -2715,7 +2708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29953 status: code: 200 message: OK @@ -2733,9 +2726,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06978101-bcc4-46df-8811-e2949309adbf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2745,7 +2738,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:30:55 GMT + - Fri, 14 Oct 2022 15:22:37 GMT expires: - '-1' pragma: @@ -2758,7 +2751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29952 status: code: 200 message: OK @@ -2776,9 +2769,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2788,24 +2781,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2813,34 +2806,33 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:29:21+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n + \ \"displayStatus\": \"Not Ready\",\r\n \"message\": + \"VM status blob is found but not yet populated.\",\r\n \"time\": + \"2022-10-14T15:22:39+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:52.7898439+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:35.5816106+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4794' + - '4707' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:56 GMT + - Fri, 14 Oct 2022 15:22:39 GMT expires: - '-1' pragma: @@ -2857,7 +2849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31878 + - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31945 status: code: 200 message: OK @@ -2875,9 +2867,9 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -2887,24 +2879,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -2912,16 +2904,16 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \ \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3491' + - '3495' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:56 GMT + - Fri, 14 Oct 2022 15:22:39 GMT expires: - '-1' pragma: @@ -2938,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31875 + - Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31944 status: code: 200 message: OK @@ -2956,12 +2948,12 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan/providers/Microsoft.Storage/storageAccounts/bkerrigandiag","name":"bkerrigandiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-17T00:24:49.4879627Z","key2":"2022-05-17T00:24:49.4879627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-17T00:24:49.3473400Z","primaryEndpoints":{"blob":"https://bkerrigandiag.blob.core.windows.net/","queue":"https://bkerrigandiag.queue.core.windows.net/","table":"https://bkerrigandiag.table.core.windows.net/","file":"https://bkerrigandiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032001f4814ba9","name":"cs210032001f4814ba9","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-16T14:16:22.3477819Z","key2":"2022-05-16T14:16:22.3477819Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-16T14:16:22.2227752Z","primaryEndpoints":{"dfs":"https://cs210032001f4814ba9.dfs.core.windows.net/","web":"https://cs210032001f4814ba9.z13.web.core.windows.net/","blob":"https://cs210032001f4814ba9.blob.core.windows.net/","queue":"https://cs210032001f4814ba9.queue.core.windows.net/","table":"https://cs210032001f4814ba9.table.core.windows.net/","file":"https://cs210032001f4814ba9.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoflow/providers/Microsoft.Storage/storageAccounts/csslinuxkustoflow","name":"csslinuxkustoflow","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"CreatedBy":"craigw"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-01T20:08:38.5912170Z","primaryEndpoints":{"dfs":"https://csslinuxkustoflow.dfs.core.windows.net/","web":"https://csslinuxkustoflow.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow.blob.core.windows.net/","queue":"https://csslinuxkustoflow.queue.core.windows.net/","table":"https://csslinuxkustoflow.table.core.windows.net/","file":"https://csslinuxkustoflow.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://csslinuxkustoflow-secondary.dfs.core.windows.net/","web":"https://csslinuxkustoflow-secondary.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow-secondary.blob.core.windows.net/","queue":"https://csslinuxkustoflow-secondary.queue.core.windows.net/","table":"https://csslinuxkustoflow-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus/providers/Microsoft.Storage/storageAccounts/scrunnercrkwpdn5nhtgg","name":"scrunnercrkwpdn5nhtgg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T20:03:57.5451905Z","primaryEndpoints":{"blob":"https://scrunnercrkwpdn5nhtgg.blob.core.windows.net/","queue":"https://scrunnercrkwpdn5nhtgg.queue.core.windows.net/","table":"https://scrunnercrkwpdn5nhtgg.table.core.windows.net/","file":"https://scrunnercrkwpdn5nhtgg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialconsolepreview","name":"serialconsolepreview","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-07T21:41:56.3607334Z","key2":"2021-05-07T21:41:56.3607334Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-07T21:41:56.2513536Z","primaryEndpoints":{"dfs":"https://serialconsolepreview.dfs.core.windows.net/","web":"https://serialconsolepreview.z13.web.core.windows.net/","blob":"https://serialconsolepreview.blob.core.windows.net/","queue":"https://serialconsolepreview.queue.core.windows.net/","table":"https://serialconsolepreview.table.core.windows.net/","file":"https://serialconsolepreview.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://serialconsolepreview-secondary.dfs.core.windows.net/","web":"https://serialconsolepreview-secondary.z13.web.core.windows.net/","blob":"https://serialconsolepreview-secondary.blob.core.windows.net/","queue":"https://serialconsolepreview-secondary.queue.core.windows.net/","table":"https://serialconsolepreview-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialconsole-test/providers/Microsoft.Storage/storageAccounts/serialconsoletestdiag","name":"serialconsoletestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-02-06T20:21:39.5925779Z","primaryEndpoints":{"blob":"https://serialconsoletestdiag.blob.core.windows.net/","queue":"https://serialconsoletestdiag.queue.core.windows.net/","table":"https://serialconsoletestdiag.table.core.windows.net/","file":"https://serialconsoletestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialTest-EastUS/providers/Microsoft.Storage/storageAccounts/serialtesta8d7fdee41","name":"serialtesta8d7fdee41","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-11T00:38:13.4452119Z","primaryEndpoints":{"blob":"https://serialtesta8d7fdee41.blob.core.windows.net/","queue":"https://serialtesta8d7fdee41.queue.core.windows.net/","table":"https://serialtesta8d7fdee41.table.core.windows.net/","file":"https://serialtesta8d7fdee41.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialtestbootdiag123","name":"serialtestbootdiag123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-23T04:03:01.2951106Z","primaryEndpoints":{"blob":"https://serialtestbootdiag123.blob.core.windows.net/","queue":"https://serialtestbootdiag123.queue.core.windows.net/","table":"https://serialtestbootdiag123.table.core.windows.net/","file":"https://serialtestbootdiag123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuas-rg/providers/Microsoft.Storage/storageAccounts/yuasstorageacct","name":"yuasstorageacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-02T12:18:18.8547131Z","key2":"2022-08-02T12:18:18.8547131Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-02T12:18:18.7140969Z","primaryEndpoints":{"dfs":"https://yuasstorageacct.dfs.core.windows.net/","web":"https://yuasstorageacct.z13.web.core.windows.net/","blob":"https://yuasstorageacct.blob.core.windows.net/","queue":"https://yuasstorageacct.queue.core.windows.net/","table":"https://yuasstorageacct.table.core.windows.net/","file":"https://yuasstorageacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuasstorageacct-secondary.dfs.core.windows.net/","web":"https://yuasstorageacct-secondary.z13.web.core.windows.net/","blob":"https://yuasstorageacct-secondary.blob.core.windows.net/","queue":"https://yuasstorageacct-secondary.queue.core.windows.net/","table":"https://yuasstorageacct-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bkerriganbootdiag","name":"bkerriganbootdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-06T13:46:17.8293781Z","key2":"2022-09-06T13:46:17.8293781Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-06T13:46:17.7200090Z","primaryEndpoints":{"dfs":"https://bkerriganbootdiag.dfs.core.windows.net/","web":"https://bkerriganbootdiag.z20.web.core.windows.net/","blob":"https://bkerriganbootdiag.blob.core.windows.net/","queue":"https://bkerriganbootdiag.queue.core.windows.net/","table":"https://bkerriganbootdiag.table.core.windows.net/","file":"https://bkerriganbootdiag.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bktestsa2","name":"bktestsa2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2022-09-27T23:58:45.6496284Z","key2":"2022-09-27T23:58:45.6496284Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-27T23:58:45.5558609Z","primaryEndpoints":{"dfs":"https://bktestsa2.dfs.core.windows.net/","web":"https://bktestsa2.z20.web.core.windows.net/","blob":"https://bktestsa2.blob.core.windows.net/","queue":"https://bktestsa2.queue.core.windows.net/","table":"https://bktestsa2.table.core.windows.net/","file":"https://bktestsa2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2eastus2storage","name":"guptar2eastus2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-28T23:08:00.6935848Z","key2":"2022-07-28T23:08:00.6935848Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.98.194.64","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:08:00.5840608Z","primaryEndpoints":{"dfs":"https://guptar2eastus2storage.dfs.core.windows.net/","web":"https://guptar2eastus2storage.z20.web.core.windows.net/","blob":"https://guptar2eastus2storage.blob.core.windows.net/","queue":"https://guptar2eastus2storage.queue.core.windows.net/","table":"https://guptar2eastus2storage.table.core.windows.net/","file":"https://guptar2eastus2storage.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhel-test/providers/Microsoft.Storage/storageAccounts/rhel77acct","name":"rhel77acct","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T20:31:30.8215811Z","primaryEndpoints":{"blob":"https://rhel77acct.blob.core.windows.net/","queue":"https://rhel77acct.queue.core.windows.net/","table":"https://rhel77acct.table.core.windows.net/","file":"https://rhel77acct.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320010c152e3d","name":"cs4100320010c152e3d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-07T20:19:42.9636823Z","key2":"2022-02-07T20:19:42.9636823Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-07T20:19:42.8699133Z","primaryEndpoints":{"dfs":"https://cs4100320010c152e3d.dfs.core.windows.net/","web":"https://cs4100320010c152e3d.z22.web.core.windows.net/","blob":"https://cs4100320010c152e3d.blob.core.windows.net/","queue":"https://cs4100320010c152e3d.queue.core.windows.net/","table":"https://cs4100320010c152e3d.table.core.windows.net/","file":"https://cs4100320010c152e3d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-23T23:07:15.9333036Z","primaryEndpoints":{"dfs":"https://cs410037ffea943c134.dfs.core.windows.net/","web":"https://cs410037ffea943c134.z22.web.core.windows.net/","blob":"https://cs410037ffea943c134.blob.core.windows.net/","queue":"https://cs410037ffea943c134.queue.core.windows.net/","table":"https://cs410037ffea943c134.table.core.windows.net/","file":"https://cs410037ffea943c134.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffd81f3ab32","name":"cs41003bffd81f3ab32","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-29T00:18:56.4686445Z","key2":"2022-07-29T00:18:56.4686445Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T00:18:56.3748663Z","primaryEndpoints":{"dfs":"https://cs41003bffd81f3ab32.dfs.core.windows.net/","web":"https://cs41003bffd81f3ab32.z22.web.core.windows.net/","blob":"https://cs41003bffd81f3ab32.blob.core.windows.net/","queue":"https://cs41003bffd81f3ab32.queue.core.windows.net/","table":"https://cs41003bffd81f3ab32.table.core.windows.net/","file":"https://cs41003bffd81f3ab32.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4aa22d82de270x4becxb48","name":"cs4aa22d82de270x4becxb48","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-29T23:39:30.2563159Z","primaryEndpoints":{"blob":"https://cs4aa22d82de270x4becxb48.blob.core.windows.net/","queue":"https://cs4aa22d82de270x4becxb48.queue.core.windows.net/","table":"https://cs4aa22d82de270x4becxb48.table.core.windows.net/","file":"https://cs4aa22d82de270x4becxb48.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2storagecloudshell","name":"guptar2storagecloudshell","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-13T23:27:57.8525804Z","key2":"2022-09-13T23:27:57.8525804Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-13T23:27:57.7431842Z","primaryEndpoints":{"dfs":"https://guptar2storagecloudshell.dfs.core.windows.net/","web":"https://guptar2storagecloudshell.z22.web.core.windows.net/","blob":"https://guptar2storagecloudshell.blob.core.windows.net/","queue":"https://guptar2storagecloudshell.queue.core.windows.net/","table":"https://guptar2storagecloudshell.table.core.windows.net/","file":"https://guptar2storagecloudshell.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar/providers/Microsoft.Storage/storageAccounts/guptardevstorage","name":"guptardevstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-15T16:49:43.1435156Z","key2":"2022-02-15T16:49:43.1435156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-15T16:49:43.0341047Z","primaryEndpoints":{"dfs":"https://guptardevstorage.dfs.core.windows.net/","web":"https://guptardevstorage.z22.web.core.windows.net/","blob":"https://guptardevstorage.blob.core.windows.net/","queue":"https://guptardevstorage.queue.core.windows.net/","table":"https://guptardevstorage.table.core.windows.net/","file":"https://guptardevstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunner/providers/Microsoft.Storage/storageAccounts/scrunnerstorage","name":"scrunnerstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-06T00:42:11.6234985Z","primaryEndpoints":{"blob":"https://scrunnerstorage.blob.core.windows.net/","queue":"https://scrunnerstorage.queue.core.windows.net/","table":"https://scrunnerstorage.table.core.windows.net/","file":"https://scrunnerstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs710032001417ec1a8","name":"cs710032001417ec1a8","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-18T22:07:33.4170256Z","key2":"2021-05-18T22:07:33.4170256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-18T22:07:33.3389725Z","primaryEndpoints":{"dfs":"https://cs710032001417ec1a8.dfs.core.windows.net/","web":"https://cs710032001417ec1a8.z21.web.core.windows.net/","blob":"https://cs710032001417ec1a8.blob.core.windows.net/","queue":"https://cs710032001417ec1a8.queue.core.windows.net/","table":"https://cs710032001417ec1a8.table.core.windows.net/","file":"https://cs710032001417ec1a8.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover/providers/Microsoft.Storage/storageAccounts/rhooverstorage","name":"rhooverstorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-26T17:14:23.5085026Z","key2":"2022-05-26T17:14:23.5085026Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-26T17:14:23.4147520Z","primaryEndpoints":{"dfs":"https://rhooverstorage.dfs.core.windows.net/","web":"https://rhooverstorage.z21.web.core.windows.net/","blob":"https://rhooverstorage.blob.core.windows.net/","queue":"https://rhooverstorage.queue.core.windows.net/","table":"https://rhooverstorage.table.core.windows.net/","file":"https://rhooverstorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsarestricted","name":"aueastsarestricted","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:32:04.7486474Z","key2":"2022-07-17T04:32:04.7486474Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-networking/providers/Microsoft.Network/virtualNetworks/aueast-vnet/subnets/testing","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:32:04.6861236Z","primaryEndpoints":{"dfs":"https://aueastsarestricted.dfs.core.windows.net/","web":"https://aueastsarestricted.z8.web.core.windows.net/","blob":"https://aueastsarestricted.blob.core.windows.net/","queue":"https://aueastsarestricted.queue.core.windows.net/","table":"https://aueastsarestricted.table.core.windows.net/","file":"https://aueastsarestricted.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsastd","name":"aueastsastd","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:28:55.7260171Z","key2":"2022-07-17T04:28:55.7260171Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:28:55.6634675Z","primaryEndpoints":{"dfs":"https://aueastsastd.dfs.core.windows.net/","web":"https://aueastsastd.z8.web.core.windows.net/","blob":"https://aueastsastd.blob.core.windows.net/","queue":"https://aueastsastd.queue.core.windows.net/","table":"https://aueastsastd.table.core.windows.net/","file":"https://aueastsastd.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunnertestvmrg-AustraliaEast/providers/Microsoft.Storage/storageAccounts/scrunner4p3t72mzheluc","name":"scrunner4p3t72mzheluc","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-13T22:35:36.6210942Z","key2":"2021-04-13T22:35:36.6210942Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T22:35:36.5429508Z","primaryEndpoints":{"blob":"https://scrunner4p3t72mzheluc.blob.core.windows.net/","queue":"https://scrunner4p3t72mzheluc.queue.core.windows.net/","table":"https://scrunner4p3t72mzheluc.table.core.windows.net/","file":"https://scrunner4p3t72mzheluc.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleimai244luxkv4qi3pzelwnexgjxzvq5n6g6erlqn6mucntnjyn2lt/providers/Microsoft.Storage/storageAccounts/cliaa3vl7jr6zshgrsmarb6m","name":"cliaa3vl7jr6zshgrsmarb6m","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:18:45.9704319Z","key2":"2022-10-12T19:18:45.9704319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:18:45.8923129Z","primaryEndpoints":{"blob":"https://cliaa3vl7jr6zshgrsmarb6m.blob.core.windows.net/","queue":"https://cliaa3vl7jr6zshgrsmarb6m.queue.core.windows.net/","table":"https://cliaa3vl7jr6zshgrsmarb6m.table.core.windows.net/","file":"https://cliaa3vl7jr6zshgrsmarb6m.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleuprs6wnhhkthfvk3g347c54erbdpkxj7og4vdd5jrhlsj2i6a4y7z/providers/Microsoft.Storage/storageAccounts/cliit6yvjuhqdolxqkfrxi5p","name":"cliit6yvjuhqdolxqkfrxi5p","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-09-28T02:55:03.4203450Z","key2":"2022-09-28T02:55:03.4203450Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-28T02:55:03.3421930Z","primaryEndpoints":{"blob":"https://cliit6yvjuhqdolxqkfrxi5p.blob.core.windows.net/","queue":"https://cliit6yvjuhqdolxqkfrxi5p.queue.core.windows.net/","table":"https://cliit6yvjuhqdolxqkfrxi5p.table.core.windows.net/","file":"https://cliit6yvjuhqdolxqkfrxi5p.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolev2q2lh56h7hqtyjtanifgmz4hdorxphuxke6b6quutmbcnwbei73w/providers/Microsoft.Storage/storageAccounts/clijtqve7gvk45gcoi2b7s7b","name":"clijtqve7gvk45gcoi2b7s7b","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.6083769Z","key2":"2022-10-12T20:26:24.6083769Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.7802549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.7802549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.5146265Z","primaryEndpoints":{"blob":"https://clijtqve7gvk45gcoi2b7s7b.blob.core.windows.net/","queue":"https://clijtqve7gvk45gcoi2b7s7b.queue.core.windows.net/","table":"https://clijtqve7gvk45gcoi2b7s7b.table.core.windows.net/","file":"https://clijtqve7gvk45gcoi2b7s7b.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole65oe66637pgdja4dy4bdh3qisfcmsso6ehdjsrfzlrtbjadxpeht7/providers/Microsoft.Storage/storageAccounts/climdj65uw2u4tyesha5nafm","name":"climdj65uw2u4tyesha5nafm","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:25.4990299Z","key2":"2022-10-12T20:26:25.4990299Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.6552620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.6552620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:25.4052609Z","primaryEndpoints":{"blob":"https://climdj65uw2u4tyesha5nafm.blob.core.windows.net/","queue":"https://climdj65uw2u4tyesha5nafm.queue.core.windows.net/","table":"https://climdj65uw2u4tyesha5nafm.table.core.windows.net/","file":"https://climdj65uw2u4tyesha5nafm.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolebu3ysrz4ys6nf53sjbe27q6meplfgo42nmwtt6n42lwf7nb2djglu/providers/Microsoft.Storage/storageAccounts/clionba2zq3np42anddkf6o7","name":"clionba2zq3np42anddkf6o7","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://clionba2zq3np42anddkf6o7.blob.core.windows.net/","queue":"https://clionba2zq3np42anddkf6o7.queue.core.windows.net/","table":"https://clionba2zq3np42anddkf6o7.table.core.windows.net/","file":"https://clionba2zq3np42anddkf6o7.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolefxqkhafj52ep4gg474dntlscgprhtrbvwhs2ff4fvipbw5tg2cexz/providers/Microsoft.Storage/storageAccounts/clipfdv4l2hramy2ysuln7bs","name":"clipfdv4l2hramy2ysuln7bs","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:55:35.0170190Z","key2":"2022-10-12T19:55:35.0170190Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:55:34.9076957Z","primaryEndpoints":{"blob":"https://clipfdv4l2hramy2ysuln7bs.blob.core.windows.net/","queue":"https://clipfdv4l2hramy2ysuln7bs.queue.core.windows.net/","table":"https://clipfdv4l2hramy2ysuln7bs.table.core.windows.net/","file":"https://clipfdv4l2hramy2ysuln7bs.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-gui-test_group/providers/Microsoft.Storage/storageAccounts/craigwguitestgroupdiag","name":"craigwguitestgroupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-25T20:43:28.9782992Z","key2":"2021-06-25T20:43:28.9782992Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-25T20:43:28.9001463Z","primaryEndpoints":{"blob":"https://craigwguitestgroupdiag.blob.core.windows.net/","queue":"https://craigwguitestgroupdiag.queue.core.windows.net/","table":"https://craigwguitestgroupdiag.table.core.windows.net/","file":"https://craigwguitestgroupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv1","name":"guptar2diagnosticsv1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:21:41.8250582Z","key2":"2022-04-05T17:21:41.8250582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-05T17:21:41.7313240Z","primaryEndpoints":{"blob":"https://guptar2diagnosticsv1.blob.core.windows.net/","queue":"https://guptar2diagnosticsv1.queue.core.windows.net/","table":"https://guptar2diagnosticsv1.table.core.windows.net/","file":"https://guptar2diagnosticsv1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv2","name":"guptar2diagnosticsv2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-04-05T17:22:55.8411567Z","key2":"2022-04-05T17:22:55.8411567Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-05T17:22:55.7318000Z","primaryEndpoints":{"dfs":"https://guptar2diagnosticsv2.dfs.core.windows.net/","web":"https://guptar2diagnosticsv2.z5.web.core.windows.net/","blob":"https://guptar2diagnosticsv2.blob.core.windows.net/","queue":"https://guptar2diagnosticsv2.queue.core.windows.net/","table":"https://guptar2diagnosticsv2.table.core.windows.net/","file":"https://guptar2diagnosticsv2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sericonrp-trafficmanager/providers/Microsoft.Storage/storageAccounts/sericonrpdevtmstorage","name":"sericonrpdevtmstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-15T09:23:38.0203325Z","key2":"2021-09-15T09:23:38.0203325Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-15T09:23:37.9265953Z","primaryEndpoints":{"dfs":"https://sericonrpdevtmstorage.dfs.core.windows.net/","web":"https://sericonrpdevtmstorage.z5.web.core.windows.net/","blob":"https://sericonrpdevtmstorage.blob.core.windows.net/","queue":"https://sericonrpdevtmstorage.queue.core.windows.net/","table":"https://sericonrpdevtmstorage.table.core.windows.net/","file":"https://sericonrpdevtmstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar3storage","name":"guptar3storage","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-20T21:34:53.7867708Z","key2":"2022-09-20T21:34:53.7867708Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-20T21:34:53.7086332Z","primaryEndpoints":{"blob":"https://guptar3storage.blob.core.windows.net/","queue":"https://guptar3storage.queue.core.windows.net/","table":"https://guptar3storage.table.core.windows.net/","file":"https://guptar3storage.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover-dev-rg/providers/Microsoft.Storage/storageAccounts/rhooverdevrgdiag","name":"rhooverdevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T19:39:24.4605968Z","key2":"2022-06-20T19:39:24.4605968Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-20T19:39:24.4137057Z","primaryEndpoints":{"blob":"https://rhooverdevrgdiag.blob.core.windows.net/","queue":"https://rhooverdevrgdiag.queue.core.windows.net/","table":"https://rhooverdevrgdiag.table.core.windows.net/","file":"https://rhooverdevrgdiag.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westcentralus/providers/Microsoft.Storage/storageAccounts/scrunnerrfscmqxeni3uq","name":"scrunnerrfscmqxeni3uq","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-10T22:28:55.1479670Z","primaryEndpoints":{"blob":"https://scrunnerrfscmqxeni3uq.blob.core.windows.net/","queue":"https://scrunnerrfscmqxeni3uq.queue.core.windows.net/","table":"https://scrunnerrfscmqxeni3uq.table.core.windows.net/","file":"https://scrunnerrfscmqxeni3uq.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westus3_group/providers/Microsoft.Storage/storageAccounts/ubuntuwestus3groupdiag","name":"ubuntuwestus3groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus3","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T19:48:38.9882588Z","key2":"2022-04-18T19:48:38.9882588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-18T19:48:38.9258191Z","primaryEndpoints":{"blob":"https://ubuntuwestus3groupdiag.blob.core.windows.net/","queue":"https://ubuntuwestus3groupdiag.queue.core.windows.net/","table":"https://ubuntuwestus3groupdiag.table.core.windows.net/","file":"https://ubuntuwestus3groupdiag.file.core.windows.net/"},"primaryLocation":"westus3","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/cloudshellcanarystorage","name":"cloudshellcanarystorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-01T21:16:45.8824319Z","key2":"2022-08-01T21:16:45.8824319Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-01T21:16:45.8043474Z","primaryEndpoints":{"dfs":"https://cloudshellcanarystorage.dfs.core.windows.net/","web":"https://cloudshellcanarystorage.z3.web.core.windows.net/","blob":"https://cloudshellcanarystorage.blob.core.windows.net/","queue":"https://cloudshellcanarystorage.queue.core.windows.net/","table":"https://cloudshellcanarystorage.table.core.windows.net/","file":"https://cloudshellcanarystorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan/providers/Microsoft.Storage/storageAccounts/bkerrigandiag","name":"bkerrigandiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-17T00:24:49.4879627Z","key2":"2022-05-17T00:24:49.4879627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-17T00:24:49.4879627Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-17T00:24:49.3473400Z","primaryEndpoints":{"blob":"https://bkerrigandiag.blob.core.windows.net/","queue":"https://bkerrigandiag.queue.core.windows.net/","table":"https://bkerrigandiag.table.core.windows.net/","file":"https://bkerrigandiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032001f4814ba9","name":"cs210032001f4814ba9","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-16T14:16:22.3477819Z","key2":"2022-05-16T14:16:22.3477819Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-16T14:16:22.3477819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-16T14:16:22.2227752Z","primaryEndpoints":{"dfs":"https://cs210032001f4814ba9.dfs.core.windows.net/","web":"https://cs210032001f4814ba9.z13.web.core.windows.net/","blob":"https://cs210032001f4814ba9.blob.core.windows.net/","queue":"https://cs210032001f4814ba9.queue.core.windows.net/","table":"https://cs210032001f4814ba9.table.core.windows.net/","file":"https://cs210032001f4814ba9.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kustoflow/providers/Microsoft.Storage/storageAccounts/csslinuxkustoflow","name":"csslinuxkustoflow","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"CreatedBy":"craigw"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-01T20:08:38.6849654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-01T20:08:38.5912170Z","primaryEndpoints":{"dfs":"https://csslinuxkustoflow.dfs.core.windows.net/","web":"https://csslinuxkustoflow.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow.blob.core.windows.net/","queue":"https://csslinuxkustoflow.queue.core.windows.net/","table":"https://csslinuxkustoflow.table.core.windows.net/","file":"https://csslinuxkustoflow.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://csslinuxkustoflow-secondary.dfs.core.windows.net/","web":"https://csslinuxkustoflow-secondary.z13.web.core.windows.net/","blob":"https://csslinuxkustoflow-secondary.blob.core.windows.net/","queue":"https://csslinuxkustoflow-secondary.queue.core.windows.net/","table":"https://csslinuxkustoflow-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus/providers/Microsoft.Storage/storageAccounts/scrunnercrkwpdn5nhtgg","name":"scrunnercrkwpdn5nhtgg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T20:03:57.6389684Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T20:03:57.5451905Z","primaryEndpoints":{"blob":"https://scrunnercrkwpdn5nhtgg.blob.core.windows.net/","queue":"https://scrunnercrkwpdn5nhtgg.queue.core.windows.net/","table":"https://scrunnercrkwpdn5nhtgg.table.core.windows.net/","file":"https://scrunnercrkwpdn5nhtgg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialconsolepreview","name":"serialconsolepreview","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-07T21:41:56.3607334Z","key2":"2021-05-07T21:41:56.3607334Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-07T21:41:56.3607334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-07T21:41:56.2513536Z","primaryEndpoints":{"dfs":"https://serialconsolepreview.dfs.core.windows.net/","web":"https://serialconsolepreview.z13.web.core.windows.net/","blob":"https://serialconsolepreview.blob.core.windows.net/","queue":"https://serialconsolepreview.queue.core.windows.net/","table":"https://serialconsolepreview.table.core.windows.net/","file":"https://serialconsolepreview.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://serialconsolepreview-secondary.dfs.core.windows.net/","web":"https://serialconsolepreview-secondary.z13.web.core.windows.net/","blob":"https://serialconsolepreview-secondary.blob.core.windows.net/","queue":"https://serialconsolepreview-secondary.queue.core.windows.net/","table":"https://serialconsolepreview-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialconsole-test/providers/Microsoft.Storage/storageAccounts/serialconsoletestdiag","name":"serialconsoletestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-06T20:21:39.7019315Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-02-06T20:21:39.5925779Z","primaryEndpoints":{"blob":"https://serialconsoletestdiag.blob.core.windows.net/","queue":"https://serialconsoletestdiag.queue.core.windows.net/","table":"https://serialconsoletestdiag.table.core.windows.net/","file":"https://serialconsoletestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serialTest-EastUS/providers/Microsoft.Storage/storageAccounts/serialtesta8d7fdee41","name":"serialtesta8d7fdee41","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-11T00:38:13.5389932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-11T00:38:13.4452119Z","primaryEndpoints":{"blob":"https://serialtesta8d7fdee41.blob.core.windows.net/","queue":"https://serialtesta8d7fdee41.queue.core.windows.net/","table":"https://serialtesta8d7fdee41.table.core.windows.net/","file":"https://serialtesta8d7fdee41.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-RG/providers/Microsoft.Storage/storageAccounts/serialtestbootdiag123","name":"serialtestbootdiag123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-01-23T04:03:01.3263151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-23T04:03:01.2951106Z","primaryEndpoints":{"blob":"https://serialtestbootdiag123.blob.core.windows.net/","queue":"https://serialtestbootdiag123.queue.core.windows.net/","table":"https://serialtestbootdiag123.table.core.windows.net/","file":"https://serialtestbootdiag123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuas-rg/providers/Microsoft.Storage/storageAccounts/yuasstorageacct","name":"yuasstorageacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-02T12:18:18.8547131Z","key2":"2022-08-02T12:18:18.8547131Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-02T12:18:18.8547131Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-02T12:18:18.7140969Z","primaryEndpoints":{"dfs":"https://yuasstorageacct.dfs.core.windows.net/","web":"https://yuasstorageacct.z13.web.core.windows.net/","blob":"https://yuasstorageacct.blob.core.windows.net/","queue":"https://yuasstorageacct.queue.core.windows.net/","table":"https://yuasstorageacct.table.core.windows.net/","file":"https://yuasstorageacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuasstorageacct-secondary.dfs.core.windows.net/","web":"https://yuasstorageacct-secondary.z13.web.core.windows.net/","blob":"https://yuasstorageacct-secondary.blob.core.windows.net/","queue":"https://yuasstorageacct-secondary.queue.core.windows.net/","table":"https://yuasstorageacct-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bkerriganbootdiag","name":"bkerriganbootdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-06T13:46:17.8293781Z","key2":"2022-09-06T13:46:17.8293781Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T13:46:18.0015953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-06T13:46:17.7200090Z","primaryEndpoints":{"dfs":"https://bkerriganbootdiag.dfs.core.windows.net/","web":"https://bkerriganbootdiag.z20.web.core.windows.net/","blob":"https://bkerriganbootdiag.blob.core.windows.net/","queue":"https://bkerriganbootdiag.queue.core.windows.net/","table":"https://bkerriganbootdiag.table.core.windows.net/","file":"https://bkerriganbootdiag.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bkerrigan-dev-rg/providers/Microsoft.Storage/storageAccounts/bktestsa2","name":"bktestsa2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2022-09-27T23:58:45.6496284Z","key2":"2022-09-27T23:58:45.6496284Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-27T23:58:46.2902461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2022-09-27T23:58:45.5558609Z","primaryEndpoints":{"dfs":"https://bktestsa2.dfs.core.windows.net/","web":"https://bktestsa2.z20.web.core.windows.net/","blob":"https://bktestsa2.blob.core.windows.net/","queue":"https://bktestsa2.queue.core.windows.net/","table":"https://bktestsa2.table.core.windows.net/","file":"https://bktestsa2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2eastus2storage","name":"guptar2eastus2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-28T23:08:00.6935848Z","key2":"2022-07-28T23:08:00.6935848Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.98.194.64","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:08:00.6935848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:08:00.5840608Z","primaryEndpoints":{"dfs":"https://guptar2eastus2storage.dfs.core.windows.net/","web":"https://guptar2eastus2storage.z20.web.core.windows.net/","blob":"https://guptar2eastus2storage.blob.core.windows.net/","queue":"https://guptar2eastus2storage.queue.core.windows.net/","table":"https://guptar2eastus2storage.table.core.windows.net/","file":"https://guptar2eastus2storage.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhel-test/providers/Microsoft.Storage/storageAccounts/rhel77acct","name":"rhel77acct","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T20:31:30.8995173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T20:31:30.8215811Z","primaryEndpoints":{"blob":"https://rhel77acct.blob.core.windows.net/","queue":"https://rhel77acct.queue.core.windows.net/","table":"https://rhel77acct.table.core.windows.net/","file":"https://rhel77acct.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320010c152e3d","name":"cs4100320010c152e3d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-07T20:19:42.9636823Z","key2":"2022-02-07T20:19:42.9636823Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-07T20:19:42.9636823Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-07T20:19:42.8699133Z","primaryEndpoints":{"dfs":"https://cs4100320010c152e3d.dfs.core.windows.net/","web":"https://cs4100320010c152e3d.z22.web.core.windows.net/","blob":"https://cs4100320010c152e3d.blob.core.windows.net/","queue":"https://cs4100320010c152e3d.queue.core.windows.net/","table":"https://cs4100320010c152e3d.table.core.windows.net/","file":"https://cs4100320010c152e3d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:07:16.0114253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-23T23:07:15.9333036Z","primaryEndpoints":{"dfs":"https://cs410037ffea943c134.dfs.core.windows.net/","web":"https://cs410037ffea943c134.z22.web.core.windows.net/","blob":"https://cs410037ffea943c134.blob.core.windows.net/","queue":"https://cs410037ffea943c134.queue.core.windows.net/","table":"https://cs410037ffea943c134.table.core.windows.net/","file":"https://cs410037ffea943c134.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffd81f3ab32","name":"cs41003bffd81f3ab32","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-07-29T00:18:56.4686445Z","key2":"2022-07-29T00:18:56.4686445Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T00:18:56.4842807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T00:18:56.3748663Z","primaryEndpoints":{"dfs":"https://cs41003bffd81f3ab32.dfs.core.windows.net/","web":"https://cs41003bffd81f3ab32.z22.web.core.windows.net/","blob":"https://cs41003bffd81f3ab32.blob.core.windows.net/","queue":"https://cs41003bffd81f3ab32.queue.core.windows.net/","table":"https://cs41003bffd81f3ab32.table.core.windows.net/","file":"https://cs41003bffd81f3ab32.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4aa22d82de270x4becxb48","name":"cs4aa22d82de270x4becxb48","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-11-29T23:39:30.3657182Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-29T23:39:30.2563159Z","primaryEndpoints":{"blob":"https://cs4aa22d82de270x4becxb48.blob.core.windows.net/","queue":"https://cs4aa22d82de270x4becxb48.queue.core.windows.net/","table":"https://cs4aa22d82de270x4becxb48.table.core.windows.net/","file":"https://cs4aa22d82de270x4becxb48.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2storagecloudshell","name":"guptar2storagecloudshell","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-13T23:27:57.8525804Z","key2":"2022-09-13T23:27:57.8525804Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-13T23:27:57.8525804Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-13T23:27:57.7431842Z","primaryEndpoints":{"dfs":"https://guptar2storagecloudshell.dfs.core.windows.net/","web":"https://guptar2storagecloudshell.z22.web.core.windows.net/","blob":"https://guptar2storagecloudshell.blob.core.windows.net/","queue":"https://guptar2storagecloudshell.queue.core.windows.net/","table":"https://guptar2storagecloudshell.table.core.windows.net/","file":"https://guptar2storagecloudshell.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar/providers/Microsoft.Storage/storageAccounts/guptardevstorage","name":"guptardevstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-15T16:49:43.1435156Z","key2":"2022-02-15T16:49:43.1435156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-15T16:49:43.1591440Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-15T16:49:43.0341047Z","primaryEndpoints":{"dfs":"https://guptardevstorage.dfs.core.windows.net/","web":"https://guptardevstorage.z22.web.core.windows.net/","blob":"https://guptardevstorage.blob.core.windows.net/","queue":"https://guptardevstorage.queue.core.windows.net/","table":"https://guptardevstorage.table.core.windows.net/","file":"https://guptardevstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunner/providers/Microsoft.Storage/storageAccounts/scrunnerstorage","name":"scrunnerstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-06T00:42:11.7016543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-06T00:42:11.6234985Z","primaryEndpoints":{"blob":"https://scrunnerstorage.blob.core.windows.net/","queue":"https://scrunnerstorage.queue.core.windows.net/","table":"https://scrunnerstorage.table.core.windows.net/","file":"https://scrunnerstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs710032001417ec1a8","name":"cs710032001417ec1a8","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-18T22:07:33.4170256Z","key2":"2021-05-18T22:07:33.4170256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-18T22:07:33.4170256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-18T22:07:33.3389725Z","primaryEndpoints":{"dfs":"https://cs710032001417ec1a8.dfs.core.windows.net/","web":"https://cs710032001417ec1a8.z21.web.core.windows.net/","blob":"https://cs710032001417ec1a8.blob.core.windows.net/","queue":"https://cs710032001417ec1a8.queue.core.windows.net/","table":"https://cs710032001417ec1a8.table.core.windows.net/","file":"https://cs710032001417ec1a8.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover/providers/Microsoft.Storage/storageAccounts/rhooverstorage","name":"rhooverstorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-26T17:14:23.5085026Z","key2":"2022-05-26T17:14:23.5085026Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T17:14:23.5241285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-26T17:14:23.4147520Z","primaryEndpoints":{"dfs":"https://rhooverstorage.dfs.core.windows.net/","web":"https://rhooverstorage.z21.web.core.windows.net/","blob":"https://rhooverstorage.blob.core.windows.net/","queue":"https://rhooverstorage.queue.core.windows.net/","table":"https://rhooverstorage.table.core.windows.net/","file":"https://rhooverstorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsarestricted","name":"aueastsarestricted","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:32:04.7486474Z","key2":"2022-07-17T04:32:04.7486474Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-networking/providers/Microsoft.Network/virtualNetworks/aueast-vnet/subnets/testing","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:32:04.7486474Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:32:04.6861236Z","primaryEndpoints":{"dfs":"https://aueastsarestricted.dfs.core.windows.net/","web":"https://aueastsarestricted.z8.web.core.windows.net/","blob":"https://aueastsarestricted.blob.core.windows.net/","queue":"https://aueastsarestricted.queue.core.windows.net/","table":"https://aueastsarestricted.table.core.windows.net/","file":"https://aueastsarestricted.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harish-storage/providers/Microsoft.Storage/storageAccounts/aueastsastd","name":"aueastsastd","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-17T04:28:55.7260171Z","key2":"2022-07-17T04:28:55.7260171Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-17T04:28:55.7416401Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-17T04:28:55.6634675Z","primaryEndpoints":{"dfs":"https://aueastsastd.dfs.core.windows.net/","web":"https://aueastsastd.z8.web.core.windows.net/","blob":"https://aueastsastd.blob.core.windows.net/","queue":"https://aueastsastd.queue.core.windows.net/","table":"https://aueastsastd.table.core.windows.net/","file":"https://aueastsastd.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SCRunnertestvmrg-AustraliaEast/providers/Microsoft.Storage/storageAccounts/scrunner4p3t72mzheluc","name":"scrunner4p3t72mzheluc","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-13T22:35:36.6210942Z","key2":"2021-04-13T22:35:36.6210942Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T22:35:36.6210942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T22:35:36.5429508Z","primaryEndpoints":{"blob":"https://scrunner4p3t72mzheluc.blob.core.windows.net/","queue":"https://scrunner4p3t72mzheluc.queue.core.windows.net/","table":"https://scrunner4p3t72mzheluc.table.core.windows.net/","file":"https://scrunner4p3t72mzheluc.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoledii6eozvcuwpj2avhf7oovhlynnodojeilddqv4awkk363btwtaf3/providers/Microsoft.Storage/storageAccounts/cli6poljdp7io7zprgoxf4ut","name":"cli6poljdp7io7zprgoxf4ut","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli6poljdp7io7zprgoxf4ut.blob.core.windows.net/","queue":"https://cli6poljdp7io7zprgoxf4ut.queue.core.windows.net/","table":"https://cli6poljdp7io7zprgoxf4ut.table.core.windows.net/","file":"https://cli6poljdp7io7zprgoxf4ut.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleimai244luxkv4qi3pzelwnexgjxzvq5n6g6erlqn6mucntnjyn2lt/providers/Microsoft.Storage/storageAccounts/cliaa3vl7jr6zshgrsmarb6m","name":"cliaa3vl7jr6zshgrsmarb6m","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:18:45.9704319Z","key2":"2022-10-12T19:18:45.9704319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:18:46.6892063Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:18:45.8923129Z","primaryEndpoints":{"blob":"https://cliaa3vl7jr6zshgrsmarb6m.blob.core.windows.net/","queue":"https://cliaa3vl7jr6zshgrsmarb6m.queue.core.windows.net/","table":"https://cliaa3vl7jr6zshgrsmarb6m.table.core.windows.net/","file":"https://cliaa3vl7jr6zshgrsmarb6m.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleki72ehqhjg2r4e7pjpdigny2x6btssuanj3xoh4kzjzraj3htdmcf/providers/Microsoft.Storage/storageAccounts/cliiajrcdqs24ifs47d6yatp","name":"cliiajrcdqs24ifs47d6yatp","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:11.3594600Z","key2":"2022-10-14T15:18:11.3594600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:11.5781836Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:11.5781836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:11.2656994Z","primaryEndpoints":{"blob":"https://cliiajrcdqs24ifs47d6yatp.blob.core.windows.net/","queue":"https://cliiajrcdqs24ifs47d6yatp.queue.core.windows.net/","table":"https://cliiajrcdqs24ifs47d6yatp.table.core.windows.net/","file":"https://cliiajrcdqs24ifs47d6yatp.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsoleuprs6wnhhkthfvk3g347c54erbdpkxj7og4vdd5jrhlsj2i6a4y7z/providers/Microsoft.Storage/storageAccounts/cliit6yvjuhqdolxqkfrxi5p","name":"cliit6yvjuhqdolxqkfrxi5p","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-09-28T02:55:03.4203450Z","key2":"2022-09-28T02:55:03.4203450Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-28T02:55:03.8890983Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-28T02:55:03.3421930Z","primaryEndpoints":{"blob":"https://cliit6yvjuhqdolxqkfrxi5p.blob.core.windows.net/","queue":"https://cliit6yvjuhqdolxqkfrxi5p.queue.core.windows.net/","table":"https://cliit6yvjuhqdolxqkfrxi5p.table.core.windows.net/","file":"https://cliit6yvjuhqdolxqkfrxi5p.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolezqkq37ew5u2eysorcr5mcbsuuavu5dzl77dzdvk4cusb4sxbo43tx/providers/Microsoft.Storage/storageAccounts/clin5xvasz3jj33radbzq2jx","name":"clin5xvasz3jj33radbzq2jx","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.1406755Z","key2":"2022-10-14T15:18:09.1406755Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.4376040Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.4376040Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0469947Z","primaryEndpoints":{"blob":"https://clin5xvasz3jj33radbzq2jx.blob.core.windows.net/","queue":"https://clin5xvasz3jj33radbzq2jx.queue.core.windows.net/","table":"https://clin5xvasz3jj33radbzq2jx.table.core.windows.net/","file":"https://clin5xvasz3jj33radbzq2jx.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsolefxqkhafj52ep4gg474dntlscgprhtrbvwhs2ff4fvipbw5tg2cexz/providers/Microsoft.Storage/storageAccounts/clipfdv4l2hramy2ysuln7bs","name":"clipfdv4l2hramy2ysuln7bs","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T19:55:35.0170190Z","key2":"2022-10-12T19:55:35.0170190Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T19:55:35.4701769Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T19:55:34.9076957Z","primaryEndpoints":{"blob":"https://clipfdv4l2hramy2ysuln7bs.blob.core.windows.net/","queue":"https://clipfdv4l2hramy2ysuln7bs.queue.core.windows.net/","table":"https://clipfdv4l2hramy2ysuln7bs.table.core.windows.net/","file":"https://clipfdv4l2hramy2ysuln7bs.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-gui-test_group/providers/Microsoft.Storage/storageAccounts/craigwguitestgroupdiag","name":"craigwguitestgroupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-25T20:43:28.9782992Z","key2":"2021-06-25T20:43:28.9782992Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-25T20:43:28.9782992Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-06-25T20:43:28.9001463Z","primaryEndpoints":{"blob":"https://craigwguitestgroupdiag.blob.core.windows.net/","queue":"https://craigwguitestgroupdiag.queue.core.windows.net/","table":"https://craigwguitestgroupdiag.table.core.windows.net/","file":"https://craigwguitestgroupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv1","name":"guptar2diagnosticsv1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-05T17:21:41.8250582Z","key2":"2022-04-05T17:21:41.8250582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:21:41.8250582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-05T17:21:41.7313240Z","primaryEndpoints":{"blob":"https://guptar2diagnosticsv1.blob.core.windows.net/","queue":"https://guptar2diagnosticsv1.queue.core.windows.net/","table":"https://guptar2diagnosticsv1.table.core.windows.net/","file":"https://guptar2diagnosticsv1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar2diagnosticsv2","name":"guptar2diagnosticsv2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-04-05T17:22:55.8411567Z","key2":"2022-04-05T17:22:55.8411567Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.83.222.102","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-05T17:22:55.8411567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-05T17:22:55.7318000Z","primaryEndpoints":{"dfs":"https://guptar2diagnosticsv2.dfs.core.windows.net/","web":"https://guptar2diagnosticsv2.z5.web.core.windows.net/","blob":"https://guptar2diagnosticsv2.blob.core.windows.net/","queue":"https://guptar2diagnosticsv2.queue.core.windows.net/","table":"https://guptar2diagnosticsv2.table.core.windows.net/","file":"https://guptar2diagnosticsv2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sericonrp-trafficmanager/providers/Microsoft.Storage/storageAccounts/sericonrpdevtmstorage","name":"sericonrpdevtmstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-15T09:23:38.0203325Z","key2":"2021-09-15T09:23:38.0203325Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-15T09:23:38.0360009Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-15T09:23:37.9265953Z","primaryEndpoints":{"dfs":"https://sericonrpdevtmstorage.dfs.core.windows.net/","web":"https://sericonrpdevtmstorage.z5.web.core.windows.net/","blob":"https://sericonrpdevtmstorage.blob.core.windows.net/","queue":"https://sericonrpdevtmstorage.queue.core.windows.net/","table":"https://sericonrpdevtmstorage.table.core.windows.net/","file":"https://sericonrpdevtmstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/guptar3storage","name":"guptar3storage","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-09-20T21:34:53.7867708Z","key2":"2022-09-20T21:34:53.7867708Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-20T21:34:53.8024125Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-09-20T21:34:53.7086332Z","primaryEndpoints":{"blob":"https://guptar3storage.blob.core.windows.net/","queue":"https://guptar3storage.queue.core.windows.net/","table":"https://guptar3storage.table.core.windows.net/","file":"https://guptar3storage.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rhoover-dev-rg/providers/Microsoft.Storage/storageAccounts/rhooverdevrgdiag","name":"rhooverdevrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T19:39:24.4605968Z","key2":"2022-06-20T19:39:24.4605968Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"20.98.146.84","action":"Allow"},{"value":"20.98.194.64","action":"Allow"},{"value":"20.69.5.162","action":"Allow"},{"value":"20.83.222.102","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T19:39:24.4762287Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-20T19:39:24.4137057Z","primaryEndpoints":{"blob":"https://rhooverdevrgdiag.blob.core.windows.net/","queue":"https://rhooverdevrgdiag.queue.core.windows.net/","table":"https://rhooverdevrgdiag.table.core.windows.net/","file":"https://rhooverdevrgdiag.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westcentralus/providers/Microsoft.Storage/storageAccounts/scrunnerrfscmqxeni3uq","name":"scrunnerrfscmqxeni3uq","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-10T22:28:55.2104910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-10T22:28:55.1479670Z","primaryEndpoints":{"blob":"https://scrunnerrfscmqxeni3uq.blob.core.windows.net/","queue":"https://scrunnerrfscmqxeni3uq.queue.core.windows.net/","table":"https://scrunnerrfscmqxeni3uq.table.core.windows.net/","file":"https://scrunnerrfscmqxeni3uq.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westus3_group/providers/Microsoft.Storage/storageAccounts/ubuntuwestus3groupdiag","name":"ubuntuwestus3groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus3","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T19:48:38.9882588Z","key2":"2022-04-18T19:48:38.9882588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T19:48:38.9882588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-04-18T19:48:38.9258191Z","primaryEndpoints":{"blob":"https://ubuntuwestus3groupdiag.blob.core.windows.net/","queue":"https://ubuntuwestus3groupdiag.queue.core.windows.net/","table":"https://ubuntuwestus3groupdiag.table.core.windows.net/","file":"https://ubuntuwestus3groupdiag.file.core.windows.net/"},"primaryLocation":"westus3","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guptar2/providers/Microsoft.Storage/storageAccounts/cloudshellcanarystorage","name":"cloudshellcanarystorage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-01T21:16:45.8824319Z","key2":"2022-08-01T21:16:45.8824319Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-01T21:16:46.0855567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-01T21:16:45.8043474Z","primaryEndpoints":{"dfs":"https://cloudshellcanarystorage.dfs.core.windows.net/","web":"https://cloudshellcanarystorage.z3.web.core.windows.net/","blob":"https://cloudshellcanarystorage.blob.core.windows.net/","queue":"https://cloudshellcanarystorage.queue.core.windows.net/","table":"https://cloudshellcanarystorage.table.core.windows.net/","file":"https://cloudshellcanarystorage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache @@ -2970,7 +2962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:56 GMT + - Fri, 14 Oct 2022 15:22:40 GMT expires: - '-1' pragma: @@ -2982,15 +2974,15 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - a9c6bfaa-af41-433c-a8de-b06c24e63c6c - - eb6fd29a-2f2f-4a9d-9fc3-999084619078 - - 76669470-2d38-4ab8-b2c4-2f9e95d81c1d - - 0762b890-dffc-4fce-8e89-47cac25e0786 - - e469d53c-8002-4399-9839-2c6c7ca9b587 - - d619e7bb-569f-47c1-8f7f-954c21e66ad5 - - f680498a-4cf0-4e5a-98b2-c1519d721b38 - - 7b773c1c-8bfa-4878-a7f9-2fe79be63c92 - - 2ef1a6ae-282f-43cd-b917-dcd60417d3d2 + - effadb6b-d910-4764-955c-450c766ba213 + - 7ea80db4-198a-41b0-b4c0-5723c001878a + - b113a79a-13d1-40f0-adca-fb140d4269c7 + - d6c50a16-fa7c-4f23-8e6d-904b8a047234 + - 4faca546-fae8-40e0-af5f-eaf77b16cae3 + - d45f244c-5d2b-479b-a897-4db755d525a8 + - ed410a59-ab05-43a5-a0e4-2d4d12c9b952 + - ac1f6468-69c7-4891-9522-ae62a1663327 + - dc44407f-9a7f-4061-bc06-97a71e9d9c43 status: code: 200 message: OK @@ -2998,17 +2990,17 @@ interactions: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2": {}}}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": - "ImageDefault", "assessmentMode": "ImageDefault"}}, "secrets": [], "allowExtensionOperations": - true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, + [{"path": "/home/rhoover/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": + "ImageDefault", "assessmentMode": "ImageDefault"}, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"}]}, "diagnosticsProfile": {"bootDiagnostics": {"enabled": true, "storageUri": "https://cli000002.blob.core.windows.net/"}}}}' headers: Accept: @@ -3020,15 +3012,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2298' + - '2341' Content-Type: - application/json ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -3038,24 +3030,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -3064,20 +3056,20 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": - \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b64c8594-653c-4b97-8fcc-45093e455c3f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4acdcb1-3dfc-40a9-ba3c-edf25bffc154?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3556' + - '3560' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:59 GMT + - Fri, 14 Oct 2022 15:22:42 GMT expires: - '-1' pragma: @@ -3114,14 +3106,14 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b64c8594-653c-4b97-8fcc-45093e455c3f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4acdcb1-3dfc-40a9-ba3c-edf25bffc154?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:30:59.0553907+00:00\",\r\n \"endTime\": - \"2022-10-12T20:31:08.4146689+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b64c8594-653c-4b97-8fcc-45093e455c3f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:22:42.1284354+00:00\",\r\n \"endTime\": + \"2022-10-14T15:22:50.9095971+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b4acdcb1-3dfc-40a9-ba3c-edf25bffc154\"\r\n}" headers: cache-control: - no-cache @@ -3130,7 +3122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:29 GMT + - Fri, 14 Oct 2022 15:23:13 GMT expires: - '-1' pragma: @@ -3147,7 +3139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -3165,9 +3157,9 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -3177,24 +3169,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -3203,16 +3195,16 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-10-12T20:27:00.6660753+00:00\"\r\n }\r\n}" + \"2022-10-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3557' + - '3561' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:29 GMT + - Fri, 14 Oct 2022 15:23:13 GMT expires: - '-1' pragma: @@ -3229,7 +3221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31871 + - Microsoft.Compute/LowCostGet3Min;3954,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -3247,9 +3239,9 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -3259,24 +3251,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -3285,36 +3277,36 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n - \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": - \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2022-10-14T15:23:13+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:22:50.8939726+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '5309' + - '5222' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:30 GMT + - Fri, 14 Oct 2022 15:23:13 GMT expires: - '-1' pragma: @@ -3331,7 +3323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31870 + - Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -3349,12 +3341,12 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3363,7 +3355,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:31:30 GMT + - Fri, 14 Oct 2022 15:23:14 GMT expires: - '-1' pragma: @@ -3395,8 +3387,8 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3410,7 +3402,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:31 GMT + - Fri, 14 Oct 2022 15:23:14 GMT expires: - '-1' pragma: @@ -3446,8 +3438,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -3461,7 +3453,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:31 GMT + - Fri, 14 Oct 2022 15:23:15 GMT expires: - '-1' pragma: @@ -3495,9 +3487,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -3507,24 +3499,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -3538,31 +3530,31 @@ interactions: \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"2022-10-14T15:23:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:22:50.8939726+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '5309' + - '5316' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:31 GMT + - Fri, 14 Oct 2022 15:23:15 GMT expires: - '-1' pragma: @@ -3579,7 +3571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3962,Microsoft.Compute/LowCostGet30Min;31867 + - Microsoft.Compute/LowCostGet3Min;3952,Microsoft.Compute/LowCostGet30Min;31937 status: code: 200 message: OK @@ -3595,12 +3587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3609,7 +3601,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:31:32 GMT + - Fri, 14 Oct 2022 15:23:16 GMT expires: - '-1' pragma: @@ -3639,8 +3631,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3654,7 +3646,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:32 GMT + - Fri, 14 Oct 2022 15:23:16 GMT expires: - '-1' pragma: @@ -3690,8 +3682,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -3705,7 +3697,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:32 GMT + - Fri, 14 Oct 2022 15:23:17 GMT expires: - '-1' pragma: @@ -3723,7 +3715,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3739,9 +3731,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -3751,24 +3743,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -3782,31 +3774,31 @@ interactions: \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"2022-10-14T15:23:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:31:08.4146689+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:22:50.8939726+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '5309' + - '5316' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:33 GMT + - Fri, 14 Oct 2022 15:23:18 GMT expires: - '-1' pragma: @@ -3823,7 +3815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3961,Microsoft.Compute/LowCostGet30Min;31866 + - Microsoft.Compute/LowCostGet3Min;3951,Microsoft.Compute/LowCostGet30Min;31936 status: code: 200 message: OK @@ -3839,12 +3831,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3853,7 +3845,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:31:33 GMT + - Fri, 14 Oct 2022 15:23:18 GMT expires: - '-1' pragma: @@ -3883,8 +3875,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3898,7 +3890,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:34 GMT + - Fri, 14 Oct 2022 15:23:18 GMT expires: - '-1' pragma: @@ -3934,9 +3926,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/powerOff?skipShutdown=false&api-version=2022-08-01 response: body: string: '' @@ -3944,17 +3936,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:31:34 GMT + - Fri, 14 Oct 2022 15:23:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -3965,7 +3957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1194 + - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1192 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3985,14 +3977,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:31:35.0862756+00:00\",\r\n \"endTime\": - \"2022-10-12T20:31:39.8206372+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b2058417-5714-430d-9b31-f1960a49a215\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:20.4405599+00:00\",\r\n \"endTime\": + \"2022-10-14T15:23:28.4092348+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b46d7d91-5254-4d91-a114-623644cc760d\"\r\n}" headers: cache-control: - no-cache @@ -4001,7 +3993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:04 GMT + - Fri, 14 Oct 2022 15:23:49 GMT expires: - '-1' pragma: @@ -4018,7 +4010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29882 + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29929 status: code: 200 message: OK @@ -4036,9 +4028,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b2058417-5714-430d-9b31-f1960a49a215?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4048,7 +4040,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:32:04 GMT + - Fri, 14 Oct 2022 15:23:49 GMT expires: - '-1' pragma: @@ -4061,7 +4053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29881 + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29928 status: code: 200 message: OK @@ -4079,9 +4071,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -4091,24 +4083,24 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -4122,31 +4114,31 @@ interactions: \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-10-12T20:31:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"2022-10-14T15:23:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:30:12.6964954+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:05.6913128+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:31:39.8050144+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:23:28.3936754+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '5309' + - '5316' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:06 GMT + - Fri, 14 Oct 2022 15:23:51 GMT expires: - '-1' pragma: @@ -4163,7 +4155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31858 + - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31934 status: code: 200 message: OK @@ -4181,12 +4173,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4195,7 +4187,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:32:06 GMT + - Fri, 14 Oct 2022 15:23:51 GMT expires: - '-1' pragma: @@ -4227,8 +4219,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4242,7 +4234,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:32:06 GMT + - Fri, 14 Oct 2022 15:23:52 GMT expires: - '-1' pragma: @@ -4278,9 +4270,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003/deallocate?api-version=2022-08-01 response: body: string: '' @@ -4288,17 +4280,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:32:07 GMT + - Fri, 14 Oct 2022 15:23:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4309,7 +4301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 + - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -4329,22 +4321,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:32:07.4765525+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3483c650-3779-4237-ae18-c94fc45b2147\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:53.174687+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"cc0ddb8b-c140-459c-b25d-d4da08a880cd\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:17 GMT + - Fri, 14 Oct 2022 15:24:03 GMT expires: - '-1' pragma: @@ -4361,7 +4353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29878 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29924 status: code: 200 message: OK @@ -4379,23 +4371,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:32:07.4765525+00:00\",\r\n \"endTime\": - \"2022-10-12T20:32:41.3513052+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3483c650-3779-4237-ae18-c94fc45b2147\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:53.174687+00:00\",\r\n \"endTime\": + \"2022-10-14T15:24:27.299336+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cc0ddb8b-c140-459c-b25d-d4da08a880cd\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '182' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:53 GMT + - Fri, 14 Oct 2022 15:24:38 GMT expires: - '-1' pragma: @@ -4412,7 +4404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29866 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29916 status: code: 200 message: OK @@ -4430,9 +4422,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3483c650-3779-4237-ae18-c94fc45b2147?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4442,7 +4434,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:32:53 GMT + - Fri, 14 Oct 2022 15:24:38 GMT expires: - '-1' pragma: @@ -4455,7 +4447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29865 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29915 status: code: 200 message: OK @@ -4473,9 +4465,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n @@ -4485,22 +4477,22 @@ interactions: \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"05fdee42-1b93-4ba4-858e-2538b9266bba\",\r\n + \ }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eee656e1-0c27-4e10-ba68-5622e742e308\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEUHUNV4HIBNSGOU46EE3ZYSTIW6MS4PU42OVA523AEDFL5RX2W3LVG/providers/Microsoft.Compute/disks/cli000003_disk1_4d1517948d3043e4bca9e88f06458304\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEWKD3ILZXQ5YDMRMOP7DOUUDMPA2UMW4REUEUIXVRLTLFIKQMHSXKN/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\"\r\n \ },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": @@ -4509,30 +4501,30 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_4d1517948d3043e4bca9e88f06458304\",\r\n + {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_7d6d86c836b3467ba1558092f932f404\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:32:41.1794563+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:24:27.1118215+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliul26iv-05fdee42-1b93-4ba4-858e-2538b9266bba/cli000003.05fdee42-1b93-4ba4-858e-2538b9266bba.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clixgzadl-eee656e1-0c27-4e10-ba68-5622e742e308/cli000003.eee656e1-0c27-4e10-ba68-5622e742e308.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:32:41.1950084+00:00\"\r\n },\r\n + \ \"time\": \"2022-10-14T15:24:27.1274768+00:00\"\r\n },\r\n \ {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2022-10-12T20:27:00.6660753+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2022-10-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4767' + - '4774' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:54 GMT + - Fri, 14 Oct 2022 15:24:40 GMT expires: - '-1' pragma: @@ -4549,7 +4541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31851 + - Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31925 status: code: 200 message: OK @@ -4567,12 +4559,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.9521342Z","key2":"2022-10-12T20:26:24.9521342Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:25.1240635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.8427738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.5625791Z","key2":"2022-10-14T15:18:09.5625791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.8282521Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.4688102Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4581,7 +4573,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:32:55 GMT + - Fri, 14 Oct 2022 15:24:40 GMT expires: - '-1' pragma: @@ -4613,8 +4605,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4628,7 +4620,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:32:55 GMT + - Fri, 14 Oct 2022 15:24:40 GMT expires: - '-1' pragma: diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml index 89be2452fd9..f64b8046922 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_check_resource_VMSS.yaml @@ -11,9 +11,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:45 GMT + - Fri, 14 Oct 2022 15:18:30 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachineScaleSets/cli000003'' @@ -69,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:45 GMT + - Fri, 14 Oct 2022 15:18:30 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/instanceView?api-version=2022-08-01 response: body: string: '{"error":{"code":"ParentResourceNotFound","message":"Can not perform @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:45 GMT + - Fri, 14 Oct 2022 15:18:30 GMT expires: - '-1' pragma: @@ -202,13 +202,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:33 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Wed, 12 Oct 2022 20:31:47 GMT + - Fri, 14 Oct 2022 15:23:33 GMT source-age: - - '0' + - '1' strict-transport-security: - max-age=31536000 vary: @@ -218,19 +218,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '2' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - cde32ce265015b4f100d43b3ac076b79239d97ec + - 1c63a2f9d8f5190151db137dbbdeefb50ea190df x-frame-options: - deny x-github-request-id: - - 0805:2971:2ED5B:3DBB9:6346F7A2 + - 0807:11F5:8F72A:FB4B1:63497DC8 x-served-by: - - cache-dal21256-DAL + - cache-dal2120089-DAL x-timer: - - S1665606407.004837,VS0,VE0 + - S1665760713.155581,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -250,9 +250,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-08-01 response: body: string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"18.04.202209210\",\r\n @@ -266,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:33 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -301,9 +301,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202209210?api-version=2022-08-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:33 GMT expires: - '-1' pragma: @@ -344,7 +344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -352,7 +352,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -362,9 +362,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: body: string: '{"value":[]}' @@ -376,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:47 GMT + - Fri, 14 Oct 2022 15:18:33 GMT expires: - '-1' pragma: @@ -397,10 +397,10 @@ interactions: "westus2", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "cli000003Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion": - "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "cli000003LBPublicIP", + "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "cli000003LBPublicIP", "location": "westus2", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", "name": "cli000003LB", - "location": "westus2", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": + "location": "westus2", "tags": {}, "apiVersion": "2022-01-01", "dependsOn": ["Microsoft.Network/virtualNetworks/cli000003VNET", "Microsoft.Network/publicIpAddresses/cli000003LBPublicIP"], "properties": {"backendAddressPools": [{"name": "cli000003LBBEPool"}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"}}}], @@ -409,18 +409,18 @@ interactions: ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"}, "protocol": "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": "50119", "backendPort": 22}}]}}, {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "cli000003", - "location": "westus2", "tags": {}, "apiVersion": "2022-03-01", "dependsOn": + "location": "westus2", "tags": {}, "apiVersion": "2022-08-01", "dependsOn": ["Microsoft.Network/virtualNetworks/cli000003VNET", "Microsoft.Network/loadBalancers/cli000003LB"], "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {}}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"computerNamePrefix": "cliouf96e", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cli5ze36dNic", "properties": {"ipConfigurations": [{"name": "cli5ze36dIPConfig", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "cliouf96eNic", "properties": {"ipConfigurations": [{"name": "cliouf96eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}], @@ -438,21 +438,21 @@ interactions: Connection: - keep-alive Content-Length: - - '4312' + - '4310' Content-Type: - application/json ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","name":"vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6106912332916333966","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-12T20:26:52.7150809Z","duration":"PT0.0004676S","correlationId":"1bd801d0-af72-4f40-bb71-99a2bba36413","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_t5llprO4gRjggLaAddTNGJULYsdpSyzF","name":"vmss_deploy_t5llprO4gRjggLaAddTNGJULYsdpSyzF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3541347179006122922","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-10-14T15:18:39.8643364Z","duration":"PT0.0000837S","correlationId":"177bf8d7-dc02-49b3-a649-a91eb2d280a7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc/operationStatuses/08585360004744275774?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_t5llprO4gRjggLaAddTNGJULYsdpSyzF/operationStatuses/08585358461674764940?api-version=2021-04-01 cache-control: - no-cache content-length: @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:26:53 GMT + - Fri, 14 Oct 2022 15:18:39 GMT expires: - '-1' pragma: @@ -488,9 +488,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -502,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:23 GMT + - Fri, 14 Oct 2022 15:19:11 GMT expires: - '-1' pragma: @@ -530,9 +530,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -544,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:27:53 GMT + - Fri, 14 Oct 2022 15:19:41 GMT expires: - '-1' pragma: @@ -572,9 +572,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -586,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:28:24 GMT + - Fri, 14 Oct 2022 15:20:11 GMT expires: - '-1' pragma: @@ -614,9 +614,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -628,7 +628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:28:53 GMT + - Fri, 14 Oct 2022 15:20:41 GMT expires: - '-1' pragma: @@ -656,9 +656,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -670,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:29:23 GMT + - Fri, 14 Oct 2022 15:21:11 GMT expires: - '-1' pragma: @@ -698,51 +698,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:29:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --instance-count -l - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585360004744275774?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585358461674764940?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -754,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:24 GMT + - Fri, 14 Oct 2022 15:21:41 GMT expires: - '-1' pragma: @@ -782,23 +740,23 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","name":"vmss_deploy_fsTZ9l7D9UWiEAmvAIqvTL0Pvjnqw1Bc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6106912332916333966","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-12T20:30:04.810926Z","duration":"PT3M12.0963127S","correlationId":"1bd801d0-af72-4f40-bb71-99a2bba36413","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"cli5ze36d","adminUsername":"rhoover","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/rhoover/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"cli5ze36dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"cli5ze36dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]},"extensionProfile":{"extensions":[{"name":"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Monitor","type":"AzureMonitorLinuxAgent","typeHandlerVersion":"1.0","settings":{"GCS_AUTO_CONFIG":true}}},{"name":"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Security.Monitoring","type":"AzureSecurityLinuxAgent","typeHandlerVersion":"2.0","settings":{"enableGenevaUpload":true,"enableAutoConfig":true,"reportSuccessOnUnsupportedDistro":true}}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d","timeCreated":"2022-10-12T20:27:03.1817718+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_t5llprO4gRjggLaAddTNGJULYsdpSyzF","name":"vmss_deploy_t5llprO4gRjggLaAddTNGJULYsdpSyzF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3541347179006122922","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-10-14T15:21:33.3001464Z","duration":"PT2M53.4358937S","correlationId":"177bf8d7-dc02-49b3-a649-a91eb2d280a7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"loadBalancers","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"cli000003LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"cli000003"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"cliouf96e","adminUsername":"rhoover","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/rhoover/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"cliouf96eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"cliouf96eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool"}]}}]}}]},"extensionProfile":{"extensions":[{"name":"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Monitor","type":"AzureMonitorLinuxAgent","typeHandlerVersion":"1.0","settings":{"GCS_AUTO_CONFIG":true}}},{"name":"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"enableAutomaticUpgrade":true,"publisher":"Microsoft.Azure.Security.Monitoring","type":"AzureSecurityLinuxAgent","typeHandlerVersion":"2.0","settings":{"enableGenevaUpload":true,"enableAutoConfig":true,"reportSuccessOnUnsupportedDistro":true}}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"793988fd-7a65-472d-9472-7470271a360c","timeCreated":"2022-10-14T15:18:49.0838434+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '6443' + - '6474' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:24 GMT + - Fri, 14 Oct 2022 15:21:41 GMT expires: - '-1' pragma: @@ -826,9 +784,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003?$expand=instanceView&api-version=2022-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/cli000003'' @@ -842,7 +800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:25 GMT + - Fri, 14 Oct 2022 15:21:42 GMT expires: - '-1' pragma: @@ -870,9 +828,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -885,12 +843,12 @@ interactions: {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -900,7 +858,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": @@ -916,17 +874,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4822' + - '4852' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:25 GMT + - Fri, 14 Oct 2022 15:21:43 GMT expires: - '-1' pragma: @@ -943,7 +901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;394,Microsoft.Compute/GetVMScaleSet30Min;2560 + - Microsoft.Compute/GetVMScaleSet3Min;390,Microsoft.Compute/GetVMScaleSet30Min;2590 status: code: 200 message: OK @@ -961,96 +919,97 @@ interactions: ParameterSetName: - --resource-group --name --query User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines?api-version=2022-08-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli000003_0\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli000003_2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n + \"true\"\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \ \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n - \ },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n + \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \ \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": - {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"1c29b42c-c926-4169-b873-919f44453a1c\",\r\n \"hardwareProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"2e7f392d-c7c5-4450-821e-74e86b1b548b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_5ebd7e36eb5d4d26b18c28fa35cf9a53\",\r\n + \ \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_1953d79714594ce28dcbbbe477234ca8\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_5ebd7e36eb5d4d26b18c28fa35cf9a53\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_1953d79714594ce28dcbbbe477234ca8\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cli5ze36d000000\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": + \"cliouf96e000002\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/0/networkInterfaces/cli5ze36dNic\"}]},\r\n - \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2022-10-12T20:27:03.3224693+00:00\"\r\n - \ },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_0/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/networkInterfaces/cliouf96eNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": + \"2022-10-14T15:18:49.2869754+00:00\"\r\n },\r\n \"resources\": + [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \ \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n \ {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_0/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": - \"cli000003_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2\",\r\n + \"cli000003_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n + \"true\"\r\n },\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \ \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n - \ },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n + \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \ \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": - {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"553a2ebf-ee4b-4655-9315-547772ecdea9\",\r\n \"hardwareProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"c3d44363-484f-435b-bb1d-61e4ddddcb55\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202209210\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + \ \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": + \"cliouf96e000003\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/networkInterfaces/cli5ze36dNic\"}]},\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/networkInterfaces/cliouf96eNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-10-12T20:27:03.3224693+00:00\"\r\n },\r\n \"resources\": + \"2022-10-14T15:18:49.2869754+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_3/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": @@ -1058,7 +1017,7 @@ interactions: \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \ \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n \ {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_2/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003_3/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": @@ -1070,11 +1029,11 @@ interactions: cache-control: - no-cache content-length: - - '12221' + - '12282' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:26 GMT + - Fri, 14 Oct 2022 15:21:44 GMT expires: - '-1' pragma: @@ -1091,7 +1050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;891,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '4' status: @@ -1111,9 +1070,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -1126,12 +1085,12 @@ interactions: {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -1141,7 +1100,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": @@ -1157,17 +1116,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4822' + - '4852' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:26 GMT + - Fri, 14 Oct 2022 15:21:44 GMT expires: - '-1' pragma: @@ -1184,7 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2559 + - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2589 status: code: 200 message: OK @@ -1194,15 +1153,16 @@ interactions: 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": - {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"computerNamePrefix": "cliouf96e", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": - true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true}, "storageProfile": + {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": + 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "cliouf96eNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliouf96eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], @@ -1227,15 +1187,15 @@ interactions: Connection: - keep-alive Content-Length: - - '3402' + - '3473' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -1248,12 +1208,12 @@ interactions: {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -1263,7 +1223,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n @@ -1280,21 +1240,21 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '4930' + - '4960' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:29 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -1311,9 +1271,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;739,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;742,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '0' status: @@ -1333,13 +1293,13 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:30:29.6650339+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"f840403a-2930-41dc-940a-3c9b6ae4f4ac\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:21:48.5664318+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"3a9c922e-332b-4f2a-86bf-ac046382627a\"\r\n}" headers: cache-control: - no-cache @@ -1348,7 +1308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:30:39 GMT + - Fri, 14 Oct 2022 15:21:58 GMT expires: - '-1' pragma: @@ -1365,7 +1325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29962 status: code: 200 message: OK @@ -1383,14 +1343,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f840403a-2930-41dc-940a-3c9b6ae4f4ac?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:30:29.6650339+00:00\",\r\n \"endTime\": - \"2022-10-12T20:31:08.8678029+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f840403a-2930-41dc-940a-3c9b6ae4f4ac\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:21:48.5664318+00:00\",\r\n \"endTime\": + \"2022-10-14T15:21:59.6288416+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3a9c922e-332b-4f2a-86bf-ac046382627a\"\r\n}" headers: cache-control: - no-cache @@ -1399,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:16 GMT + - Fri, 14 Oct 2022 15:22:35 GMT expires: - '-1' pragma: @@ -1416,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK @@ -1434,31 +1394,27 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n - \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2\": - {\r\n \"principalId\": \"684d55e2-8922-4966-a660-2d38ca4a1711\",\r\n - \ \"clientId\": \"6d45cf55-f311-4228-97b0-c22ae418aad6\"\r\n }\r\n - \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": - \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": - true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": - {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n - \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": + {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n + \ \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": + {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -1468,7 +1424,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n @@ -1485,17 +1441,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5346' + - '4961' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:16 GMT + - Fri, 14 Oct 2022 15:22:35 GMT expires: - '-1' pragma: @@ -1512,12 +1468,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;376,Microsoft.Compute/GetVMScaleSet30Min;2542 + - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2581 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -1534,9 +1490,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-08-01 response: body: string: '' @@ -1544,17 +1500,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:31:18 GMT + - Fri, 14 Oct 2022 15:22:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1565,7 +1521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2978,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2977,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1587,23 +1543,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:31:18.2583376+00:00\",\r\n \"endTime\": - \"2022-10-12T20:31:34.2425603+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9f238e06-8b05-4d69-a24a-204cc506dd02\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:22:37.909696+00:00\",\r\n \"endTime\": + \"2022-10-14T15:22:53.2532899+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"325a1e30-b80a-4ade-aa02-67a7605ebce6\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:48 GMT + - Fri, 14 Oct 2022 15:23:07 GMT expires: - '-1' pragma: @@ -1620,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29888 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29945 status: code: 200 message: OK @@ -1638,9 +1594,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9f238e06-8b05-4d69-a24a-204cc506dd02?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1650,7 +1606,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:31:48 GMT + - Fri, 14 Oct 2022 15:23:07 GMT expires: - '-1' pragma: @@ -1663,7 +1619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29887 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29944 status: code: 200 message: OK @@ -1681,18 +1637,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:31:33+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:23:03+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -1703,10 +1659,10 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:31:19.2739476+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:22:48.6908712+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": @@ -1722,7 +1678,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:31:34.2269291+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:22:53.2220428+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -1733,7 +1689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:31:49 GMT + - Fri, 14 Oct 2022 15:23:09 GMT expires: - '-1' pragma: @@ -1750,7 +1706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2490,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + - Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2499,Microsoft.Compute/VMScaleSetVMViews3Min;4993 x-ms-request-charge: - '1' status: @@ -1770,8 +1726,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -1785,7 +1741,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:31:48 GMT + - Fri, 14 Oct 2022 15:23:14 GMT expires: - '-1' pragma: @@ -1821,9 +1777,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-08-01 response: body: string: '' @@ -1831,17 +1787,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:31:50 GMT + - Fri, 14 Oct 2022 15:23:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1852,9 +1808,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2976,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2984,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - '1' status: @@ -1874,64 +1830,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:31:50.5861498+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"64a34b43-c4a4-4325-8bd6-2e20325eb503\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:32:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29874 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:31:50.5861498+00:00\",\r\n \"endTime\": - \"2022-10-12T20:32:32.0232494+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"64a34b43-c4a4-4325-8bd6-2e20325eb503\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:14.7843898+00:00\",\r\n \"endTime\": + \"2022-10-14T15:23:39.6278845+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2c379d80-4c1d-4e2b-afca-2630e2c759d4\"\r\n}" headers: cache-control: - no-cache @@ -1940,7 +1846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:50 GMT + - Fri, 14 Oct 2022 15:23:44 GMT expires: - '-1' pragma: @@ -1957,7 +1863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29869 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29932 status: code: 200 message: OK @@ -1975,9 +1881,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/64a34b43-c4a4-4325-8bd6-2e20325eb503?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1987,7 +1893,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:32:50 GMT + - Fri, 14 Oct 2022 15:23:44 GMT expires: - '-1' pragma: @@ -2000,7 +1906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29868 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29931 status: code: 200 message: OK @@ -2018,21 +1924,21 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:32:31.9763882+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:23:37.3623283+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:32:31.9920139+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-10-14T15:23:37.3935543+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: @@ -2043,7 +1949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:32:51 GMT + - Fri, 14 Oct 2022 15:23:45 GMT expires: - '-1' pragma: @@ -2060,7 +1966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2489,Microsoft.Compute/VMScaleSetVMViews3Min;4992 + - Microsoft.Compute/GetVMScaleSetVM3Min;494,Microsoft.Compute/GetVMScaleSetVM30Min;2494,Microsoft.Compute/VMScaleSetVMViews3Min;4988 x-ms-request-charge: - '1' status: @@ -2080,8 +1986,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2095,7 +2001,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:32:52 GMT + - Fri, 14 Oct 2022 15:23:46 GMT expires: - '-1' pragma: @@ -2116,7 +2022,7 @@ interactions: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -2133,9 +2039,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -2143,17 +2049,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:32:53 GMT + - Fri, 14 Oct 2022 15:23:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2164,7 +2070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;231,Microsoft.Compute/VMScaleSetActions30Min;1184,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2983,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2992,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2186,63 +2092,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:33:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29859 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss start - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:47.6278821+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"df884a6a-a08b-476b-a588-25f2e3e0aae1\"\r\n}" headers: cache-control: - no-cache @@ -2251,7 +2107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:33:54 GMT + - Fri, 14 Oct 2022 15:24:17 GMT expires: - '-1' pragma: @@ -2268,7 +2124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29851 + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK @@ -2286,14 +2142,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:32:54.0698793+00:00\",\r\n \"endTime\": - \"2022-10-12T20:34:03.8818075+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d9bb3c01-8c13-4922-8ce2-adc5407fcd09\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:23:47.6278821+00:00\",\r\n \"endTime\": + \"2022-10-14T15:24:31.3930251+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"df884a6a-a08b-476b-a588-25f2e3e0aae1\"\r\n}" headers: cache-control: - no-cache @@ -2302,7 +2158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:34:24 GMT + - Fri, 14 Oct 2022 15:24:47 GMT expires: - '-1' pragma: @@ -2319,7 +2175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29849 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -2337,9 +2193,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d9bb3c01-8c13-4922-8ce2-adc5407fcd09?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2349,7 +2205,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:34:24 GMT + - Fri, 14 Oct 2022 15:24:48 GMT expires: - '-1' pragma: @@ -2362,12 +2218,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29848 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -2384,9 +2240,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-08-01 response: body: string: '' @@ -2394,17 +2250,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:34:25 GMT + - Fri, 14 Oct 2022 15:24:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2415,9 +2271,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2999,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3003,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -2437,14 +2293,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:34:25.4597031+00:00\",\r\n \"endTime\": - \"2022-10-12T20:34:31.1940117+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9ee58a53-03ca-4717-b57b-51b168cde031\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:24:48.7209789+00:00\",\r\n \"endTime\": + \"2022-10-14T15:24:55.1740793+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fc6e7a20-dfcd-40ce-80e9-1f44723d4148\"\r\n}" headers: cache-control: - no-cache @@ -2453,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:34:55 GMT + - Fri, 14 Oct 2022 15:25:18 GMT expires: - '-1' pragma: @@ -2470,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -2488,9 +2344,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9ee58a53-03ca-4717-b57b-51b168cde031?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2500,7 +2356,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:34:55 GMT + - Fri, 14 Oct 2022 15:25:18 GMT expires: - '-1' pragma: @@ -2513,7 +2369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29841 + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -2531,18 +2387,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:34:05+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:24:26+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -2550,13 +2406,13 @@ interactions: \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n - \ \"code\": \"ProvisioningState/NotReady/0\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:33:22.7571091+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:23:48.3934894+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": @@ -2572,18 +2428,18 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:34:31.162765+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:24:55.1428197+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2811' + - '2807' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:34:56 GMT + - Fri, 14 Oct 2022 15:25:19 GMT expires: - '-1' pragma: @@ -2600,7 +2456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;493,Microsoft.Compute/GetVMScaleSetVM30Min;2483,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2492,Microsoft.Compute/VMScaleSetVMViews3Min;4992 x-ms-request-charge: - '1' status: @@ -2620,8 +2476,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -2635,7 +2491,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:34:56 GMT + - Fri, 14 Oct 2022 15:25:20 GMT expires: - '-1' pragma: @@ -2656,7 +2512,7 @@ interactions: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -2673,9 +2529,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -2683,17 +2539,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:34:57 GMT + - Fri, 14 Oct 2022 15:25:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2704,9 +2560,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1183,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2996,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2984,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -2726,23 +2582,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:34:57.3343771+00:00\",\r\n \"endTime\": - \"2022-10-12T20:35:03.5374848+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7e2565a5-0cd1-4a55-8df6-b406b76b7e24\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:25:21.3144206+00:00\",\r\n \"endTime\": + \"2022-10-14T15:25:25.501922+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a5d80113-6003-44d2-b7ae-3aec93392654\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:35:27 GMT + - Fri, 14 Oct 2022 15:25:50 GMT expires: - '-1' pragma: @@ -2759,7 +2615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29880 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29898 status: code: 200 message: OK @@ -2777,9 +2633,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e2565a5-0cd1-4a55-8df6-b406b76b7e24?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2789,7 +2645,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:35:27 GMT + - Fri, 14 Oct 2022 15:25:50 GMT expires: - '-1' pragma: @@ -2802,7 +2658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29879 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -2820,9 +2676,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -2839,12 +2695,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -2854,7 +2710,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n @@ -2871,17 +2727,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5346' + - '5376' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:35:27 GMT + - Fri, 14 Oct 2022 15:25:52 GMT expires: - '-1' pragma: @@ -2898,7 +2754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2537 + - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2560 status: code: 200 message: OK @@ -2909,15 +2765,16 @@ interactions: {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": - {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"computerNamePrefix": "cliouf96e", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": - true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true}, "storageProfile": + {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": + 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "cliouf96eNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliouf96eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], @@ -2943,15 +2800,15 @@ interactions: Connection: - keep-alive Content-Length: - - '3711' + - '3782' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -2968,12 +2825,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -2983,7 +2840,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -3001,21 +2858,21 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3c00e10c-40d8-4424-9074-3b2ece2df849?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2b73d0ef-9378-43a2-976e-aba0ae465449?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '5414' + - '5444' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:35:32 GMT + - Fri, 14 Oct 2022 15:25:56 GMT expires: - '-1' pragma: @@ -3032,7 +2889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;147,Microsoft.Compute/CreateVMScaleSet30Min;743,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;145,Microsoft.Compute/CreateVMScaleSet30Min;744,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -3054,14 +2911,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3c00e10c-40d8-4424-9074-3b2ece2df849?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2b73d0ef-9378-43a2-976e-aba0ae465449?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:35:32.2246598+00:00\",\r\n \"endTime\": - \"2022-10-12T20:35:32.6465615+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3c00e10c-40d8-4424-9074-3b2ece2df849\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:25:56.6891099+00:00\",\r\n \"endTime\": + \"2022-10-14T15:25:57.0797314+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2b73d0ef-9378-43a2-976e-aba0ae465449\"\r\n}" headers: cache-control: - no-cache @@ -3070,7 +2927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:35:42 GMT + - Fri, 14 Oct 2022 15:26:07 GMT expires: - '-1' pragma: @@ -3087,7 +2944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29875 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -3105,9 +2962,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -3124,12 +2981,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -3139,7 +2996,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -3157,17 +3014,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5415' + - '5445' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:35:42 GMT + - Fri, 14 Oct 2022 15:26:07 GMT expires: - '-1' pragma: @@ -3184,12 +3041,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2533 + - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2556 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -3206,9 +3063,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-08-01 response: body: string: '' @@ -3216,17 +3073,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:35:43 GMT + - Fri, 14 Oct 2022 15:26:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -3237,9 +3094,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1188,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2995,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2995,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -3259,23 +3116,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:35:44.1308128+00:00\",\r\n \"endTime\": - \"2022-10-12T20:35:55.6621345+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"66d018ee-306b-4afb-83d1-1a1cf1ab038e\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:26:08.3921237+00:00\",\r\n \"endTime\": + \"2022-10-14T15:26:24.220085+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"dcb50831-7d49-4cf9-8d92-4e1be0499d7d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:36:13 GMT + - Fri, 14 Oct 2022 15:26:37 GMT expires: - '-1' pragma: @@ -3292,7 +3149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29871 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29890 status: code: 200 message: OK @@ -3310,9 +3167,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/66d018ee-306b-4afb-83d1-1a1cf1ab038e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -3322,7 +3179,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:36:13 GMT + - Fri, 14 Oct 2022 15:26:37 GMT expires: - '-1' pragma: @@ -3335,7 +3192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29870 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -3353,18 +3210,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:26:22+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3375,13 +3232,13 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:26:09.4077099+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3396,7 +3253,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:26:24.1732214+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -3407,7 +3264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:36:14 GMT + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3424,7 +3281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2489,Microsoft.Compute/VMScaleSetVMViews3Min;4998 + - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2491,Microsoft.Compute/VMScaleSetVMViews3Min;4998 x-ms-request-charge: - '1' status: @@ -3444,12 +3301,12 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3458,7 +3315,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:36:15 GMT + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3490,8 +3347,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3505,7 +3362,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:36:15 GMT + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3541,8 +3398,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -3556,7 +3413,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:36:16 GMT + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3590,18 +3447,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:26:22+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3612,13 +3469,13 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:26:09.4077099+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3633,7 +3490,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:26:24.1732214+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -3644,7 +3501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:36:16 GMT + - Fri, 14 Oct 2022 15:26:40 GMT expires: - '-1' pragma: @@ -3661,7 +3518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2488,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2490,Microsoft.Compute/VMScaleSetVMViews3Min;4997 x-ms-request-charge: - '1' status: @@ -3679,12 +3536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3693,7 +3550,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:36:16 GMT + - Fri, 14 Oct 2022 15:26:40 GMT expires: - '-1' pragma: @@ -3723,8 +3580,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3738,7 +3595,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:36:16 GMT + - Fri, 14 Oct 2022 15:26:41 GMT expires: - '-1' pragma: @@ -3774,8 +3631,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -3789,7 +3646,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:36:17 GMT + - Fri, 14 Oct 2022 15:26:42 GMT expires: - '-1' pragma: @@ -3807,7 +3664,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3823,18 +3680,18 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:36:03+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:26:22+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3845,13 +3702,13 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:35:45.1464308+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:26:09.4077099+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -3866,7 +3723,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:35:55.6150791+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:26:24.1732214+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -3877,7 +3734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:36:18 GMT + - Fri, 14 Oct 2022 15:26:42 GMT expires: - '-1' pragma: @@ -3894,7 +3751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2487,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2489,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '1' status: @@ -3912,12 +3769,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3926,7 +3783,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:36:18 GMT + - Fri, 14 Oct 2022 15:26:43 GMT expires: - '-1' pragma: @@ -3956,8 +3813,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -3971,7 +3828,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:36:18 GMT + - Fri, 14 Oct 2022 15:26:43 GMT expires: - '-1' pragma: @@ -4007,9 +3864,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-08-01 response: body: string: '' @@ -4017,17 +3874,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:36:18 GMT + - Fri, 14 Oct 2022 15:26:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4038,9 +3895,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3004,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2994,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -4060,113 +3917,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:36:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29862 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:37:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29857 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:26:43.8761617+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"287566c4-9f48-4f4b-9051-1714edef25dd\"\r\n}" headers: cache-control: - no-cache @@ -4175,7 +3932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:37:49 GMT + - Fri, 14 Oct 2022 15:27:13 GMT expires: - '-1' pragma: @@ -4192,57 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29851 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:38:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -4260,14 +3967,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:36:19.4117149+00:00\",\r\n \"endTime\": - \"2022-10-12T20:38:23.4105521+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b83c5986-b105-4ea4-b016-9b3a27a72a5b\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:26:43.8761617+00:00\",\r\n \"endTime\": + \"2022-10-14T15:27:29.4694405+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"287566c4-9f48-4f4b-9051-1714edef25dd\"\r\n}" headers: cache-control: - no-cache @@ -4276,7 +3983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:38:49 GMT + - Fri, 14 Oct 2022 15:27:43 GMT expires: - '-1' pragma: @@ -4293,7 +4000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -4311,9 +4018,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b83c5986-b105-4ea4-b016-9b3a27a72a5b?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4323,7 +4030,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:38:49 GMT + - Fri, 14 Oct 2022 15:27:43 GMT expires: - '-1' pragma: @@ -4336,7 +4043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29833 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29871 status: code: 200 message: OK @@ -4354,23 +4061,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:38:23.3480496+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:27:29.3913238+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-10-12T20:38:23.3792669+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2022-10-14T15:27:29.4382113+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: @@ -4381,7 +4088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:38:49 GMT + - Fri, 14 Oct 2022 15:27:44 GMT expires: - '-1' pragma: @@ -4398,7 +4105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2486,Microsoft.Compute/VMScaleSetVMViews3Min;4992 + - Microsoft.Compute/GetVMScaleSetVM3Min;495,Microsoft.Compute/GetVMScaleSetVM30Min;2488,Microsoft.Compute/VMScaleSetVMViews3Min;4995 x-ms-request-charge: - '1' status: @@ -4418,12 +4125,12 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4432,7 +4139,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:38:50 GMT + - Fri, 14 Oct 2022 15:27:44 GMT expires: - '-1' pragma: @@ -4464,8 +4171,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -4479,7 +4186,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:38:50 GMT + - Fri, 14 Oct 2022 15:27:44 GMT expires: - '-1' pragma: @@ -4500,7 +4207,7 @@ interactions: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -4517,9 +4224,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -4527,17 +4234,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:38:51 GMT + - Fri, 14 Oct 2022 15:27:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4548,7 +4255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;229,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2983,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2979,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -4570,13 +4277,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:27:46.3755593+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"06b0da8a-8c5b-46e9-97b9-b337e906b010\"\r\n}" headers: cache-control: - no-cache @@ -4585,7 +4292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:39:22 GMT + - Fri, 14 Oct 2022 15:28:16 GMT expires: - '-1' pragma: @@ -4602,7 +4309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29824 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29866 status: code: 200 message: OK @@ -4620,64 +4327,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Oct 2022 20:39:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29819 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss start - Connection: - - keep-alive - ParameterSetName: - - -g -n --instance-ids - User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2022-10-12T20:38:52.0977871+00:00\",\r\n \"endTime\": - \"2022-10-12T20:40:07.2845895+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9a100353-e1ad-40f5-9184-31b0e3220d4c\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:27:46.3755593+00:00\",\r\n \"endTime\": + \"2022-10-14T15:28:27.4062444+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"06b0da8a-8c5b-46e9-97b9-b337e906b010\"\r\n}" headers: cache-control: - no-cache @@ -4686,7 +4343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:40:22 GMT + - Fri, 14 Oct 2022 15:28:45 GMT expires: - '-1' pragma: @@ -4703,7 +4360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29830 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -4721,9 +4378,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9a100353-e1ad-40f5-9184-31b0e3220d4c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4733,7 +4390,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:40:22 GMT + - Fri, 14 Oct 2022 15:28:45 GMT expires: - '-1' pragma: @@ -4746,12 +4403,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29829 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -4768,9 +4425,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/poweroff?skipShutdown=false&api-version=2022-08-01 response: body: string: '' @@ -4778,17 +4435,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:40:22 GMT + - Fri, 14 Oct 2022 15:28:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4799,7 +4456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2991,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2979,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -4821,14 +4478,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:40:23.5188051+00:00\",\r\n \"endTime\": - \"2022-10-12T20:40:30.4405652+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"da5d3e55-fd60-4d41-b0e9-e097ff15a5d0\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:28:47.9998204+00:00\",\r\n \"endTime\": + \"2022-10-14T15:28:56.1402327+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"13ae8617-0817-42d9-b8fc-357ee7bc412d\"\r\n}" headers: cache-control: - no-cache @@ -4837,7 +4494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:40:53 GMT + - Fri, 14 Oct 2022 15:29:17 GMT expires: - '-1' pragma: @@ -4854,7 +4511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29822 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29846 status: code: 200 message: OK @@ -4872,9 +4529,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/da5d3e55-fd60-4d41-b0e9-e097ff15a5d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4884,7 +4541,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:40:53 GMT + - Fri, 14 Oct 2022 15:29:17 GMT expires: - '-1' pragma: @@ -4897,7 +4554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29821 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -4915,18 +4572,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:39:59+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:28:19+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -4937,13 +4594,13 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:27:47.1724508+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -4958,7 +4615,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:40:30.4093113+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:28:56.1090117+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n}" headers: @@ -4969,7 +4626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:40:53 GMT + - Fri, 14 Oct 2022 15:29:19 GMT expires: - '-1' pragma: @@ -4986,7 +4643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2480,Microsoft.Compute/VMScaleSetVMViews3Min;4989 + - Microsoft.Compute/GetVMScaleSetVM3Min;495,Microsoft.Compute/GetVMScaleSetVM30Min;2487,Microsoft.Compute/VMScaleSetVMViews3Min;4993 x-ms-request-charge: - '1' status: @@ -5006,12 +4663,12 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -5020,7 +4677,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:40:54 GMT + - Fri, 14 Oct 2022 15:29:19 GMT expires: - '-1' pragma: @@ -5052,8 +4709,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -5067,7 +4724,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:40:54 GMT + - Fri, 14 Oct 2022 15:29:20 GMT expires: - '-1' pragma: @@ -5088,7 +4745,7 @@ interactions: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -5105,9 +4762,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -5115,17 +4772,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:40:55 GMT + - Fri, 14 Oct 2022 15:29:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -5136,7 +4793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;233,Microsoft.Compute/VMScaleSetActions30Min;1177,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;233,Microsoft.Compute/VMScaleSetActions30Min;1186,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2985,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -5158,23 +4815,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:40:55.330979+00:00\",\r\n \"endTime\": - \"2022-10-12T20:41:01.8153047+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0fefe9d2-b25c-45a4-a72d-569358a6c59f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:29:20.8744467+00:00\",\r\n \"endTime\": + \"2022-10-14T15:29:28.6400093+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:24 GMT + - Fri, 14 Oct 2022 15:29:50 GMT expires: - '-1' pragma: @@ -5191,7 +4848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29816 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29838 status: code: 200 message: OK @@ -5209,9 +4866,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0fefe9d2-b25c-45a4-a72d-569358a6c59f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -5221,7 +4878,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:41:25 GMT + - Fri, 14 Oct 2022 15:29:51 GMT expires: - '-1' pragma: @@ -5234,7 +4891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29815 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -5252,9 +4909,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5271,12 +4928,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5286,7 +4943,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -5304,17 +4961,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5415' + - '5445' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:25 GMT + - Fri, 14 Oct 2022 15:29:51 GMT expires: - '-1' pragma: @@ -5331,7 +4988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2503 + - Microsoft.Compute/GetVMScaleSet3Min;358,Microsoft.Compute/GetVMScaleSet30Min;2514 status: code: 200 message: OK @@ -5342,15 +4999,16 @@ interactions: {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": - {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"computerNamePrefix": "cliouf96e", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": - true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true}, "storageProfile": + {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": + 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "cliouf96eNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliouf96eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], @@ -5375,15 +5033,15 @@ interactions: Connection: - keep-alive Content-Length: - - '3654' + - '3725' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5400,12 +5058,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5415,7 +5073,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -5433,21 +5091,21 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/17a661b6-1395-406f-9934-e93a0173985f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/30c56bf9-3e40-4b43-ba6b-d402607e9915?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '5415' + - '5445' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:30 GMT + - Fri, 14 Oct 2022 15:29:56 GMT expires: - '-1' pragma: @@ -5464,7 +5122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;148,Microsoft.Compute/CreateVMScaleSet30Min;735,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;144,Microsoft.Compute/CreateVMScaleSet30Min;735,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -5486,23 +5144,23 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/17a661b6-1395-406f-9934-e93a0173985f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/30c56bf9-3e40-4b43-ba6b-d402607e9915?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:41:29.9556743+00:00\",\r\n \"endTime\": - \"2022-10-12T20:41:30.2837742+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"17a661b6-1395-406f-9934-e93a0173985f\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:29:56.0772226+00:00\",\r\n \"endTime\": + \"2022-10-14T15:29:56.358454+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"30c56bf9-3e40-4b43-ba6b-d402607e9915\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:40 GMT + - Fri, 14 Oct 2022 15:30:06 GMT expires: - '-1' pragma: @@ -5519,7 +5177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29812 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -5537,9 +5195,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -5556,12 +5214,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5571,7 +5229,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -5589,17 +5247,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5416' + - '5446' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:40 GMT + - Fri, 14 Oct 2022 15:30:06 GMT expires: - '-1' pragma: @@ -5616,7 +5274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2499 + - Microsoft.Compute/GetVMScaleSet3Min;360,Microsoft.Compute/GetVMScaleSet30Min;2509 status: code: 200 message: OK @@ -5634,18 +5292,18 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:41:27+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:29:45+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -5656,13 +5314,13 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:27:47.1724508+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli5z7g7o-553a2ebf-ee4b-4655-9315-547772ecdea9/cli000003_2.553a2ebf-ee4b-4655-9315-547772ecdea9.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cliou5z7n-c3d44363-484f-435b-bb1d-61e4ddddcb55/cli000003_3.c3d44363-484f-435b-bb1d-61e4ddddcb55.serialconsole.log\"\r\n \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -5677,7 +5335,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:41:01.7840722+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:29:28.6087302+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -5688,7 +5346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:41:40 GMT + - Fri, 14 Oct 2022 15:30:07 GMT expires: - '-1' pragma: @@ -5705,7 +5363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2479,Microsoft.Compute/VMScaleSetVMViews3Min;4991 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2486,Microsoft.Compute/VMScaleSetVMViews3Min;4993 x-ms-request-charge: - '1' status: @@ -5725,12 +5383,12 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-12T20:26:24.2646274Z","key2":"2022-10-12T20:26:24.2646274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-12T20:26:24.4833775Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-12T20:26:24.1709235Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T15:18:09.2031765Z","key2":"2022-10-14T15:18:09.2031765Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T15:18:09.3282100Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T15:18:09.0938358Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -5739,7 +5397,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Oct 2022 20:41:41 GMT + - Fri, 14 Oct 2022 15:30:07 GMT expires: - '-1' pragma: @@ -5771,8 +5429,8 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -5786,7 +5444,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:41:41 GMT + - Fri, 14 Oct 2022 15:30:08 GMT expires: - '-1' pragma: @@ -5807,7 +5465,7 @@ interactions: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -5824,9 +5482,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-08-01 response: body: string: '' @@ -5834,17 +5492,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:41:42 GMT + - Fri, 14 Oct 2022 15:30:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -5855,7 +5513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1176,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;229,Microsoft.Compute/VMScaleSetActions30Min;1182,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1198' x-ms-request-charge: @@ -5877,23 +5535,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:41:42.627425+00:00\",\r\n \"endTime\": - \"2022-10-12T20:41:49.9242649+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f6e3096b-3ca1-45d6-b347-2b27c95b07d0\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:30:09.3895467+00:00\",\r\n \"endTime\": + \"2022-10-14T15:30:17.2644986+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6fa287ec-b1cf-4439-a805-b1fc36c972d3\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:42:12 GMT + - Fri, 14 Oct 2022 15:30:39 GMT expires: - '-1' pragma: @@ -5910,7 +5568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29809 + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29827 status: code: 200 message: OK @@ -5928,9 +5586,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f6e3096b-3ca1-45d6-b347-2b27c95b07d0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -5940,7 +5598,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:42:12 GMT + - Fri, 14 Oct 2022 15:30:39 GMT expires: - '-1' pragma: @@ -5953,7 +5611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29808 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29826 status: code: 200 message: OK @@ -5971,18 +5629,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:42:03+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:30:21+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -5990,13 +5648,13 @@ interactions: \ \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \ \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \ \"typeHandlerVersion\": \"2.20.58\",\r\n \"status\": {\r\n - \ \"code\": \"ProvisioningState/NotReady/0\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:38:53.1290205+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:27:47.1724508+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": @@ -6012,18 +5670,18 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:41:49.8773629+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:30:17.2332747+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2786' + - '2781' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:42:13 GMT + - Fri, 14 Oct 2022 15:30:40 GMT expires: - '-1' pragma: @@ -6040,7 +5698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;494,Microsoft.Compute/GetVMScaleSetVM30Min;2478,Microsoft.Compute/VMScaleSetVMViews3Min;4994 + - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2478,Microsoft.Compute/VMScaleSetVMViews3Min;4986 x-ms-request-charge: - '1' status: @@ -6062,9 +5720,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/deallocate?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/deallocate?api-version=2022-08-01 response: body: string: '' @@ -6072,17 +5730,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:42:14 GMT + - Fri, 14 Oct 2022 15:30:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -6093,7 +5751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2987,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -6115,13 +5773,113 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-14T15:30:40.8892724+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"298bea43-d8c3-41f5-9ea6-fdefb592a94f\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:31:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29820 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-10-14T15:30:40.8892724+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"298bea43-d8c3-41f5-9ea6-fdefb592a94f\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:31:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29816 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:42:14.2990436+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e8bea483-5609-44ec-a7a3-62b686af91b5\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:30:40.8892724+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"298bea43-d8c3-41f5-9ea6-fdefb592a94f\"\r\n}" headers: cache-control: - no-cache @@ -6130,7 +5888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:42:44 GMT + - Fri, 14 Oct 2022 15:32:10 GMT expires: - '-1' pragma: @@ -6147,7 +5905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29803 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29814 status: code: 200 message: OK @@ -6165,14 +5923,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:42:14.2990436+00:00\",\r\n \"endTime\": - \"2022-10-12T20:43:04.0172846+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e8bea483-5609-44ec-a7a3-62b686af91b5\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:30:40.8892724+00:00\",\r\n \"endTime\": + \"2022-10-14T15:32:41.4350378+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"298bea43-d8c3-41f5-9ea6-fdefb592a94f\"\r\n}" headers: cache-control: - no-cache @@ -6181,7 +5939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:43:14 GMT + - Fri, 14 Oct 2022 15:32:41 GMT expires: - '-1' pragma: @@ -6198,7 +5956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29801 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29811 status: code: 200 message: OK @@ -6216,9 +5974,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e8bea483-5609-44ec-a7a3-62b686af91b5?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -6228,7 +5986,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:43:14 GMT + - Fri, 14 Oct 2022 15:32:41 GMT expires: - '-1' pragma: @@ -6241,7 +5999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29800 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29810 status: code: 200 message: OK @@ -6259,21 +6017,21 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"disks\": + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:43:03.9547864+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:32:41.3568721+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-10-12T20:43:03.9704216+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2022-10-14T15:32:41.3881182+00:00\"\r\n },\r\n {\r\n \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n}" headers: @@ -6284,7 +6042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:43:14 GMT + - Fri, 14 Oct 2022 15:32:41 GMT expires: - '-1' pragma: @@ -6301,14 +6059,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;489,Microsoft.Compute/GetVMScaleSetVM30Min;2470,Microsoft.Compute/VMScaleSetVMViews3Min;4989 + - Microsoft.Compute/GetVMScaleSetVM3Min;483,Microsoft.Compute/GetVMScaleSetVM30Min;2470,Microsoft.Compute/VMScaleSetVMViews3Min;4983 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -6325,9 +6083,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/start?api-version=2022-08-01 response: body: string: '' @@ -6335,17 +6093,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:43:15 GMT + - Fri, 14 Oct 2022 15:32:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -6356,7 +6114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1175,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2989,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1179,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2976,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -6378,13 +6136,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:43:15.8765168+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"583bbb60-3725-4d75-864a-c0c716af5a53\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:32:43.2630868+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"3afa8c95-a423-4601-8aa6-2eed6aef7166\"\r\n}" headers: cache-control: - no-cache @@ -6393,7 +6151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:43:45 GMT + - Fri, 14 Oct 2022 15:33:12 GMT expires: - '-1' pragma: @@ -6410,7 +6168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29796 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29806 status: code: 200 message: OK @@ -6428,14 +6186,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:43:15.8765168+00:00\",\r\n \"endTime\": - \"2022-10-12T20:44:05.0792124+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"583bbb60-3725-4d75-864a-c0c716af5a53\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:32:43.2630868+00:00\",\r\n \"endTime\": + \"2022-10-14T15:33:18.3249612+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3afa8c95-a423-4601-8aa6-2eed6aef7166\"\r\n}" headers: cache-control: - no-cache @@ -6444,7 +6202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:15 GMT + - Fri, 14 Oct 2022 15:33:43 GMT expires: - '-1' pragma: @@ -6461,7 +6219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29790 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29804 status: code: 200 message: OK @@ -6479,9 +6237,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/583bbb60-3725-4d75-864a-c0c716af5a53?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -6491,7 +6249,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:44:15 GMT + - Fri, 14 Oct 2022 15:33:43 GMT expires: - '-1' pragma: @@ -6504,7 +6262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29789 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29803 status: code: 200 message: OK @@ -6522,9 +6280,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -6541,12 +6299,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -6556,7 +6314,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": @@ -6574,17 +6332,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5416' + - '5446' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:16 GMT + - Fri, 14 Oct 2022 15:33:44 GMT expires: - '-1' pragma: @@ -6601,7 +6359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2494 + - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2503 status: code: 200 message: OK @@ -6612,15 +6370,16 @@ interactions: {}}}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, "virtualMachineProfile": {"osProfile": - {"computerNamePrefix": "cli5ze36d", "adminUsername": "rhoover", "linuxConfiguration": + {"computerNamePrefix": "cliouf96e", "adminUsername": "rhoover", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rhoover/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\n"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": - true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "cli5ze36dNic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli5ze36dIPConfig", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\n"}]}, "provisionVMAgent": true, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true}, "storageProfile": + {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": + 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "cliouf96eNic", + "properties": {"primary": true, "enableAcceleratedNetworking": false, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cliouf96eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool"}], @@ -6645,15 +6404,15 @@ interactions: Connection: - keep-alive Content-Length: - - '3653' + - '3724' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -6670,12 +6429,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -6685,7 +6444,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n @@ -6702,21 +6461,21 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/edefcf49-e268-4d68-afb3-58d96573b23d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/09c9bcf9-6244-4cc6-a6f2-21e58cb0b4e4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '5345' + - '5375' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:19 GMT + - Fri, 14 Oct 2022 15:33:49 GMT expires: - '-1' pragma: @@ -6755,14 +6514,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/edefcf49-e268-4d68-afb3-58d96573b23d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/09c9bcf9-6244-4cc6-a6f2-21e58cb0b4e4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:44:19.9853353+00:00\",\r\n \"endTime\": - \"2022-10-12T20:44:20.3446802+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"edefcf49-e268-4d68-afb3-58d96573b23d\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:33:49.1842555+00:00\",\r\n \"endTime\": + \"2022-10-14T15:33:49.4968109+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"09c9bcf9-6244-4cc6-a6f2-21e58cb0b4e4\"\r\n}" headers: cache-control: - no-cache @@ -6771,7 +6530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:30 GMT + - Fri, 14 Oct 2022 15:33:59 GMT expires: - '-1' pragma: @@ -6788,7 +6547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29788 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29802 status: code: 200 message: OK @@ -6806,9 +6565,9 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003?api-version=2022-08-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n @@ -6825,12 +6584,12 @@ interactions: \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"cli5ze36d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"cliouf96e\",\r\n \"adminUsername\": \"rhoover\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/rhoover/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGHMN+bC56N4k9+7PHmc05TzPztY3dhpwfJ04DdRilla5TuKfjeSM1Wlb0Zk6b4toZ3Ore9SBx5KXNllIIwEP1Knhux7hMUXE0anRfSdw+LIN6JzACMhbUeqYKHT89VA8piZZVFd0bjU+mnKCOzhcD7YoVInkJFfntJOZkm9ON1hogaCaU8jIqNsnNjU5deE3KM/FzF9Ewf/XEOe86NQOvERaTLyPkPQAsMFauVRZHpJ1ZTlDdcz1XDpQQbHj2CaDcc61Z4lGmiUG45FAhKGCKjacRtCHpkygfZ9mEh7OE6/4D/UekaXOO0uo4SXnjSCecU6huML9otyNmKFm9wKg9euAEBcoymAhUphyvuFWLjBwKYNBv4kxJ//mfrbE0/rAQL0blc4DTgcGTHfmb6tJygHHfajB5wlJPchuT7Hmys/0SsBnAfHfOhvIQ9+YNlt1809UyuIhxzGg0KnsuZ/fdZxenDv8Fdt6geZT6+P8t4EBBMfswxieouUmTwSevS5M= - rhoover@LAPTOP-E23KTKIU\\n\"\r\n }\r\n ]\r\n },\r\n + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDu8zk/7tyHC3VcDKnMTGglN/OICHI6zYTBNyjdzh9xf5Xb6geCw2wmwGa2D7z1u4qwqlaPN2axVbs8/C7v/HQpmgirNjXZIJMB35olsFgs5vLQswHqL+mXjqV5o+puM3bvGTNGnmJBDSD3K+JkLOkahpc3r6W1bVUeKRnuoJOsQ/Fbss/y7BZMeX31mzIwfjOVkmEVU8mvTE0n1BOnRtELKVxbhvE16xaBI54J777Ns34HTNmhuFY3PyhHbfX5UOyEKqPXKGcnbRye/pq9j9+8Pyg1Vh4ZxycEQ6KxOYhfOpdrn+NR0z9dYVeal3cXQc5hHBpK38JE7nwPrKywp3v6dRxNcJUAjib06vs1Ept3+dTLW5FcBb/IK54HVSp4SEkq8xGj60HQebAAqf7HGIllngCnNsVABBD/06FoNaKxZSk3zFCBsWkSB5gh0R6DVH/yw6Ydru6cHqXAIIl3FCgbXrnfB9xngF34Em5P/rCRLjdZlXFofgPP6x+YPJmdNh8= + rhoover@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -6840,7 +6599,7 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli5ze36dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli5ze36dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cliouf96eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cliouf96eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET/subnets/cli000003Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/backendAddressPools/cli000003LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB/inboundNatPools/cli000003LBNatPool\"}]}}]}}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n @@ -6857,17 +6616,17 @@ interactions: {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"9b7c3d55-9aa1-4ba2-a51d-92262bc1be7d\",\r\n - \ \"timeCreated\": \"2022-10-12T20:27:03.1817718+00:00\"\r\n }\r\n}" + false,\r\n \"uniqueId\": \"793988fd-7a65-472d-9472-7470271a360c\",\r\n + \ \"timeCreated\": \"2022-10-14T15:18:49.0838434+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5346' + - '5376' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:31 GMT + - Fri, 14 Oct 2022 15:33:59 GMT expires: - '-1' pragma: @@ -6884,7 +6643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2490 + - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2499 status: code: 200 message: OK @@ -6902,18 +6661,18 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:44:07+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:33:17+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -6924,10 +6683,10 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:43:16.6733835+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:32:44.1224345+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": @@ -6943,18 +6702,18 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:44:05.047955+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:33:18.2780922+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2780' + - '2781' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:44:31 GMT + - Fri, 14 Oct 2022 15:34:00 GMT expires: - '-1' pragma: @@ -6971,14 +6730,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2469,Microsoft.Compute/VMScaleSetVMViews3Min;4990 + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2469,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["2"]}' + body: '{"instanceIds": ["3"]}' headers: Accept: - application/json @@ -6995,9 +6754,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/manualupgrade?api-version=2022-08-01 response: body: string: '' @@ -7005,17 +6764,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Oct 2022 20:44:31 GMT + - Fri, 14 Oct 2022 15:34:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -7026,7 +6785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1174,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2955,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1178,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2957,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -7048,14 +6807,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\r\n \"startTime\": \"2022-10-12T20:44:31.9383032+00:00\",\r\n \"endTime\": - \"2022-10-12T20:44:43.3288409+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"44038034-5631-454d-9d71-9cd2fd57dd11\"\r\n}" + string: "{\r\n \"startTime\": \"2022-10-14T15:34:01.8561004+00:00\",\r\n \"endTime\": + \"2022-10-14T15:34:12.3872976+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"13eb1b46-5d20-4eff-8562-a7b9d15c3721\"\r\n}" headers: cache-control: - no-cache @@ -7064,7 +6823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:45:01 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: @@ -7081,7 +6840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29786 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29799 status: code: 200 message: OK @@ -7099,9 +6858,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/44038034-5631-454d-9d71-9cd2fd57dd11?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -7111,7 +6870,7 @@ interactions: content-length: - '0' date: - - Wed, 12 Oct 2022 20:45:01 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: @@ -7124,7 +6883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29785 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29798 status: code: 200 message: OK @@ -7142,18 +6901,18 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.10 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-compute/28.0.0 Python/3.10.5 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2/instanceView?api-version=2022-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: "{\r\n \"placementGroupId\": \"d85d5864-db7f-4609-8ded-d62c7f4c522b\",\r\n - \ \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": - \"cli5ze36d000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"900064c0-d742-4569-a06c-dcca8072c0c3\",\r\n + \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": + \"cliouf96e000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": - \"Guest Agent is running\",\r\n \"time\": \"2022-10-12T20:44:43+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2022-10-14T15:34:17+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.22.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n @@ -7164,10 +6923,10 @@ interactions: \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli5z7g7ojgep25pzqjwcli5z7g7ojgep25pzqjwwOS__1_0a4549a5ca7047e0828758c696c301d6\",\r\n + [\r\n {\r\n \"name\": \"cliou5z7nax54kj6yubjcliou5z7nax54kj6yubj5OS__1_474db27698dd49ddab2454669aab0333\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-10-12T20:44:33.1258162+00:00\"\r\n + succeeded\",\r\n \"time\": \"2022-10-14T15:34:02.8873439+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {},\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \ \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": @@ -7183,7 +6942,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-10-12T20:44:43.2819764+00:00\"\r\n },\r\n {\r\n \"code\": + \"2022-10-14T15:34:12.3247354+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -7194,7 +6953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Oct 2022 20:45:02 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: @@ -7211,7 +6970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;490,Microsoft.Compute/GetVMScaleSetVM30Min;2468,Microsoft.Compute/VMScaleSetVMViews3Min;4990 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2468,Microsoft.Compute/VMScaleSetVMViews3Min;4997 x-ms-request-charge: - '1' status: @@ -7231,8 +6990,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-05-01 response: @@ -7246,7 +7005,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:45:02 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: diff --git a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml index 67a1909312b..b03a58dc383 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml +++ b/src/serial-console/azext_serialconsole/tests/latest/recordings/test_enable_disable.yaml @@ -15,8 +15,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/disableConsole?api-version=2018-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:26:21 GMT + - Fri, 14 Oct 2022 15:18:05 GMT expires: - '-1' pragma: @@ -68,8 +68,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.40.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.41.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.10.5 + (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole/consoleServices/default/enableConsole?api-version=2018-05-01 response: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Wed, 12 Oct 2022 20:26:21 GMT + - Fri, 14 Oct 2022 15:18:04 GMT expires: - '-1' pragma: From b8e20186f1a450aeffd27353c20bc027de72e0c1 Mon Sep 17 00:00:00 2001 From: rhoover Date: Fri, 14 Oct 2022 11:33:10 -0500 Subject: [PATCH 15/17] Fix spacing issue and restart failed tests --- .../serialconsole/_microsoft_serial_console_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py index 0d58642e997..680ea7ca70c 100644 --- a/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py +++ b/src/serial-console/azext_serialconsole/vendored_sdks/serialconsole/_microsoft_serial_console_client.py @@ -43,6 +43,7 @@ def __init__( **kwargs # type: Any ): # type: (...) -> None + if len(kwargs) > 0 and kwargs.get('storage_account_region') is not None: base_url = 'https://{}.management.azure.com'.format(kwargs['storage_account_region']) From d16dc3c8d284aa037eb29b32d4b743332ac57eff Mon Sep 17 00:00:00 2001 From: rhkodiak Date: Wed, 19 Oct 2022 20:38:42 -0500 Subject: [PATCH 16/17] Change print statement Changed the print statement to use the logger.debug() option to only output the boot_diagnostics section for debugging --- src/serial-console/azext_serialconsole/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 7459cc3ffae..00c9e1c70de 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -698,7 +698,7 @@ def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name, error_message, recommendation=recommendation) else: if result.boot_diagnostics is not None: - print(result.boot_diagnostics) + logger.debug(result.boot_diagnostics) if result.boot_diagnostics.console_screenshot_blob_uri is not None: storage_account_url = result.boot_diagnostics.console_screenshot_blob_uri storage_account_region = get_storage_account_info(storage_account_url, resource_group_name, scf) From f64adb3ff9931069cb4741790e615a228db7b7b1 Mon Sep 17 00:00:00 2001 From: rhkodiak Date: Thu, 20 Oct 2022 11:46:02 -0500 Subject: [PATCH 17/17] Add logger import Added the logger import to correct the build failure --- src/serial-console/azext_serialconsole/custom.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index 00c9e1c70de..836ca3dec8e 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -675,7 +675,9 @@ def disable_serialconsole(cmd): def get_region_from_storage_account(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): from azext_serialconsole._client_factory import storage_client_factory + from knack.log import get_logger + logger = get_logger(__name__) result = None storage_account_region = None client = _compute_client_factory(cli_ctx)