diff --git a/src/serial-console/HISTORY.rst b/src/serial-console/HISTORY.rst index 1b68bd0f626..eb830fa685a 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 url calls when custom storage account firewalls are enabled + 0.1.2 ++++++ * Change to make custom boot diagnostics optional diff --git a/src/serial-console/azext_serialconsole/_arm_endpoints.py b/src/serial-console/azext_serialconsole/_arm_endpoints.py new file mode 100644 index 00000000000..1bad0cd2e27 --- /dev/null +++ b/src/serial-console/azext_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: # pylint: disable=too-few-public-methods + 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/_client_factory.py b/src/serial-console/azext_serialconsole/_client_factory.py index fbaed116da0..ccfaf9ec465 100644 --- a/src/serial-console/azext_serialconsole/_client_factory.py +++ b/src/serial-console/azext_serialconsole/_client_factory.py @@ -3,21 +3,27 @@ # 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'), 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 return get_mgmt_service_client(cli_ctx, - MicrosoftSerialConsoleClient) + MicrosoftSerialConsoleClient, **kwargs) + +def cf_serial_port(cli_ctx, **kwargs): + return cf_serialconsole(cli_ctx, **kwargs).serial_ports -def cf_serial_port(cli_ctx, *_): - 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..836ca3dec8e 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) @@ -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,13 @@ 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) + 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( resource_group_name=resource_group_name, @@ -365,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() @@ -457,7 +463,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) @@ -524,6 +530,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" @@ -563,14 +570,18 @@ 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, storage_account_region=None): + if storage_account_region is not None: + kwargs = {'storage_account_region': storage_account_region} + else: + kwargs = {} + 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"]): @@ -581,11 +592,11 @@ 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) - client = _compute_client_factory(cli_ctx) + 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) + 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 @@ -596,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()): @@ -640,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, @@ -695,3 +671,94 @@ 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, 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) + scf = storage_client_factory(cli_ctx) + + 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: + 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) + 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 ArmEndpoints.region_prefix_pairings[sa_result.location] + + return None + + +def parse_storage_account_url(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..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,56 +11,9 @@ 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) + - 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.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) - 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'' @@ -74,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Fri, 14 Oct 2022 15:18:31 GMT expires: - '-1' pragma: @@ -100,9 +53,9 @@ 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.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'' @@ -116,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Fri, 14 Oct 2022 15:18:31 GMT expires: - '-1' pragma: @@ -142,56 +95,9 @@ 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.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 @@ -205,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Fri, 14 Oct 2022 15:18:31 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 + - Fri, 14 Oct 2022 15:18:33 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 04 Aug 2022 17:15:32 GMT + - Fri, 14 Oct 2022 15:23:33 GMT source-age: - - '154' + - '1' strict-transport-security: - max-age=31536000 vary: @@ -316,15 +222,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e094d23543d00b0b2fb9b969ba4aaaf5e3e68b2f + - 2e43cb927278d68606b26e191838c395fee87c9e x-frame-options: - deny x-github-request-id: - - 5064:23C7:122D3E:1DAA5F:62EBFB90 + - 0807:11F5:8F72A:FB4B1:63497DC8 x-served-by: - - cache-pao17467-PAO + - cache-dal2120134-DAL x-timer: - - S1659633032.083799,VS0,VE1 + - S1665760714.830429,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.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.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 + - Fri, 14 Oct 2022 15:18:33 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;43996 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.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.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-08-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 + - Fri, 14 Oct 2022 15:18:34 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;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996 status: code: 200 message: OK @@ -445,7 +352,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -455,9 +362,9 @@ 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.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":[]}' @@ -469,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:32 GMT + - Fri, 14 Oct 2022 15:18:34 GMT expires: - '-1' pragma: @@ -495,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": @@ -505,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", @@ -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 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: - application/json @@ -527,29 +434,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3604' + - '3808' 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.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_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_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_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_UG9cEcn3KjjZRHS8GkwqQMwLb43iYktQ/operationStatuses/08585358461692167705?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2489' + - '2490' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:33 GMT + - Fri, 14 Oct 2022 15:18:38 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,9 +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) + - 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/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/08585358461692167705?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -591,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:03 GMT + - Fri, 14 Oct 2022 15:19:08 GMT expires: - '-1' pragma: @@ -619,9 +526,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) + - 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/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/08585358461692167705?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -633,7 +540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Fri, 14 Oct 2022 15:19:38 GMT expires: - '-1' pragma: @@ -661,12 +568,12 @@ 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.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_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_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 @@ -675,7 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Fri, 14 Oct 2022 15:19:38 GMT expires: - '-1' pragma: @@ -703,64 +610,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.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 \"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\": \"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.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_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_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \"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-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-08-04T17:10:51.5255088+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-08-04T17:11:16.4472219+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-08-04T17:10:47.8380764+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: - - '3913' + - '4239' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Fri, 14 Oct 2022 15:19:39 GMT expires: - '-1' pragma: @@ -777,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31940 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -785,7 +693,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -795,18 +703,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.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/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"039aaffd-6916-4a71-a695-0de583ae6055\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"601b5ed0-d41f-4643-8e93-f1c73b03c315\",\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/\\\"aa101b49-17b4-47d7-b456-b0440c039d94\\\"\",\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\": @@ -815,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\": - \"kzhglzq3n3getbkfek1c4nh5uc.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-77-28-51\",\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: - - Thu, 04 Aug 2022 17:11:34 GMT + - Fri, 14 Oct 2022 15:19:40 GMT etag: - - W/"aa101b49-17b4-47d7-b456-b0440c039d94" + - W/"039aaffd-6916-4a71-a695-0de583ae6055" expires: - '-1' pragma: @@ -850,7 +760,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55f55800-aef1-4d1c-91b7-4e700fa97487 + - ffa84083-0fae-4347-a8e2-20f99e68e498 status: code: 200 message: OK @@ -858,7 +768,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -868,31 +778,32 @@ 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.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/\\\"0289d247-5917-4b30-b9a3-abdec4758c7f\\\"\",\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\": \"379f9ab3-9fbd-43b4-922e-1e62313bcd59\",\r\n - \ \"ipAddress\": \"20.112.39.82\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"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: - - '927' + - '953' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:34 GMT + - Fri, 14 Oct 2022 15:19:40 GMT etag: - - W/"0289d247-5917-4b30-b9a3-abdec4758c7f" + - W/"7781bd9a-182b-45dd-a5d6-c596b1acfd34" expires: - '-1' pragma: @@ -909,56 +820,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06230199-dc1b-4e72-9e85-320ed4ee9c4d - 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-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 + - 984d82fc-74d9-416f-bb4c-4df013601d5a status: code: 200 message: OK @@ -976,64 +838,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.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 \"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\": \"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.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_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_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \"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-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-08-04T17:10:51.5255088+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-08-04T17:11:16.4472219+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-08-04T17:10:47.8380764+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: - - '3913' + - '4239' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Fri, 14 Oct 2022 15:19:40 GMT expires: - '-1' pragma: @@ -1050,7 +913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31939 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -1068,47 +931,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.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 \"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\": \"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.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_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_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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-14T15:18:48.6932141+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2608' + - '2933' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:35 GMT + - Fri, 14 Oct 2022 15:19:40 GMT expires: - '-1' pragma: @@ -1125,21 +989,23 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31938 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992 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_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_OsDisk_1_7d6d86c836b3467ba1558092f932f404", "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": + []}, "osProfile": {"computerName": "cli000003", "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, "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: @@ -1152,58 +1018,59 @@ interactions: Connection: - keep-alive Content-Length: - - '1636' + - '1985' 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.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 \"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\": \"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.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_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_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-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/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/4f6bc2e8-8a7c-4276-a7d2-9ed34c15ee1e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '2706' + - '3031' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:11:36 GMT + - Fri, 14 Oct 2022 15:19:44 GMT expires: - '-1' pragma: @@ -1220,7 +1087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;500,Microsoft.Compute/PutVM30Min;2507 + - Microsoft.Compute/PutVM3Min;594,Microsoft.Compute/PutVM30Min;2984 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1240,23 +1107,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.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/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/4f6bc2e8-8a7c-4276-a7d2-9ed34c15ee1e?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:07 GMT + - Fri, 14 Oct 2022 15:20:14 GMT expires: - '-1' pragma: @@ -1273,7 +1140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29871 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1291,48 +1158,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.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 \"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\": \"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.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_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_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2707' + - '3032' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:07 GMT + - Fri, 14 Oct 2022 15:20:14 GMT expires: - '-1' pragma: @@ -1349,7 +1217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31933 + - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -1367,28 +1235,75 @@ 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.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.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-08-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 \"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_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_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 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 + \ \"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-14T15:19:49+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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '4368' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:08 GMT + - Fri, 14 Oct 2022 15:20:15 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: @@ -1397,8 +1312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986 status: code: 200 message: OK @@ -1416,74 +1331,28 @@ 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.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/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/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-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 \"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 - \ },\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 - \ \"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 }\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\": \"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 - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\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:11:37.6971283+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 - \ {\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}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '4042' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:12:08 GMT + - Fri, 14 Oct 2022 15:20:16 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: @@ -1492,8 +1361,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31932 + x-frame-options: + - deny status: code: 200 message: OK @@ -1513,25 +1382,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.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: '' headers: + azure-asyncnotification: + - Enabled 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 + - 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: - - Thu, 04 Aug 2022 17:12:09 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/d7a758b8-1915-42bb-a410-7f6f3405c9bb?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: @@ -1542,9 +1413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1194 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1562,13 +1433,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.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/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/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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: "{\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 @@ -1577,7 +1448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:19 GMT + - Fri, 14 Oct 2022 15:20:26 GMT expires: - '-1' pragma: @@ -1594,7 +1465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29870 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1612,23 +1483,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.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/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/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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: - - Thu, 04 Aug 2022 17:12:55 GMT + - Fri, 14 Oct 2022 15:20:56 GMT expires: - '-1' pragma: @@ -1645,7 +1516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1663,9 +1534,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.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/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/2104914c-5652-4df7-90ea-fcc5d18bbb8c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1675,7 +1546,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Fri, 14 Oct 2022 15:20:57 GMT expires: - '-1' pragma: @@ -1688,7 +1559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982 status: code: 200 message: OK @@ -1706,28 +1577,67 @@ 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.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.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-08-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 \"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_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_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 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 + \ \"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_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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '3826' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Fri, 14 Oct 2022 15:20:58 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: @@ -1736,8 +1646,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31978 status: code: 200 message: OK @@ -1755,66 +1665,28 @@ 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.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/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/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-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_serialconsole000001/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 }\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:12:37.8998954+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 - \ {\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: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '3501' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:12:55 GMT + - Fri, 14 Oct 2022 15:20:58 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: @@ -1823,8 +1695,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31926 + x-frame-options: + - deny status: code: 200 message: OK @@ -1844,25 +1716,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.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: '' 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/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:12:56 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/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/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1873,9 +1747,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1893,13 +1767,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.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/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/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -1908,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:06 GMT + - Fri, 14 Oct 2022 15:21:09 GMT expires: - '-1' pragma: @@ -1925,7 +1799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1943,14 +1817,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.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/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/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -1959,7 +1833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Fri, 14 Oct 2022 15:21:19 GMT expires: - '-1' pragma: @@ -1976,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -1994,9 +1868,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.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/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/8ebffdc3-4311-4dee-a126-81e84b11a5eb?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2006,7 +1880,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Fri, 14 Oct 2022 15:21:19 GMT expires: - '-1' pragma: @@ -2019,7 +1893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -2039,25 +1913,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.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: '' headers: + azure-asyncnotification: + - Enabled 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 + - 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: - - Thu, 04 Aug 2022 17:13:36 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/b0708181-81f0-4bad-8c47-7171f5883c6e?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: @@ -2068,7 +1944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1194 + - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2088,23 +1964,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.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/b0708181-81f0-4bad-8c47-7171f5883c6e?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-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: "{\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 content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:07 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -2121,7 +1997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29825 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966 status: code: 200 message: OK @@ -2139,9 +2015,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.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/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/ecf1882f-e784-4fdb-a80a-7c760b34003c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2151,7 +2027,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:07 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -2164,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29824 + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965 status: code: 200 message: OK @@ -2182,28 +2058,78 @@ 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.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.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-08-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\": \"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_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_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 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 + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '4736' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:08 GMT + - Fri, 14 Oct 2022 15:21:50 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: @@ -2212,8 +2138,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31959 status: code: 200 message: OK @@ -2231,74 +2157,28 @@ 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.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/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/providers/Microsoft.SerialConsole/consoleServices/default?api-version=2018-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 \"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 - \ },\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 - \ \"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 }\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\": \"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 - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\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:12:57.8216908+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 - \ {\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}" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '4089' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:14:09 GMT + - Fri, 14 Oct 2022 15:21:51 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: @@ -2307,8 +2187,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31919 + x-frame-options: + - deny status: code: 200 message: OK @@ -2326,48 +2206,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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2754' + - '3494' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:09 GMT + - Fri, 14 Oct 2022 15:21:52 GMT expires: - '-1' pragma: @@ -2384,21 +2269,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31918 + - Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31958 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_OsDisk_1_7d6d86c836b3467ba1558092f932f404", + "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": + {"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": "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": + []}, "osProfile": {"computerName": "cli000003", "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, "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: @@ -2411,58 +2299,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1684' + - '2284' 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-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/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/f1cd4507-f4e8-40b7-a565-afabb1d6fecf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '2754' + - '3494' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:10 GMT + - Fri, 14 Oct 2022 15:21:55 GMT expires: - '-1' pragma: @@ -2479,7 +2372,7 @@ 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;2981 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2499,14 +2392,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.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/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/f1cd4507-f4e8-40b7-a565-afabb1d6fecf?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -2515,7 +2408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:40 GMT + - Fri, 14 Oct 2022 15:22:25 GMT expires: - '-1' pragma: @@ -2532,7 +2425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29813 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29958 status: code: 200 message: OK @@ -2550,48 +2443,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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2755' + - '3495' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:40 GMT + - Fri, 14 Oct 2022 15:22:25 GMT expires: - '-1' pragma: @@ -2608,56 +2506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31915 - 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-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: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 + - Microsoft.Compute/LowCostGet3Min;3954,Microsoft.Compute/LowCostGet30Min;31950 status: code: 200 message: OK @@ -2675,66 +2524,70 @@ 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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 - \ \"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 - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\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-08-04T17:14:10.9774837+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-08-04T17:14:12.3837386+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-08-04T17:10:47.8380764+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: - - '4060' + - '4707' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:41 GMT + - Fri, 14 Oct 2022 15:22:26 GMT expires: - '-1' pragma: @@ -2751,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31914 + - Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31949 status: code: 200 message: OK @@ -2771,25 +2624,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.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: '' 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/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:42 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/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/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2800,7 +2655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1193 + - Microsoft.Compute/UpdateVM3Min;233,Microsoft.Compute/UpdateVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2820,14 +2675,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.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/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/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -2836,7 +2691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:52 GMT + - Fri, 14 Oct 2022 15:22:37 GMT expires: - '-1' pragma: @@ -2853,7 +2708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29811 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29953 status: code: 200 message: OK @@ -2871,9 +2726,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.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/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/8a232137-dc32-40fe-8c57-97f9381a8b7c?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2883,7 +2738,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:52 GMT + - Fri, 14 Oct 2022 15:22:37 GMT expires: - '-1' pragma: @@ -2896,56 +2751,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;14957,Microsoft.Compute/GetOperation30Min;29952 status: code: 200 message: OK @@ -2963,66 +2769,70 @@ 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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 - \ \"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 - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\",\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-08-04T17:14:10.9774837+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-08-04T17:14:51.3209989+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-08-04T17:10:47.8380764+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: - - '4060' + - '4707' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:53 GMT + - Fri, 14 Oct 2022 15:22:39 GMT expires: - '-1' pragma: @@ -3039,7 +2849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31912 + - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31945 status: code: 200 message: OK @@ -3057,48 +2867,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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2755' + - '3495' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:53 GMT + - Fri, 14 Oct 2022 15:22:39 GMT expires: - '-1' pragma: @@ -3115,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31911 + - Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31944 status: code: 200 message: OK @@ -3133,21 +2948,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.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=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_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 content-length: - - '65114' + - '60142' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:54 GMT + - Fri, 14 Oct 2022 15:22:40 GMT expires: - '-1' pragma: @@ -3159,31 +2974,32 @@ 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 + - 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 - 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_OsDisk_1_7d6d86c836b3467ba1558092f932f404", + "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": + {"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": "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": + []}, "osProfile": {"computerName": "cli000003", "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, "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: @@ -3196,59 +3012,64 @@ interactions: Connection: - keep-alive Content-Length: - - '1741' + - '2341' 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-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/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/b4acdcb1-3dfc-40a9-ba3c-edf25bffc154?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '2820' + - '3560' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:54 GMT + - Fri, 14 Oct 2022 15:22:42 GMT expires: - '-1' pragma: @@ -3265,7 +3086,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 +3106,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.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/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/b4acdcb1-3dfc-40a9-ba3c-edf25bffc154?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:25 GMT + - Fri, 14 Oct 2022 15:23:13 GMT expires: - '-1' pragma: @@ -3318,7 +3139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29801 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -3336,49 +3157,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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-14T15:18:48.6932141+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2821' + - '3561' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:26 GMT + - Fri, 14 Oct 2022 15:23:13 GMT expires: - '-1' pragma: @@ -3395,7 +3221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31904 + - Microsoft.Compute/LowCostGet3Min;3954,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -3413,28 +3239,81 @@ interactions: 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.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.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-08-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\": \"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_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_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 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 + \ \"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 \"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-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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '5222' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:26 GMT + - Fri, 14 Oct 2022 15:23:13 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: @@ -3443,8 +3322,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -3462,76 +3341,27 @@ 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.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.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 \"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 - \ },\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 - \ \"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 \"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\": - \"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 - \ \"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 - \ }\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:15:03.4927468+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}" + 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 content-length: - - '4575' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:15:26 GMT + - Fri, 14 Oct 2022 15:23:14 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: @@ -3540,8 +3370,55 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31903 + 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.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: + 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: + - Fri, 14 Oct 2022 15:23:14 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 @@ -3561,8 +3438,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.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: @@ -3576,7 +3453,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:27 GMT + - Fri, 14 Oct 2022 15:23:15 GMT expires: - '-1' pragma: @@ -3594,7 +3471,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3610,28 +3487,81 @@ 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) + - 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.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-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": true\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\": \"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_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_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 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 + \ \"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-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-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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '42' + - '5316' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:27 GMT + - Fri, 14 Oct 2022 15:23:15 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: @@ -3640,8 +3570,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3952,Microsoft.Compute/LowCostGet30Min;31937 status: code: 200 message: OK @@ -3653,30 +3583,70 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console enable + - serial-console disable Connection: - keep-alive - Content-Length: - - '0' - Content-Type: + User-Agent: + - 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-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 + content-length: + - '1259' + content-type: - application/json + date: + - Fri, 14 Oct 2022 15:23: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.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.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: 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 + - Fri, 14 Oct 2022 15:23:16 GMT expires: - '-1' pragma: @@ -3693,8 +3663,6 @@ interactions: - nosniff x-frame-options: - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -3709,11 +3677,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.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: body: string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" @@ -3725,7 +3697,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:28 GMT + - Fri, 14 Oct 2022 15:23:17 GMT expires: - '-1' pragma: @@ -3742,6 +3714,8 @@ interactions: - nosniff x-frame-options: - deny + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3757,69 +3731,74 @@ 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-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-08-04T17:14:10.9774837+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-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-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-08-04T17:15:03.4927468+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-08-04T17:10:47.8380764+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: - - '4575' + - '5316' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:28 GMT + - Fri, 14 Oct 2022 15:23:18 GMT expires: - '-1' pragma: @@ -3836,7 +3815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3972,Microsoft.Compute/LowCostGet30Min;31902 + - Microsoft.Compute/LowCostGet3Min;3951,Microsoft.Compute/LowCostGet30Min;31936 status: code: 200 message: OK @@ -3848,87 +3827,76 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm stop + - serial-console 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/powerOff?skipShutdown=false&api-version=2022-03-01 + - 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: '' + 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: - 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 + - Fri, 14 Oct 2022 15:23:18 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 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.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.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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '184' + - '43' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:15:58 GMT + - Fri, 14 Oct 2022 15:23:18 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 +3905,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,31 +3914,39 @@ interactions: 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/db0e3f78-459d-4638-961f-72e4a31d6a15?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-03-01 + - 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-08-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/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:15:58 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/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -3981,15 +3957,17 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29793 + - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1192 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3999,28 +3977,30 @@ 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.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.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/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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 content-length: - - '43' + - '184' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:00 GMT + - Fri, 14 Oct 2022 15:23: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: @@ -4029,8 +4009,51 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29929 + 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.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/b46d7d91-5254-4d91-a114-623644cc760d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Oct 2022 15:23:49 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;14946,Microsoft.Compute/GetOperation30Min;29928 status: code: 200 message: OK @@ -4048,69 +4071,74 @@ 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.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 \"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\": \"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.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_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_SERIALCONSOLEFTJX7LNJTECNUAAW7NDBGC7LRALMOLPWHFEOSNW5PPIREVJDRRXVV/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_fac1eec67dc244d1a0ebc351341c4474\"\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\": \"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 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 \ \"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-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-08-04T17:14:10.9774837+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-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-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-08-04T17:15:36.2269196+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-08-04T17:10:47.8380764+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: - - '4575' + - '5316' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:00 GMT + - Fri, 14 Oct 2022 15:23:51 GMT expires: - '-1' pragma: @@ -4127,7 +4155,102 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31900 + - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31934 + 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.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-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 + content-length: + - '1259' + content-type: + - application/json + date: + - Fri, 14 Oct 2022 15:23:51 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.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: + 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: + - Fri, 14 Oct 2022 15:23:52 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 +4270,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.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: '' 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/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:00 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/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/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4176,9 +4301,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1191 + - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -4196,22 +4321,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.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/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/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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: - - Thu, 04 Aug 2022 17:16:11 GMT + - Fri, 14 Oct 2022 15:24:03 GMT expires: - '-1' pragma: @@ -4228,7 +4353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29789 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29924 status: code: 200 message: OK @@ -4246,23 +4371,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.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/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/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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: - - Thu, 04 Aug 2022 17:16:47 GMT + - Fri, 14 Oct 2022 15:24:38 GMT expires: - '-1' pragma: @@ -4279,7 +4404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29778 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29916 status: code: 200 message: OK @@ -4297,9 +4422,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.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/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/cc0ddb8b-c140-459c-b25d-d4da08a880cd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4309,7 +4434,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:47 GMT + - Fri, 14 Oct 2022 15:24:38 GMT expires: - '-1' pragma: @@ -4322,7 +4447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29777 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29915 status: code: 200 message: OK @@ -4340,28 +4465,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.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.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-08-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\": \"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_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_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 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 + \ \"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_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-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-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-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-14T15:18:48.6932141+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '43' + - '4774' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:47 GMT + - Fri, 14 Oct 2022 15:24: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: @@ -4370,8 +4540,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31925 status: code: 200 message: OK @@ -4389,68 +4559,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.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.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-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 content-length: - - '4034' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:16:48 GMT + - Fri, 14 Oct 2022 15:24:40 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 +4588,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.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: + 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: + - Fri, 14 Oct 2022 15:24:40 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..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,56 +11,9 @@ 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) + - 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.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) - 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'' @@ -74,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Fri, 14 Oct 2022 15:18:30 GMT expires: - '-1' pragma: @@ -100,9 +53,9 @@ 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.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'' @@ -116,7 +69,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Fri, 14 Oct 2022 15:18:30 GMT expires: - '-1' pragma: @@ -142,56 +95,9 @@ 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.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 @@ -205,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:30 GMT + - Fri, 14 Oct 2022 15:18:30 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 + - Fri, 14 Oct 2022 15:18:33 GMT etag: - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" expires: - - Thu, 04 Aug 2022 17:15:31 GMT + - Fri, 14 Oct 2022 15:23:33 GMT source-age: - - '153' + - '1' strict-transport-security: - max-age=31536000 vary: @@ -316,15 +222,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 2efe8a199373fd72a8df5a2a83bccb2a320d768c + - 1c63a2f9d8f5190151db137dbbdeefb50ea190df x-frame-options: - deny x-github-request-id: - - 5064:23C7:122D3E:1DAA5F:62EBFB90 + - 0807:11F5:8F72A:FB4B1:63497DC8 x-served-by: - - cache-pao17443-PAO + - cache-dal2120089-DAL x-timer: - - S1659633032.524216,VS0,VE1 + - S1665760713.155581,VS0,VE1 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.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.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 + - Fri, 14 Oct 2022 15:18:33 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;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 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.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.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-08-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 + - Fri, 14 Oct 2022 15:18:33 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;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -445,7 +352,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -455,9 +362,9 @@ 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.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":[]}' @@ -469,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:10:31 GMT + - Fri, 14 Oct 2022 15:18:33 GMT expires: - '-1' pragma: @@ -490,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"}}}], @@ -502,19 +409,19 @@ 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": "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": "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"}]}}}, "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"}]}}], "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2", @@ -531,29 +438,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4106' + - '4310' 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.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_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_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_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_t5llprO4gRjggLaAddTNGJULYsdpSyzF/operationStatuses/08585358461674764940?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 + - Fri, 14 Oct 2022 15:18:39 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.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/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/08585358461674764940?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 + - Fri, 14 Oct 2022 15:19:11 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.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/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/08585358461674764940?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 + - Fri, 14 Oct 2022 15:19:41 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.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/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/08585358461674764940?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 + - Fri, 14 Oct 2022 15:20:11 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.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 + 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: '{"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 + - Fri, 14 Oct 2022 15:20:41 GMT expires: - '-1' pragma: @@ -740,7 +646,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -750,38 +656,117 @@ 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.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/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/08585358461674764940?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 + - Fri, 14 Oct 2022 15:21:11 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.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/08585358461674764940?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: + - Fri, 14 Oct 2022 15:21:41 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.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_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: + - '6474' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:21: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 @@ -799,9 +784,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.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'' @@ -815,7 +800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Fri, 14 Oct 2022 15:21:42 GMT expires: - '-1' pragma: @@ -843,49 +828,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.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 \"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\": \"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 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\": {\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\":\"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\": + 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\": \"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: - - '3417' + - '4852' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Fri, 14 Oct 2022 15:21:43 GMT expires: - '-1' pragma: @@ -902,7 +901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2538 + - Microsoft.Compute/GetVMScaleSet3Min;390,Microsoft.Compute/GetVMScaleSet30Min;2590 status: code: 200 message: OK @@ -920,83 +919,121 @@ 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.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 \"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\": \"2\",\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\":\"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.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\": \"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/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_9d3b4aa626d54d8e9c891331fdca0d7f\"\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\": - \"clinqc38b000000\",\r\n \"adminUsername\": \"rhl\",\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/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 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/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\": \"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 \"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 \ \"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\": \"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\":\"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.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\": \"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/clinqhzpoczvy5m2spufclinqhzpoczvy5m2spufqOS__1_00d110bc7aaf4fbebbd4095a4a610862\"\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\": - \"clinqc38b000003\",\r\n \"adminUsername\": \"rhl\",\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/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 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/3/networkInterfaces/cliouf96eNic\"}]},\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-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_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\": + 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_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\": + 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' + - '12282' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Fri, 14 Oct 2022 15:21:44 GMT expires: - '-1' pragma: @@ -1013,7 +1050,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;899,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '4' status: @@ -1033,49 +1070,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.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 \"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\": \"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 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\": {\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\":\"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\": + 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\": \"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: - - '3417' + - '4852' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:15 GMT + - Fri, 14 Oct 2022 15:21:44 GMT expires: - '-1' pragma: @@ -1092,32 +1143,40 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2535 + - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2589 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": "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}, "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"}], "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 +1187,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2357' + - '3473' 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.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 \ \"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\": \"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 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\": {\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\":\"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 },\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\": \"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/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/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3525' + - '4960' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:18 GMT + - Fri, 14 Oct 2022 15:21:49 GMT expires: - '-1' pragma: @@ -1198,7 +1271,7 @@ 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;742,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1220,13 +1293,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.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/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/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -1235,7 +1308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:12:28 GMT + - Fri, 14 Oct 2022 15:21:58 GMT expires: - '-1' pragma: @@ -1252,7 +1325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29866 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29962 status: code: 200 message: OK @@ -1270,14 +1343,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.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/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/3a9c922e-332b-4f2a-86bf-ac046382627a?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -1286,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:05 GMT + - Fri, 14 Oct 2022 15:22:35 GMT expires: - '-1' pragma: @@ -1303,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK @@ -1321,50 +1394,64 @@ 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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3526' + - '4961' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:05 GMT + - Fri, 14 Oct 2022 15:22:35 GMT expires: - '-1' pragma: @@ -1381,7 +1468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;375,Microsoft.Compute/GetVMScaleSet30Min;2525 + - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2581 status: code: 200 message: OK @@ -1403,25 +1490,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.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: '' 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/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:06 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/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/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1432,7 +1521,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;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2977,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1454,14 +1543,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.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/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/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -1470,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:13:35 GMT + - Fri, 14 Oct 2022 15:23:07 GMT expires: - '-1' pragma: @@ -1487,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29945 status: code: 200 message: OK @@ -1505,9 +1594,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.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/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/325a1e30-b80a-4ade-aa02-67a7605ebce6?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -1517,7 +1606,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:36 GMT + - Fri, 14 Oct 2022 15:23:07 GMT expires: - '-1' pragma: @@ -1530,7 +1619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29835 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29944 status: code: 200 message: OK @@ -1548,28 +1637,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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\": + \"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-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: 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 + - Fri, 14 Oct 2022 15:23:09 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 +1705,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;2499,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -1597,45 +1726,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.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/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 + - Fri, 14 Oct 2022 15:23:14 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 +1756,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 +1777,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.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/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/3/deallocate?api-version=2022-08-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/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:13:37 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/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/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -1696,7 +1808,7 @@ 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;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2984,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1718,22 +1830,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.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/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/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '134' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:14:08 GMT + - Fri, 14 Oct 2022 15:23:44 GMT expires: - '-1' pragma: @@ -1750,7 +1863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29823 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29932 status: code: 200 message: OK @@ -1768,23 +1881,19 @@ 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.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/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/2c379d80-4c1d-4e2b-afca-2630e2c759d4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-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: '' headers: cache-control: - no-cache content-length: - - '183' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 04 Aug 2022 17:14:38 GMT + - Fri, 14 Oct 2022 15:23:44 GMT expires: - '-1' pragma: @@ -1794,14 +1903,10 @@ 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;14942,Microsoft.Compute/GetOperation30Min;29816 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29931 status: code: 200 message: OK @@ -1809,7 +1914,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1819,71 +1924,39 @@ 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.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/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/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/3/instanceView?api-version=2022-08-01 response: body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 04 Aug 2022 17:14:38 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;14941,Microsoft.Compute/GetOperation30Min;29815 - 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.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}" + 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-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-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: 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 + - Fri, 14 Oct 2022 15:23: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: @@ -1892,8 +1965,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;494,Microsoft.Compute/GetVMScaleSetVM30Min;2494,Microsoft.Compute/VMScaleSetVMViews3Min;4988 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -1911,39 +1986,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.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/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 + - Fri, 14 Oct 2022 15:23:46 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,10 +2016,8 @@ 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 @@ -1977,25 +2039,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.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: '' 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/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:14:40 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/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/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2006,9 +2070,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;235,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2992,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -2028,22 +2092,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.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/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/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:09 GMT + - Fri, 14 Oct 2022 15:24:17 GMT expires: - '-1' pragma: @@ -2060,7 +2124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29806 + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK @@ -2078,23 +2142,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.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/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/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:15:39 GMT + - Fri, 14 Oct 2022 15:24:47 GMT expires: - '-1' pragma: @@ -2111,7 +2175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29800 + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -2129,9 +2193,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.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/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/df884a6a-a08b-476b-a588-25f2e3e0aae1?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2141,7 +2205,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:15:39 GMT + - Fri, 14 Oct 2022 15:24:48 GMT expires: - '-1' pragma: @@ -2154,7 +2218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29799 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -2176,25 +2240,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.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: '' 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/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:15:40 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/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/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2205,7 +2271,7 @@ 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;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3003,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2227,14 +2293,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.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/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/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -2243,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Fri, 14 Oct 2022 15:25:18 GMT expires: - '-1' pragma: @@ -2260,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29790 + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -2278,9 +2344,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.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/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/fc6e7a20-dfcd-40ce-80e9-1f44723d4148?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2290,7 +2356,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Fri, 14 Oct 2022 15:25:18 GMT expires: - '-1' pragma: @@ -2303,7 +2369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29788 + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -2321,28 +2387,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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\": + \"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-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: - - '43' + - '2807' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:11 GMT + - Fri, 14 Oct 2022 15:25:19 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 +2455,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2492,Microsoft.Compute/VMScaleSetVMViews3Min;4992 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -2370,45 +2476,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.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/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 + - Fri, 14 Oct 2022 15:25:20 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,10 +2506,8 @@ 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 @@ -2442,25 +2529,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.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: '' 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/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:12 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/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/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2471,9 +2560,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;235,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2984,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -2493,23 +2582,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.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/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/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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: - - Thu, 04 Aug 2022 17:16:42 GMT + - Fri, 14 Oct 2022 15:25:50 GMT expires: - '-1' pragma: @@ -2526,7 +2615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29782 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29898 status: code: 200 message: OK @@ -2544,9 +2633,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.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/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/a5d80113-6003-44d2-b7ae-3aec93392654?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -2556,7 +2645,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:42 GMT + - Fri, 14 Oct 2022 15:25:50 GMT expires: - '-1' pragma: @@ -2569,7 +2658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29781 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -2587,50 +2676,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3526' + - '5376' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:43 GMT + - Fri, 14 Oct 2022 15:25:52 GMT expires: - '-1' pragma: @@ -2647,33 +2754,42 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2513 + - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2560 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": "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}, "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"}], "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 +2800,79 @@ interactions: Connection: - keep-alive Content-Length: - - '2415' + - '3782' 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.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 \ \"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\": \"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 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\": {\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\":\"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 },\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\": \"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/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/2b73d0ef-9378-43a2-976e-aba0ae465449?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3594' + - '5444' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:46 GMT + - Fri, 14 Oct 2022 15:25:56 GMT expires: - '-1' pragma: @@ -2755,7 +2889,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;145,Microsoft.Compute/CreateVMScaleSet30Min;744,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2777,14 +2911,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.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/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/2b73d0ef-9378-43a2-976e-aba0ae465449?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -2793,7 +2927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:56 GMT + - Fri, 14 Oct 2022 15:26:07 GMT expires: - '-1' pragma: @@ -2810,7 +2944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29775 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -2828,51 +2962,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3595' + - '5445' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:16:56 GMT + - Fri, 14 Oct 2022 15:26:07 GMT expires: - '-1' pragma: @@ -2889,7 +3041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;382,Microsoft.Compute/GetVMScaleSet30Min;2504 + - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2556 status: code: 200 message: OK @@ -2911,25 +3063,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.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: '' 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/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:16:57 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/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/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -2940,9 +3094,9 @@ 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;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: @@ -2962,14 +3116,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.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/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/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -2978,7 +3132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:17:27 GMT + - Fri, 14 Oct 2022 15:26:37 GMT expires: - '-1' pragma: @@ -2995,7 +3149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29771 + - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29890 status: code: 200 message: OK @@ -3013,9 +3167,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.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/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/dcb50831-7d49-4cf9-8d92-4e1be0499d7d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -3025,7 +3179,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:17:27 GMT + - Fri, 14 Oct 2022 15:26:37 GMT expires: - '-1' pragma: @@ -3038,7 +3192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29770 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -3056,28 +3210,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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-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 + \ \"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-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: 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 + - Fri, 14 Oct 2022 15:26:39 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 +3280,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;2491,Microsoft.Compute/VMScaleSetVMViews3Min;4998 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -3105,47 +3301,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.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.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-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 content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:17:28 GMT + - Fri, 14 Oct 2022 15:26:39 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 +3330,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 +3341,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.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: 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 + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3209,8 +3379,6 @@ interactions: - nosniff x-frame-options: - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3225,11 +3393,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.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: body: string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" @@ -3241,7 +3413,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:17:29 GMT + - Fri, 14 Oct 2022 15:26:39 GMT expires: - '-1' pragma: @@ -3258,6 +3430,8 @@ interactions: - nosniff x-frame-options: - deny + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3269,36 +3443,72 @@ 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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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-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 + \ \"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-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: 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 + - Fri, 14 Oct 2022 15:26: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: @@ -3307,10 +3517,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2490,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -3322,32 +3532,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - serial-console enable + - serial-console disable 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) + - 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.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.Storage/storageAccounts/cli000002?api-version=2022-05-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\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-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 content-length: - - '43' + - '1259' content-type: - - application/json; charset=UTF-8 + - application/json date: - - Thu, 04 Aug 2022 17:17:30 GMT + - Fri, 14 Oct 2022 15:26:40 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: @@ -3356,8 +3565,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny status: code: 200 message: OK @@ -3369,51 +3576,32 @@ 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.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/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: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: "{\n \"properties\": {\n \"disabled\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '1699' + - '42' content-type: - - application/json; charset=utf-8 + - application/json; charset=UTF-8 date: - - Thu, 04 Aug 2022 17:17:30 GMT + - Fri, 14 Oct 2022 15:26: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: @@ -3422,11 +3610,242 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2463,Microsoft.Compute/VMScaleSetVMViews3Min;4997 - x-ms-request-charge: - - '1' - status: + x-frame-options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - serial-console enable + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - 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: + 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: + - Fri, 14 Oct 2022 15:26:42 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: + - '1199' + 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.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/3/instanceView?api-version=2022-08-01 + response: + body: + 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-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 + \ \"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\": \"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-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-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 + \ \"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-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: + cache-control: + - no-cache + content-length: + - '3218' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:26:42 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;2489,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.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-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 + content-length: + - '1259' + content-type: + - application/json + date: + - Fri, 14 Oct 2022 15:26:43 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.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: + 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: + - Fri, 14 Oct 2022 15:26:43 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: @@ -3445,25 +3864,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.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/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/3/deallocate?api-version=2022-08-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/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:17:30 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/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/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -3474,7 +3895,7 @@ 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;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2994,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -3496,13 +3917,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.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/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/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -3511,7 +3932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:01 GMT + - Fri, 14 Oct 2022 15:27:13 GMT expires: - '-1' pragma: @@ -3528,7 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29765 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -3546,14 +3967,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.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/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/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -3562,7 +3983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Fri, 14 Oct 2022 15:27:43 GMT expires: - '-1' pragma: @@ -3579,7 +4000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29759 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -3597,9 +4018,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.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/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/287566c4-9f48-4f4b-9051-1714edef25dd?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -3609,7 +4030,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Fri, 14 Oct 2022 15:27:43 GMT expires: - '-1' pragma: @@ -3622,7 +4043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29758 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29871 status: code: 200 message: OK @@ -3640,28 +4061,41 @@ 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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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-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-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: cache-control: - no-cache content-length: - - '43' + - '1291' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:18:31 GMT + - Fri, 14 Oct 2022 15:27:44 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: @@ -3670,8 +4104,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;495,Microsoft.Compute/GetVMScaleSetVM30Min;2488,Microsoft.Compute/VMScaleSetVMViews3Min;4995 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -3689,41 +4125,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.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.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 \"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: '{"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 content-length: - - '1291' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:18:32 GMT + - Fri, 14 Oct 2022 15:27:44 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: @@ -3732,10 +4154,55 @@ interactions: - Accept-Encoding 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' + 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.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: + 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: + - Fri, 14 Oct 2022 15:27:44 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 @@ -3757,25 +4224,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.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: '' headers: + azure-asyncnotification: + - Enabled 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 + - 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: - - Thu, 04 Aug 2022 17:18:32 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/c86462cd-02d5-4754-8f50-ce258bd14d92?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: @@ -3786,9 +4255,9 @@ interactions: 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 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2979,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -3808,14 +4277,64 @@ 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.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/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/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:28: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/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29866 + 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.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/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 + response: + body: + 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 @@ -3824,7 +4343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:19:03 GMT + - Fri, 14 Oct 2022 15:28:45 GMT expires: - '-1' pragma: @@ -3841,7 +4360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29751 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -3859,9 +4378,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.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/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/06b0da8a-8c5b-46e9-97b9-b337e906b010?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -3871,7 +4390,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:03 GMT + - Fri, 14 Oct 2022 15:28:45 GMT expires: - '-1' pragma: @@ -3884,7 +4403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29749 + - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -3906,25 +4425,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.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: '' 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/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:03 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/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/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -3935,9 +4456,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;2979,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -3957,14 +4478,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.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/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/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -3973,7 +4494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:19:33 GMT + - Fri, 14 Oct 2022 15:29:17 GMT expires: - '-1' pragma: @@ -3990,7 +4511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29744 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29846 status: code: 200 message: OK @@ -4008,9 +4529,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.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/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/13ae8617-0817-42d9-b8fc-357ee7bc412d?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4020,7 +4541,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:33 GMT + - Fri, 14 Oct 2022 15:29:17 GMT expires: - '-1' pragma: @@ -4033,7 +4554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29743 + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -4051,28 +4572,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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-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 + \ \"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-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: 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 + - Fri, 14 Oct 2022 15:29:19 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 +4642,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;495,Microsoft.Compute/GetVMScaleSetVM30Min;2487,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -4100,47 +4663,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.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.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-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 content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:19:35 GMT + - Fri, 14 Oct 2022 15:29:19 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,10 +4692,55 @@ 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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss stop + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - 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: + 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: + - Fri, 14 Oct 2022 15:29:20 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 @@ -4174,25 +4762,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.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: '' 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/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:19:35 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/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/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4203,9 +4793,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;1186,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2985,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -4225,14 +4815,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.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/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/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -4241,7 +4831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:05 GMT + - Fri, 14 Oct 2022 15:29:50 GMT expires: - '-1' pragma: @@ -4258,7 +4848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29739 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29838 status: code: 200 message: OK @@ -4276,9 +4866,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.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/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/3e3890a8-9afc-4bd7-be91-bc0d9f16e4f0?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4288,7 +4878,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:05 GMT + - Fri, 14 Oct 2022 15:29:51 GMT expires: - '-1' pragma: @@ -4301,7 +4891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29738 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -4319,51 +4909,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3595' + - '5445' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:06 GMT + - Fri, 14 Oct 2022 15:29:51 GMT expires: - '-1' pragma: @@ -4380,32 +4988,41 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2487 + - Microsoft.Compute/GetVMScaleSet3Min;358,Microsoft.Compute/GetVMScaleSet30Min;2514 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": "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}, "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"}], "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 +5033,79 @@ interactions: Connection: - keep-alive Content-Length: - - '2358' + - '3725' 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.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 \ \"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\": \"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 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\": {\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\":\"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 },\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\": \"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/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/30c56bf9-3e40-4b43-ba6b-d402607e9915?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3595' + - '5445' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:08 GMT + - Fri, 14 Oct 2022 15:29:56 GMT expires: - '-1' pragma: @@ -4487,9 +5122,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;144,Microsoft.Compute/CreateVMScaleSet30Min;735,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -4509,14 +5144,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.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/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/30c56bf9-3e40-4b43-ba6b-d402607e9915?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -4525,7 +5160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:18 GMT + - Fri, 14 Oct 2022 15:30:06 GMT expires: - '-1' pragma: @@ -4542,7 +5177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29737 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -4560,51 +5195,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3596' + - '5446' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:18 GMT + - Fri, 14 Oct 2022 15:30:06 GMT expires: - '-1' pragma: @@ -4621,7 +5274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;379,Microsoft.Compute/GetVMScaleSet30Min;2483 + - Microsoft.Compute/GetVMScaleSet3Min;360,Microsoft.Compute/GetVMScaleSet30Min;2509 status: code: 200 message: OK @@ -4639,28 +5292,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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-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 + \ \"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-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: 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 + - Fri, 14 Oct 2022 15:30:07 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 +5362,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2486,Microsoft.Compute/VMScaleSetVMViews3Min;4993 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -4688,47 +5383,27 @@ 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.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.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-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 content-length: - - '1699' + - '1259' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 04 Aug 2022 17:20:20 GMT + - Fri, 14 Oct 2022 15:30:07 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: @@ -4737,10 +5412,55 @@ 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' + 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.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: + 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: + - Fri, 14 Oct 2022 15:30: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 status: code: 200 message: OK @@ -4762,25 +5482,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.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: '' 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/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:20 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/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/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4791,9 +5513,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;229,Microsoft.Compute/VMScaleSetActions30Min;1182,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2988,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -4813,14 +5535,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.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/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/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -4829,7 +5551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:50 GMT + - Fri, 14 Oct 2022 15:30:39 GMT expires: - '-1' pragma: @@ -4846,7 +5568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29732 + - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29827 status: code: 200 message: OK @@ -4864,9 +5586,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.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/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/6fa287ec-b1cf-4439-a805-b1fc36c972d3?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -4876,7 +5598,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:20:50 GMT + - Fri, 14 Oct 2022 15:30:39 GMT expires: - '-1' pragma: @@ -4889,7 +5611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29731 + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29826 status: code: 200 message: OK @@ -4907,28 +5629,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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\": + \"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-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: - - '43' + - '2781' content-type: - - application/json; charset=UTF-8 + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:51 GMT + - Fri, 14 Oct 2022 15:30: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: @@ -4937,8 +5697,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;2478,Microsoft.Compute/VMScaleSetVMViews3Min;4986 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -4950,46 +5712,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vmss update-instances + - vmss deallocate Connection: - keep-alive + Content-Length: + - '0' 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.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/3/deallocate?api-version=2022-08-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: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 - \ \"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}" + string: '' headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - 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: - - '1262' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 04 Aug 2022 17:20:51 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/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -4997,54 +5748,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;487,Microsoft.Compute/GetVMScaleSetVM30Min;2450,Microsoft.Compute/VMScaleSetVMViews3Min;4983 + - 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: - '1' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - vmss deallocate Connection: - keep-alive - Content-Length: - - '0' 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/virtualMachines/3/deallocate?api-version=2022-03-01 + - 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: '' + 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: - 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 cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:20:52 GMT + - Fri, 14 Oct 2022 15:31:10 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 pragma: - no-cache server: @@ -5052,17 +5798,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/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2234,Microsoft.Compute/VmssQueuedVMOperations;0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '1' + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29820 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5077,13 +5823,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.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/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/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -5092,7 +5838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:22 GMT + - Fri, 14 Oct 2022 15:31:40 GMT expires: - '-1' pragma: @@ -5109,7 +5855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29729 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29816 status: code: 200 message: OK @@ -5127,23 +5873,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.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/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/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Fri, 14 Oct 2022 15:32:10 GMT expires: - '-1' pragma: @@ -5160,7 +5905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29726 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29814 status: code: 200 message: OK @@ -5178,19 +5923,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.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/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/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 response: body: - string: '' + 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 content-length: - - '0' + - '184' + content-type: + - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Fri, 14 Oct 2022 15:32:41 GMT expires: - '-1' pragma: @@ -5200,10 +5949,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;14973,Microsoft.Compute/GetOperation30Min;29725 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29811 status: code: 200 message: OK @@ -5211,7 +5964,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5221,38 +5974,32 @@ 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.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.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/298bea43-d8c3-41f5-9ea6-fdefb592a94f?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-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:21:53 GMT + - Fri, 14 Oct 2022 15:32:41 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;14975,Microsoft.Compute/GetOperation30Min;29810 status: code: 200 message: OK @@ -5270,21 +6017,21 @@ 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.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/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/3/instanceView?api-version=2022-08-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 + 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-08-04T17:21:40.6465621+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-08-04T17:21:40.6621708+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: @@ -5295,7 +6042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:21:53 GMT + - Fri, 14 Oct 2022 15:32:41 GMT expires: - '-1' pragma: @@ -5312,7 +6059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;484,Microsoft.Compute/GetVMScaleSetVM30Min;2446,Microsoft.Compute/VMScaleSetVMViews3Min;4980 + - Microsoft.Compute/GetVMScaleSetVM3Min;483,Microsoft.Compute/GetVMScaleSetVM30Min;2470,Microsoft.Compute/VMScaleSetVMViews3Min;4983 x-ms-request-charge: - '1' status: @@ -5336,25 +6083,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.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: '' headers: + azure-asyncnotification: + - Enabled 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 + - 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: - - Thu, 04 Aug 2022 17:21:54 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/ce4de450-4935-456d-8c81-df3ff06533a9?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: @@ -5365,9 +6114,9 @@ interactions: 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 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1179,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2976,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-ms-request-charge: - '1' status: @@ -5387,14 +6136,64 @@ 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.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/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 + response: + body: + 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 + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Oct 2022 15:33:12 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;14978,Microsoft.Compute/GetOperation30Min;29806 + 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.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/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/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -5403,7 +6202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:24 GMT + - Fri, 14 Oct 2022 15:33:43 GMT expires: - '-1' pragma: @@ -5420,7 +6219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29720 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29804 status: code: 200 message: OK @@ -5438,9 +6237,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.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/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/3afa8c95-a423-4601-8aa6-2eed6aef7166?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -5450,7 +6249,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:22:24 GMT + - Fri, 14 Oct 2022 15:33:43 GMT expires: - '-1' pragma: @@ -5463,7 +6262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29718 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29803 status: code: 200 message: OK @@ -5481,51 +6280,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3596' + - '5446' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:26 GMT + - Fri, 14 Oct 2022 15:33:44 GMT expires: - '-1' pragma: @@ -5542,32 +6359,41 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2477 + - Microsoft.Compute/GetVMScaleSet3Min;396,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": "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}, "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"}], "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 +6404,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2357' + - '3724' 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.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 \ \"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\": \"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 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\": {\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\":\"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 },\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\": \"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/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/09c9bcf9-6244-4cc6-a6f2-21e58cb0b4e4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - - '3525' + - '5375' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:28 GMT + - Fri, 14 Oct 2022 15:33:49 GMT expires: - '-1' pragma: @@ -5648,9 +6492,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 +6514,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.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/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/09c9bcf9-6244-4cc6-a6f2-21e58cb0b4e4?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 @@ -5686,7 +6530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Fri, 14 Oct 2022 15:33:59 GMT expires: - '-1' pragma: @@ -5703,7 +6547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29715 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29802 status: code: 200 message: OK @@ -5721,50 +6565,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.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 \"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\": \"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 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\": {\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\":\"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 },\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\": \"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: - - '3526' + - '5376' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Fri, 14 Oct 2022 15:33:59 GMT expires: - '-1' pragma: @@ -5781,56 +6643,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;393,Microsoft.Compute/GetVMScaleSet30Min;2499 status: code: 200 message: OK @@ -5848,38 +6661,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.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/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/3/instanceView?api-version=2022-08-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\": + 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-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-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 + \ \"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\": \"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-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-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\": + \"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-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: - - '1261' + - '2781' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:22:38 GMT + - Fri, 14 Oct 2022 15:34:00 GMT expires: - '-1' pragma: @@ -5896,7 +6730,7 @@ 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;496,Microsoft.Compute/GetVMScaleSetVM30Min;2469,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '1' status: @@ -5920,25 +6754,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.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: '' 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/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Aug 2022 17:22:39 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/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/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 pragma: - no-cache server: @@ -5949,9 +6785,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;1178,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2957,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - '1' status: @@ -5971,23 +6807,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.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/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/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&api-version=2022-08-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-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 content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Aug 2022 17:23:09 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: @@ -6004,7 +6840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29713 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29799 status: code: 200 message: OK @@ -6022,9 +6858,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.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/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/13eb1b46-5d20-4eff-8562-a7b9d15c3721?p=c49d4c35-fce9-4992-b8a6-5d4f3bc79110&monitor=true&api-version=2022-08-01 response: body: string: '' @@ -6034,7 +6870,7 @@ interactions: content-length: - '0' date: - - Thu, 04 Aug 2022 17:23:09 GMT + - Fri, 14 Oct 2022 15:34:32 GMT expires: - '-1' pragma: @@ -6047,7 +6883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29712 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29798 status: code: 200 message: OK @@ -6065,28 +6901,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.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.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/3/instanceView?api-version=2022-08-01 response: body: - string: "{\n \"properties\": {\n \"disabled\": false\n }\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-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 + \ \"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\": \"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-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\": + \"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-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: 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 + - Fri, 14 Oct 2022 15:34:32 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 +6969,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - deny + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2468,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + x-ms-request-charge: + - '1' status: code: 200 message: OK @@ -6114,45 +6990,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.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/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 + - Fri, 14 Oct 2022 15:34: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: @@ -6161,10 +7020,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..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.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.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: - - Thu, 04 Aug 2022 17:10:07 GMT + - Fri, 14 Oct 2022 15:18:05 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.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: - - Thu, 04 Aug 2022 17:10:07 GMT + - Fri, 14 Oct 2022 15:18:04 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 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..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 @@ -36,15 +36,20 @@ 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 + + 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: base_url = 'https://management.azure.com' + self._config = MicrosoftSerialConsoleClientConfiguration(credential, subscription_id, **kwargs) self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) 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