From 7db0d0688ee3755733b3354c21543c1398e00b39 Mon Sep 17 00:00:00 2001 From: adrianabedon <56134101+adrianabedon@users.noreply.github.com> Date: Tue, 3 Aug 2021 18:42:14 -0700 Subject: [PATCH] [SerialConsole] Change to require custom boot diagnostics (#3737) * Added custom boot diagnostics check * Updated test recordings --- src/serial-console/HISTORY.rst | 6 +- .../azext_serialconsole/custom.py | 28 +- .../recordings/test_check_resource_VM.yaml | 1367 ++++++---- .../recordings/test_check_resource_VMSS.yaml | 2318 +++++++++++------ .../recordings/test_enable_disable.yaml | 16 +- .../latest/test_serialconsole_scenario.py | 19 +- src/serial-console/setup.py | 2 +- 7 files changed, 2351 insertions(+), 1405 deletions(-) diff --git a/src/serial-console/HISTORY.rst b/src/serial-console/HISTORY.rst index 8c34bccfff8..267601a795b 100644 --- a/src/serial-console/HISTORY.rst +++ b/src/serial-console/HISTORY.rst @@ -1,8 +1,10 @@ -.. :changelog: - Release History =============== +0.1.1 +++++++ +* Change to require custom boot diagnostics + 0.1.0 ++++++ * Initial release. \ No newline at end of file diff --git a/src/serial-console/azext_serialconsole/custom.py b/src/serial-console/azext_serialconsole/custom.py index c225b61b2a8..1c6ee3d0202 100644 --- a/src/serial-console/azext_serialconsole/custom.py +++ b/src/serial-console/azext_serialconsole/custom.py @@ -597,14 +597,14 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): raise AzureConnectionError( error_message, recommendation=recommendation) - if result.boot_diagnostics is None: - error_message = ("Azure Serial Console requires boot diagnostics to be enabled.") + if result.boot_diagnostics is None or result.boot_diagnostics.serial_console_log_blob_uri is None: + error_message = ("Azure Serial Console requires boot diagnostics to be enabled. Additionally, " + "Serial Console requires a custom boot diagnostics storage account to be " + "used, and is not yet fully compatible with managed boot diagnostics storage accounts.") 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 *".') + '\\"True\\",\\"StorageUri\\":\\"https://mystorageacct.blob.core.windows.net/\\"}}""' + 'to enable boot diagnostics.') raise AzureConnectionError( error_message, recommendation=recommendation) else: @@ -640,13 +640,21 @@ def check_resource(cli_ctx, resource_group_name, vm_vmss_name, vmss_instanceid): raise AzureConnectionError( error_message, recommendation=recommendation) + recommendation = ('Use "az vm boot-diagnostics enable --name MyVM --resource-group MyResourceGroup ' + '--storage https://mystor.blob.core.windows.net/" to enable boot diagnostics and ' + 'make sure to specify a storage account with the --storage parameter.') + 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/".') + error_message = ("Azure Serial Console requires boot diagnostics to be enabled. Additionally, " + "Serial Console requires a custom boot diagnostics storage account to be " + "used, and is not yet fully compatible with managed boot diagnostics storage accounts.") + raise AzureConnectionError( + error_message, recommendation=recommendation) + if result.diagnostics_profile.boot_diagnostics.storage_uri is None: + error_message = ("Serial Console requires a custom boot diagnostics storage account to be used, " + "and is not yet fully compatible with managed boot diagnostics storage accounts.") raise AzureConnectionError( error_message, recommendation=recommendation) 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 4c4d71cd079..6063c8c283f 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,22 +11,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:37:44 GMT + - Mon, 02 Aug 2021 18:41:28 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:45 GMT + - Mon, 02 Aug 2021 18:41:29 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:45 GMT + - Mon, 02 Aug 2021 18:41:29 GMT expires: - '-1' pragma: @@ -142,22 +142,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:37:44 GMT + - Mon, 02 Aug 2021 18:41:29 GMT expires: - '-1' pragma: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -205,7 +205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:45 GMT + - Mon, 02 Aug 2021 18:41:29 GMT expires: - '-1' pragma: @@ -285,13 +285,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:46 GMT + - Mon, 02 Aug 2021 18:41:30 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Wed, 07 Jul 2021 21:42:46 GMT + - Mon, 02 Aug 2021 18:46:30 GMT source-age: - - '0' + - '161' strict-transport-security: - max-age=31536000 vary: @@ -305,15 +305,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - f32aec5bec85ebf98b7eb3e7ebea8cf25d419d05 + - 7f511b3d0a801139a64fdde302cd2e54c20d7a4a x-frame-options: - deny x-github-request-id: - - ABBE:0CCC:316D69:7C8907:60E5A579 + - 539E:1154:21BDFA:2AF64C:61083A82 x-served-by: - - cache-sea4468-SEA + - cache-sea4470-SEA x-timer: - - S1625693866.373760,VS0,VE1 + - S1627929690.046658,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -333,7 +333,7 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-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 response: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:45 GMT + - Mon, 02 Aug 2021 18:41:29 GMT expires: - '-1' pragma: @@ -411,23 +411,23 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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_yGVVs680OiJaXmb0skaUh5XHGaArZd1E","name":"vm_deploy_yGVVs680OiJaXmb0skaUh5XHGaArZd1E","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13770419332165188274","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-07T21:37:47.2395501Z","duration":"PT0.5927537S","correlationId":"86d7ec4d-9362-41e8-8fac-c922dc83d30e","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_HWp3w8XVSAlBnJhWdLBT3mnS7eIBZ2bx","name":"vm_deploy_HWp3w8XVSAlBnJhWdLBT3mnS7eIBZ2bx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2215272234800469796","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-08-02T18:41:30.8226866Z","duration":"PT0.4301859S","correlationId":"0b3dc81b-76ec-4f24-80f3-fc2c8c19e015","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_yGVVs680OiJaXmb0skaUh5XHGaArZd1E/operationStatuses/08585759130188308424?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_HWp3w8XVSAlBnJhWdLBT3mnS7eIBZ2bx/operationStatuses/08585736771950851392?api-version=2021-04-01 cache-control: - no-cache content-length: - - '3000' + - '2999' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:37:46 GMT + - Mon, 02 Aug 2021 18:41:30 GMT expires: - '-1' pragma: @@ -455,9 +455,51 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585736771950851392?api-version=2021-04-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image -l --generate-ssh-keys + User-Agent: + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585759130188308424?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/08585736771950851392?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -469,7 +511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:16 GMT + - Mon, 02 Aug 2021 18:42:30 GMT expires: - '-1' pragma: @@ -497,21 +539,21 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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_yGVVs680OiJaXmb0skaUh5XHGaArZd1E","name":"vm_deploy_yGVVs680OiJaXmb0skaUh5XHGaArZd1E","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13770419332165188274","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-07T21:38:15.8634946Z","duration":"PT29.2166982S","correlationId":"86d7ec4d-9362-41e8-8fac-c922dc83d30e","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_HWp3w8XVSAlBnJhWdLBT3mnS7eIBZ2bx","name":"vm_deploy_HWp3w8XVSAlBnJhWdLBT3mnS7eIBZ2bx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2215272234800469796","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-08-02T18:42:19.3573013Z","duration":"PT48.9648006S","correlationId":"0b3dc81b-76ec-4f24-80f3-fc2c8c19e015","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"cli000003VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"cli000003PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli000003VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli000003"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4170' + - '4169' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:16 GMT + - Mon, 02 Aug 2021 18:42:30 GMT expires: - '-1' pragma: @@ -539,7 +581,7 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -547,16 +589,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -569,21 +611,21 @@ interactions: \ \"assessmentMode\": \"ImageDefault\"\r\n }\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 \"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\": \"2021-07-07T21:38:17+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\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.3.1.1\",\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\": + \"2021-08-02T18:42:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:37:59.34167+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:41:44.1299903+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\": \"2021-07-07T21:38:15.138811+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:42:14.9115826+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 }\r\n}" @@ -591,11 +633,11 @@ interactions: cache-control: - no-cache content-length: - - '4051' + - '4171' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:31 GMT expires: - '-1' pragma: @@ -612,7 +654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31933 + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31981 status: code: 200 message: OK @@ -630,18 +672,18 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-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 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/\\\"2354d280-2cb6-4c1e-81c3-00ee0054454a\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1fd4caaf-62c1-4880-8bde-9bb3ccd4bd97\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3e3b2edc-426c-4475-b580-2c68d37fcaa8\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"fb2d0967-e22b-4ee0-85da-76877b3f189f\",\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/\\\"2354d280-2cb6-4c1e-81c3-00ee0054454a\\\"\",\r\n + \ \"etag\": \"W/\\\"1fd4caaf-62c1-4880-8bde-9bb3ccd4bd97\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -650,8 +692,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"rg3xcmgxsyuu1ppmfgcihspsme.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-78-C8-3A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"feo5c3cmdttefdboefr5yvzevg.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C5-41-01\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkSecurityGroups/cli000003NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -665,9 +707,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:30 GMT etag: - - W/"2354d280-2cb6-4c1e-81c3-00ee0054454a" + - W/"1fd4caaf-62c1-4880-8bde-9bb3ccd4bd97" expires: - '-1' pragma: @@ -684,7 +726,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 152cee44-91b6-4ec6-b97d-e012cbde3bd4 + - 9acfc331-82c5-4954-86b6-0106ffc0ccfa status: code: 200 message: OK @@ -702,17 +744,17 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-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 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/\\\"bd6f61a3-f55a-4cc3-80e1-5051e3c2b7bf\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b3925682-65ea-49df-8e8e-9fb2e9c141db\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"149dfa6a-a335-417b-b9cc-23ee95b2f6b0\",\r\n - \ \"ipAddress\": \"52.183.118.109\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"19247733-7804-4029-9622-e32fc5f2f5ef\",\r\n + \ \"ipAddress\": \"40.65.123.6\",\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}" @@ -720,13 +762,13 @@ interactions: cache-control: - no-cache content-length: - - '1083' + - '1080' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:30 GMT etag: - - W/"bd6f61a3-f55a-4cc3-80e1-5051e3c2b7bf" + - W/"b3925682-65ea-49df-8e8e-9fb2e9c141db" expires: - '-1' pragma: @@ -743,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9499de1c-bf9b-4806-8396-27c9294a2a9b + - 2a2f5039-07ce-465a-98b0-cdd1e7f5627b status: code: 200 message: OK @@ -761,22 +803,22 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:30 GMT expires: - '-1' pragma: @@ -810,7 +852,7 @@ interactions: ParameterSetName: - -g -n --image -l --generate-ssh-keys User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -818,16 +860,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -840,21 +882,21 @@ interactions: \ \"assessmentMode\": \"ImageDefault\"\r\n }\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 \"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\": \"2021-07-07T21:38:18+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\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.3.1.1\",\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\": + \"2021-08-02T18:42:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:37:59.34167+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:41:44.1299903+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\": \"2021-07-07T21:38:15.138811+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:42:14.9115826+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 }\r\n}" @@ -862,11 +904,11 @@ interactions: cache-control: - no-cache content-length: - - '4051' + - '4171' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:30 GMT expires: - '-1' pragma: @@ -883,7 +925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31932 + - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31980 status: code: 200 message: OK @@ -901,7 +943,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -909,16 +951,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -936,11 +978,11 @@ interactions: cache-control: - no-cache content-length: - - '2830' + - '2836' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:17 GMT + - Mon, 02 Aug 2021 18:42:31 GMT expires: - '-1' pragma: @@ -957,16 +999,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31930 + - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31979 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "storageAccountType": "Premium_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "useraabedon", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", @@ -985,13 +1027,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1880' + - '1886' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -999,16 +1041,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -1027,15 +1069,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/21e9a0ad-c02f-44b9-9780-4121a6d52b1a?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9dce68d6-77f3-4ca9-b10e-974af5bd0eb5?api-version=2021-03-01 cache-control: - no-cache content-length: - - '2928' + - '2934' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:18 GMT + - Mon, 02 Aug 2021 18:42:33 GMT expires: - '-1' pragma: @@ -1052,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193 + - Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1072,14 +1114,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/21e9a0ad-c02f-44b9-9780-4121a6d52b1a?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9dce68d6-77f3-4ca9-b10e-974af5bd0eb5?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:38:18.6386809+00:00\",\r\n \"endTime\": - \"2021-07-07T21:38:28.4200001+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"21e9a0ad-c02f-44b9-9780-4121a6d52b1a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:42:32.8494743+00:00\",\r\n \"endTime\": + \"2021-08-02T18:42:37.0056469+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9dce68d6-77f3-4ca9-b10e-974af5bd0eb5\"\r\n}" headers: cache-control: - no-cache @@ -1088,7 +1130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:48 GMT + - Mon, 02 Aug 2021 18:43:02 GMT expires: - '-1' pragma: @@ -1105,7 +1147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29845 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -1123,7 +1165,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1131,16 +1173,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -1160,11 +1202,11 @@ interactions: cache-control: - no-cache content-length: - - '2929' + - '2935' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:48 GMT + - Mon, 02 Aug 2021 18:43:02 GMT expires: - '-1' pragma: @@ -1181,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31927 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31972 status: code: 200 message: OK @@ -1199,22 +1241,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:38:48 GMT + - Mon, 02 Aug 2021 18:43:04 GMT expires: - '-1' pragma: @@ -1248,7 +1290,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1256,16 +1298,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -1285,17 +1327,17 @@ interactions: \ \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-07T21:38:26+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:42:41+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:38:19.2011715+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:42:33.3493284+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\": \"2021-07-07T21:38:28.4200001+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:42:36.9900848+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 }\r\n}" @@ -1303,11 +1345,11 @@ interactions: cache-control: - no-cache content-length: - - '4291' + - '4300' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:48 GMT + - Mon, 02 Aug 2021 18:43:04 GMT expires: - '-1' pragma: @@ -1324,7 +1366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31926 + - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31971 status: code: 200 message: OK @@ -1344,7 +1386,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1352,17 +1394,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8fc77fc8-9824-4e13-b302-6252ce98573b?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97c3d5a9-e314-4882-a54e-15fb81992a2f?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Jul 2021 21:38:48 GMT + - Mon, 02 Aug 2021 18:43:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8fc77fc8-9824-4e13-b302-6252ce98573b?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97c3d5a9-e314-4882-a54e-15fb81992a2f?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1373,7 +1415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1196 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1393,13 +1435,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8fc77fc8-9824-4e13-b302-6252ce98573b?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97c3d5a9-e314-4882-a54e-15fb81992a2f?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:38:49.8889176+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8fc77fc8-9824-4e13-b302-6252ce98573b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:04.7717757+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"97c3d5a9-e314-4882-a54e-15fb81992a2f\"\r\n}" headers: cache-control: - no-cache @@ -1408,7 +1450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:38:59 GMT + - Mon, 02 Aug 2021 18:43:14 GMT expires: - '-1' pragma: @@ -1425,7 +1467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1443,14 +1485,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8fc77fc8-9824-4e13-b302-6252ce98573b?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97c3d5a9-e314-4882-a54e-15fb81992a2f?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:38:49.8889176+00:00\",\r\n \"endTime\": - \"2021-07-07T21:39:17.5921974+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8fc77fc8-9824-4e13-b302-6252ce98573b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:04.7717757+00:00\",\r\n \"endTime\": + \"2021-08-02T18:43:32.8814511+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"97c3d5a9-e314-4882-a54e-15fb81992a2f\"\r\n}" headers: cache-control: - no-cache @@ -1459,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:39:35 GMT + - Mon, 02 Aug 2021 18:43:50 GMT expires: - '-1' pragma: @@ -1476,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -1494,9 +1536,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8fc77fc8-9824-4e13-b302-6252ce98573b?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97c3d5a9-e314-4882-a54e-15fb81992a2f?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -1506,7 +1548,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Jul 2021 21:39:35 GMT + - Mon, 02 Aug 2021 18:43:50 GMT expires: - '-1' pragma: @@ -1519,7 +1561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975 status: code: 200 message: OK @@ -1537,22 +1579,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:39:35 GMT + - Mon, 02 Aug 2021 18:43:50 GMT expires: - '-1' pragma: @@ -1586,7 +1628,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1594,15 +1636,15 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"useraabedon\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": @@ -1617,15 +1659,15 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n \"statuses\": + \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:39:15.5140408+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:43:30.818875+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\": \"2021-07-07T21:39:15.5297015+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:43:30.8345306+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 }\r\n}" @@ -1633,11 +1675,11 @@ interactions: cache-control: - no-cache content-length: - - '3735' + - '3743' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:39:35 GMT + - Mon, 02 Aug 2021 18:43:51 GMT expires: - '-1' pragma: @@ -1654,7 +1696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31917 + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31960 status: code: 200 message: OK @@ -1674,7 +1716,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1682,17 +1724,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6519f7ba-068f-4e9b-92e3-4ef9d358e70b?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Jul 2021 21:39:36 GMT + - Mon, 02 Aug 2021 18:43:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6519f7ba-068f-4e9b-92e3-4ef9d358e70b?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1703,9 +1745,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1723,13 +1765,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6519f7ba-068f-4e9b-92e3-4ef9d358e70b?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:39:36.6391987+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c93356fb-9f5f-4578-81a9-19af95738af8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:52.1159951+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6519f7ba-068f-4e9b-92e3-4ef9d358e70b\"\r\n}" headers: cache-control: - no-cache @@ -1738,7 +1780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:39:46 GMT + - Mon, 02 Aug 2021 18:44:02 GMT expires: - '-1' pragma: @@ -1755,7 +1797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29833 + - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK @@ -1773,73 +1815,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6519f7ba-068f-4e9b-92e3-4ef9d358e70b?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:39:36.6391987+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c93356fb-9f5f-4578-81a9-19af95738af8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:52.1159951+00:00\",\r\n \"endTime\": + \"2021-08-02T18:44:07.709847+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6519f7ba-068f-4e9b-92e3-4ef9d358e70b\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Jul 2021 21:39:55 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;14979,Microsoft.Compute/GetOperation30Min;29831 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm start - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?api-version=2021-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-07-07T21:39:36.6391987+00:00\",\r\n \"endTime\": - \"2021-07-07T21:39:55.8112154+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c93356fb-9f5f-4578-81a9-19af95738af8\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:40:25 GMT + - Mon, 02 Aug 2021 18:44:11 GMT expires: - '-1' pragma: @@ -1856,7 +1848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29851 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969 status: code: 200 message: OK @@ -1874,9 +1866,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c93356fb-9f5f-4578-81a9-19af95738af8?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6519f7ba-068f-4e9b-92e3-4ef9d358e70b?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -1886,7 +1878,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Jul 2021 21:40:25 GMT + - Mon, 02 Aug 2021 18:44:11 GMT expires: - '-1' pragma: @@ -1899,7 +1891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968 status: code: 200 message: OK @@ -1919,7 +1911,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1927,17 +1919,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97840bb9-abec-4a69-a182-e52b239e6bb5?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e9a4ecd-d9f2-477e-8a56-bdb32a7d6e14?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Jul 2021 21:40:25 GMT + - Mon, 02 Aug 2021 18:44:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97840bb9-abec-4a69-a182-e52b239e6bb5?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e9a4ecd-d9f2-477e-8a56-bdb32a7d6e14?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1948,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1194 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1968,23 +1960,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97840bb9-abec-4a69-a182-e52b239e6bb5?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e9a4ecd-d9f2-477e-8a56-bdb32a7d6e14?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:40:26.1082916+00:00\",\r\n \"endTime\": - \"2021-07-07T21:40:33.155202+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"97840bb9-abec-4a69-a182-e52b239e6bb5\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:44:11.8973946+00:00\",\r\n \"endTime\": + \"2021-08-02T18:44:20.8036861+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7e9a4ecd-d9f2-477e-8a56-bdb32a7d6e14\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:40:56 GMT + - Mon, 02 Aug 2021 18:44:41 GMT expires: - '-1' pragma: @@ -2001,7 +1993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29958 status: code: 200 message: OK @@ -2019,9 +2011,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/97840bb9-abec-4a69-a182-e52b239e6bb5?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7e9a4ecd-d9f2-477e-8a56-bdb32a7d6e14?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -2031,7 +2023,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Jul 2021 21:40:56 GMT + - Mon, 02 Aug 2021 18:44:41 GMT expires: - '-1' pragma: @@ -2044,7 +2036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29957 status: code: 200 message: OK @@ -2062,22 +2054,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:40:56 GMT + - Mon, 02 Aug 2021 18:44:42 GMT expires: - '-1' pragma: @@ -2111,7 +2103,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2119,16 +2111,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2143,22 +2135,21 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-07T21:40:11+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\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\": + \"2021-08-02T18:44:43+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:39:41.373608+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:43:54.9128663+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\": \"2021-07-07T21:40:33.1396008+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:44:20.7881159+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 }\r\n}" @@ -2166,11 +2157,11 @@ interactions: cache-control: - no-cache content-length: - - '4290' + - '4192' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:40:56 GMT + - Mon, 02 Aug 2021 18:44:42 GMT expires: - '-1' pragma: @@ -2187,7 +2178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31917 + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31955 status: code: 200 message: OK @@ -2205,7 +2196,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2213,16 +2204,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2242,11 +2233,11 @@ interactions: cache-control: - no-cache content-length: - - '2929' + - '2935' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:40:56 GMT + - Mon, 02 Aug 2021 18:44:43 GMT expires: - '-1' pragma: @@ -2263,16 +2254,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31916 + - Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31954 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "storageAccountType": "Premium_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "useraabedon", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", @@ -2291,13 +2282,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1881' + - '1887' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2305,16 +2296,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2334,15 +2325,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5fb7b8f3-6c5b-4d23-ba84-3a60118f2226?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cbffa323-cd7f-4d1b-8d83-496373cdef66?api-version=2021-03-01 cache-control: - no-cache content-length: - - '2929' + - '2935' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:40:57 GMT + - Mon, 02 Aug 2021 18:44:44 GMT expires: - '-1' pragma: @@ -2359,9 +2350,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1192 + - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2379,23 +2370,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5fb7b8f3-6c5b-4d23-ba84-3a60118f2226?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cbffa323-cd7f-4d1b-8d83-496373cdef66?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:40:57.4522282+00:00\",\r\n \"endTime\": - \"2021-07-07T21:40:59.6710432+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5fb7b8f3-6c5b-4d23-ba84-3a60118f2226\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:44:44.038219+00:00\",\r\n \"endTime\": + \"2021-08-02T18:44:45.866382+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cbffa323-cd7f-4d1b-8d83-496373cdef66\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '182' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:26 GMT + - Mon, 02 Aug 2021 18:45:14 GMT expires: - '-1' pragma: @@ -2412,7 +2403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29947 status: code: 200 message: OK @@ -2430,7 +2421,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2438,16 +2429,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2467,11 +2458,11 @@ interactions: cache-control: - no-cache content-length: - - '2930' + - '2936' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:26 GMT + - Mon, 02 Aug 2021 18:45:14 GMT expires: - '-1' pragma: @@ -2488,7 +2479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31911 + - Microsoft.Compute/LowCostGet3Min;3969,Microsoft.Compute/LowCostGet30Min;31951 status: code: 200 message: OK @@ -2506,22 +2497,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:41:27 GMT + - Mon, 02 Aug 2021 18:45:14 GMT expires: - '-1' pragma: @@ -2555,7 +2546,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2563,16 +2554,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2587,21 +2578,20 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-07T21:40:11+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\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\": + \"2021-08-02T18:45:15+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:40:57.9678985+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:44:44.4757314+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\": \"2021-07-07T21:40:59.6554671+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:44:45.866382+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 }\r\n}" @@ -2609,11 +2599,11 @@ interactions: cache-control: - no-cache content-length: - - '4262' + - '4162' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:28 GMT + - Mon, 02 Aug 2021 18:45:15 GMT expires: - '-1' pragma: @@ -2630,7 +2620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31910 + - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31950 status: code: 200 message: OK @@ -2650,7 +2640,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2658,17 +2648,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8e353ef4-1658-4947-82b6-98796c2b19a6?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d34c3f36-da7f-47b8-953b-b125c85245c8?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Jul 2021 21:41:28 GMT + - Mon, 02 Aug 2021 18:45:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8e353ef4-1658-4947-82b6-98796c2b19a6?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d34c3f36-da7f-47b8-953b-b125c85245c8?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -2679,7 +2669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1193 + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2699,23 +2689,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8e353ef4-1658-4947-82b6-98796c2b19a6?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d34c3f36-da7f-47b8-953b-b125c85245c8?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:41:28.8431363+00:00\",\r\n \"endTime\": - \"2021-07-07T21:41:33.9056432+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8e353ef4-1658-4947-82b6-98796c2b19a6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:45:15.7416024+00:00\",\r\n \"endTime\": + \"2021-08-02T18:45:22.616658+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d34c3f36-da7f-47b8-953b-b125c85245c8\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:38 GMT + - Mon, 02 Aug 2021 18:45:25 GMT expires: - '-1' pragma: @@ -2732,7 +2722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29833 + - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29945 status: code: 200 message: OK @@ -2750,9 +2740,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8e353ef4-1658-4947-82b6-98796c2b19a6?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d34c3f36-da7f-47b8-953b-b125c85245c8?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -2762,7 +2752,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Jul 2021 21:41:38 GMT + - Mon, 02 Aug 2021 18:45:25 GMT expires: - '-1' pragma: @@ -2775,7 +2765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29832 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29944 status: code: 200 message: OK @@ -2793,22 +2783,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:41:39 GMT + - Mon, 02 Aug 2021 18:45:26 GMT expires: - '-1' pragma: @@ -2842,7 +2832,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2850,16 +2840,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2874,21 +2864,20 @@ interactions: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/networkInterfaces/cli000003VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"instanceView\": {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": - \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n - \ \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-07T21:40:11+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\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\": + \"2021-08-02T18:45:26+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:40:57.9678985+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:44:44.4757314+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\": \"2021-07-07T21:41:33.9056432+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:45:22.6010385+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 }\r\n}" @@ -2896,11 +2885,11 @@ interactions: cache-control: - no-cache content-length: - - '4262' + - '4163' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:38 GMT + - Mon, 02 Aug 2021 18:45:26 GMT expires: - '-1' pragma: @@ -2917,7 +2906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31907 + - Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31948 status: code: 200 message: OK @@ -2935,7 +2924,7 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2943,16 +2932,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -2972,11 +2961,11 @@ interactions: cache-control: - no-cache content-length: - - '2930' + - '2936' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:38 GMT + - Mon, 02 Aug 2021 18:45:25 GMT expires: - '-1' pragma: @@ -2993,7 +2982,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31906 + - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31947 status: code: 200 message: OK @@ -3011,21 +3000,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-04-01 response: body: - string: '{"value":[{"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":[],"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_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":[],"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/davidli2/providers/Microsoft.Storage/storageAccounts/davidli2diag","name":"davidli2diag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-13T18:58:09.7400040Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-13T18:58:09.7400040Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-13T18:58:09.6618549Z","primaryEndpoints":{"blob":"https://davidli2diag.blob.core.windows.net/","queue":"https://davidli2diag.queue.core.windows.net/","table":"https://davidli2diag.table.core.windows.net/","file":"https://davidli2diag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"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":[],"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":[],"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":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"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":[],"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":[],"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_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-scaleset2_group/providers/Microsoft.Storage/storageAccounts/craigwvmss2","name":"craigwvmss2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-06T20:19:17.6441402Z","key2":"2021-05-06T20:19:17.6441402Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T20:19:17.6441402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T20:19:17.6441402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-06T20:19:17.5347608Z","primaryEndpoints":{"blob":"https://craigwvmss2.blob.core.windows.net/","queue":"https://craigwvmss2.queue.core.windows.net/","table":"https://craigwvmss2.table.core.windows.net/","file":"https://craigwvmss2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eastus2-bootdiagfirewall_group/providers/Microsoft.Storage/storageAccounts/eastus2bootdiagfirewall","name":"eastus2bootdiagfirewall","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eastus2-bootdiagfirewall_group/providers/Microsoft.Network/virtualNetworks/eastus2-bootdiagfirewall_group-vnet/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"40.91.126.232","action":"Allow"},{"value":"52.247.38.231","action":"Allow"},{"value":"67.197.218.105","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-01T16:04:42.6507688Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-01T16:04:42.6507688Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-01T16:04:42.5571491Z","primaryEndpoints":{"blob":"https://eastus2bootdiagfirewall.blob.core.windows.net/","queue":"https://eastus2bootdiagfirewall.queue.core.windows.net/","table":"https://eastus2bootdiagfirewall.table.core.windows.net/","file":"https://eastus2bootdiagfirewall.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":[],"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus2/providers/Microsoft.Storage/storageAccounts/scrunnersisx4cox63rpm","name":"scrunnersisx4cox63rpm","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-16T18:41:45.7023674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-16T18:41:45.7023674Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-11-16T18:41:45.6085609Z","primaryEndpoints":{"blob":"https://scrunnersisx4cox63rpm.blob.core.windows.net/","queue":"https://scrunnersisx4cox63rpm.queue.core.windows.net/","table":"https://scrunnersisx4cox63rpm.table.core.windows.net/","file":"https://scrunnersisx4cox63rpm.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/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"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":"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":[],"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":"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":[],"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westeurope/providers/Microsoft.Storage/storageAccounts/craigwubuntu1","name":"craigwubuntu1","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T17:09:08.0955260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T17:09:08.0955260Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-27T17:09:08.0330220Z","primaryEndpoints":{"blob":"https://craigwubuntu1.blob.core.windows.net/","queue":"https://craigwubuntu1.queue.core.windows.net/","table":"https://craigwubuntu1.table.core.windows.net/","file":"https://craigwubuntu1.file.core.windows.net/"},"primaryLocation":"westeurope","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":"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":[],"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":[],"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_serialconsole000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-07T21:37:25.8668137Z","key2":"2021-07-07T21:37:25.8668137Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:25.8668137Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:25.8668137Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-07T21:37:25.8043462Z","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_serialconsolekeqxnqvpb5nk3ioubqx2mboruuup2udh7noysbjstmo44mwdpof3s/providers/Microsoft.Storage/storageAccounts/clicmlw74i5bocqmquqlfihg","name":"clicmlw74i5bocqmquqlfihg","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-07T21:37:26.5543149Z","key2":"2021-07-07T21:37:26.5543149Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:26.5543149Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:26.5543149Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-07T21:37:26.4918159Z","primaryEndpoints":{"blob":"https://clicmlw74i5bocqmquqlfihg.blob.core.windows.net/","queue":"https://clicmlw74i5bocqmquqlfihg.queue.core.windows.net/","table":"https://clicmlw74i5bocqmquqlfihg.table.core.windows.net/","file":"https://clicmlw74i5bocqmquqlfihg.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_serialconsolejo7rqwkkpscvutdavpu6o7btpqy2u74eyrjtrjrqldkkezxkd6oaf/providers/Microsoft.Storage/storageAccounts/clieekxh4h4r4abkskt5ki56","name":"clieekxh4h4r4abkskt5ki56","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-07T21:37:25.8824435Z","key2":"2021-07-07T21:37:25.8824435Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:25.8824435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:37:25.8824435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-07T21:37:25.8199469Z","primaryEndpoints":{"blob":"https://clieekxh4h4r4abkskt5ki56.blob.core.windows.net/","queue":"https://clieekxh4h4r4abkskt5ki56.queue.core.windows.net/","table":"https://clieekxh4h4r4abkskt5ki56.table.core.windows.net/","file":"https://clieekxh4h4r4abkskt5ki56.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_serialconsoleczaq7w35hrmhsuqkzok7gw7bv3ve7tyhexzmtzca62lklro34oskb/providers/Microsoft.Storage/storageAccounts/cliepavefijbrxgz2ic23rib","name":"cliepavefijbrxgz2ic23rib","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-07T21:40:41.8616087Z","key2":"2021-07-07T21:40:41.8616087Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:40:41.8771843Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-07T21:40:41.8771843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-07T21:40:41.7834301Z","primaryEndpoints":{"blob":"https://cliepavefijbrxgz2ic23rib.blob.core.windows.net/","queue":"https://cliepavefijbrxgz2ic23rib.queue.core.windows.net/","table":"https://cliepavefijbrxgz2ic23rib.table.core.windows.net/","file":"https://cliepavefijbrxgz2ic23rib.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","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/craigw-win2016_group/providers/Microsoft.Storage/storageAccounts/craigwwin2016groupdiag","name":"craigwwin2016groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-20T19:30:51.9126006Z","key2":"2021-04-20T19:30:51.9126006Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-20T19:30:51.9126006Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-20T19:30:51.9126006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T19:30:51.8344874Z","primaryEndpoints":{"blob":"https://craigwwin2016groupdiag.blob.core.windows.net/","queue":"https://craigwwin2016groupdiag.queue.core.windows.net/","table":"https://craigwwin2016groupdiag.table.core.windows.net/","file":"https://craigwwin2016groupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jaolmste/providers/Microsoft.Storage/storageAccounts/jaolmstediag","name":"jaolmstediag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:13:21.4837277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-23T23:13:21.4837277Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-23T23:13:21.4212653Z","primaryEndpoints":{"blob":"https://jaolmstediag.blob.core.windows.net/","queue":"https://jaolmstediag.queue.core.windows.net/","table":"https://jaolmstediag.table.core.windows.net/","file":"https://jaolmstediag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westus2/providers/Microsoft.Storage/storageAccounts/scrunnerqxoorwnvnig3e","name":"scrunnerqxoorwnvnig3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-12T21:37:33.9638456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-12T21:37:33.9638456Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-11-12T21:37:33.8857017Z","primaryEndpoints":{"blob":"https://scrunnerqxoorwnvnig3e.blob.core.windows.net/","queue":"https://scrunnerqxoorwnvnig3e.queue.core.windows.net/","table":"https://scrunnerqxoorwnvnig3e.table.core.windows.net/","file":"https://scrunnerqxoorwnvnig3e.file.core.windows.net/"},"primaryLocation":"westus2","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":[],"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/scrunnertestvmrg-eastus2euap/providers/Microsoft.Storage/storageAccounts/scrunner4b2ydmou4cdic","name":"scrunner4b2ydmou4cdic","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-01T23:39:10.1050496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-01T23:39:10.1050496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-01T23:39:10.0300734Z","primaryEndpoints":{"blob":"https://scrunner4b2ydmou4cdic.blob.core.windows.net/","queue":"https://scrunner4b2ydmou4cdic.queue.core.windows.net/","table":"https://scrunner4b2ydmou4cdic.table.core.windows.net/","file":"https://scrunner4b2ydmou4cdic.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"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":[],"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_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":[],"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/davidli2/providers/Microsoft.Storage/storageAccounts/davidli2diag","name":"davidli2diag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-13T18:58:09.7400040Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-13T18:58:09.7400040Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-13T18:58:09.6618549Z","primaryEndpoints":{"blob":"https://davidli2diag.blob.core.windows.net/","queue":"https://davidli2diag.queue.core.windows.net/","table":"https://davidli2diag.table.core.windows.net/","file":"https://davidli2diag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"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":[],"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":[],"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":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"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":[],"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":[],"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_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/craigw-scaleset2_group/providers/Microsoft.Storage/storageAccounts/craigwvmss2","name":"craigwvmss2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-06T20:19:17.6441402Z","key2":"2021-05-06T20:19:17.6441402Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T20:19:17.6441402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T20:19:17.6441402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-06T20:19:17.5347608Z","primaryEndpoints":{"blob":"https://craigwvmss2.blob.core.windows.net/","queue":"https://craigwvmss2.queue.core.windows.net/","table":"https://craigwvmss2.table.core.windows.net/","file":"https://craigwvmss2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eastus2-bootdiagfirewall_group/providers/Microsoft.Storage/storageAccounts/eastus2bootdiagfirewall","name":"eastus2bootdiagfirewall","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"resourceAccessRules":[],"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eastus2-bootdiagfirewall_group/providers/Microsoft.Network/virtualNetworks/eastus2-bootdiagfirewall_group-vnet/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"40.91.126.232","action":"Allow"},{"value":"52.247.38.231","action":"Allow"},{"value":"67.197.218.105","action":"Allow"}],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-01T16:04:42.6507688Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-01T16:04:42.6507688Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-01T16:04:42.5571491Z","primaryEndpoints":{"blob":"https://eastus2bootdiagfirewall.blob.core.windows.net/","queue":"https://eastus2bootdiagfirewall.queue.core.windows.net/","table":"https://eastus2bootdiagfirewall.table.core.windows.net/","file":"https://eastus2bootdiagfirewall.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":[],"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-eastus2/providers/Microsoft.Storage/storageAccounts/scrunnersisx4cox63rpm","name":"scrunnersisx4cox63rpm","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-16T18:41:45.7023674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-16T18:41:45.7023674Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-11-16T18:41:45.6085609Z","primaryEndpoints":{"blob":"https://scrunnersisx4cox63rpm.blob.core.windows.net/","queue":"https://scrunnersisx4cox63rpm.queue.core.windows.net/","table":"https://scrunnersisx4cox63rpm.table.core.windows.net/","file":"https://scrunnersisx4cox63rpm.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/cs410037ffea943c134","name":"cs410037ffea943c134","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"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":"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":[],"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":"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":[],"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ubuntu-westeurope/providers/Microsoft.Storage/storageAccounts/craigwubuntu1","name":"craigwubuntu1","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T17:09:08.0955260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T17:09:08.0955260Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-27T17:09:08.0330220Z","primaryEndpoints":{"blob":"https://craigwubuntu1.blob.core.windows.net/","queue":"https://craigwubuntu1.queue.core.windows.net/","table":"https://craigwubuntu1.table.core.windows.net/","file":"https://craigwubuntu1.file.core.windows.net/"},"primaryLocation":"westeurope","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":"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":[],"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":[],"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_serialconsole7g76d5ytzkn5ysbd3x5ajwsh2yf6zpmio2iyquen6w4bmgkxrst7q/providers/Microsoft.Storage/storageAccounts/cli2o5im67ns6cbbji5qeeis","name":"cli2o5im67ns6cbbji5qeeis","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-02T18:41:06.3687934Z","key2":"2021-08-02T18:41:06.3687934Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.3687934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.3687934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-02T18:41:06.2906402Z","primaryEndpoints":{"blob":"https://cli2o5im67ns6cbbji5qeeis.blob.core.windows.net/","queue":"https://cli2o5im67ns6cbbji5qeeis.queue.core.windows.net/","table":"https://cli2o5im67ns6cbbji5qeeis.table.core.windows.net/","file":"https://cli2o5im67ns6cbbji5qeeis.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_serialconsolexrpmhk565hflops3kicled6pjjzlf7bfx64ydm3jd5qkoqurhsnlu/providers/Microsoft.Storage/storageAccounts/cli2ryv5gqxde5dmminhzqhm","name":"cli2ryv5gqxde5dmminhzqhm","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T19:34:00.1975328Z","key2":"2021-07-29T19:34:00.1975328Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:34:00.1975328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:34:00.1975328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-29T19:34:00.0413197Z","primaryEndpoints":{"blob":"https://cli2ryv5gqxde5dmminhzqhm.blob.core.windows.net/","queue":"https://cli2ryv5gqxde5dmminhzqhm.queue.core.windows.net/","table":"https://cli2ryv5gqxde5dmminhzqhm.table.core.windows.net/","file":"https://cli2ryv5gqxde5dmminhzqhm.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_serialconsoleposzoegovzac7oxawrwiijtp3kpak5no4tdqh4vemw6i2hi5rpsfp/providers/Microsoft.Storage/storageAccounts/cli56twi6eaodkqdu3lyxllh","name":"cli56twi6eaodkqdu3lyxllh","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-02T18:41:06.4938122Z","key2":"2021-08-02T18:41:06.4938122Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.4938122Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.4938122Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-02T18:41:06.4156721Z","primaryEndpoints":{"blob":"https://cli56twi6eaodkqdu3lyxllh.blob.core.windows.net/","queue":"https://cli56twi6eaodkqdu3lyxllh.queue.core.windows.net/","table":"https://cli56twi6eaodkqdu3lyxllh.table.core.windows.net/","file":"https://cli56twi6eaodkqdu3lyxllh.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_serialconsolelvxz2fulddybengvjkpblezslaieaw7orzqvkj2zhmnexjm46o5my/providers/Microsoft.Storage/storageAccounts/clibwyzu4vfeh3lfqxpibgmc","name":"clibwyzu4vfeh3lfqxpibgmc","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T19:34:00.1506805Z","key2":"2021-07-29T19:34:00.1506805Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:34:00.1663043Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:34:00.1663043Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-29T19:34:00.0413197Z","primaryEndpoints":{"blob":"https://clibwyzu4vfeh3lfqxpibgmc.blob.core.windows.net/","queue":"https://clibwyzu4vfeh3lfqxpibgmc.queue.core.windows.net/","table":"https://clibwyzu4vfeh3lfqxpibgmc.table.core.windows.net/","file":"https://clibwyzu4vfeh3lfqxpibgmc.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_serialconsolehdmzmpaaikazufoam5jejsdeish545mxijnumht4s3yvs2rz22ixv/providers/Microsoft.Storage/storageAccounts/cliqxgs62ngp2aon6fn5vcac","name":"cliqxgs62ngp2aon6fn5vcac","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-02T18:41:06.1813278Z","key2":"2021-08-02T18:41:06.1813278Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.1813278Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.1813278Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-02T18:41:06.1032001Z","primaryEndpoints":{"blob":"https://cliqxgs62ngp2aon6fn5vcac.blob.core.windows.net/","queue":"https://cliqxgs62ngp2aon6fn5vcac.queue.core.windows.net/","table":"https://cliqxgs62ngp2aon6fn5vcac.table.core.windows.net/","file":"https://cliqxgs62ngp2aon6fn5vcac.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_serialconsolenrs3uvxtyozprqs3elsnln2tcuvoz7uy4jb35wmepcenqjpt2fnw7/providers/Microsoft.Storage/storageAccounts/clisyneryraimz3wt5kupw4e","name":"clisyneryraimz3wt5kupw4e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T19:36:50.0114965Z","key2":"2021-07-29T19:36:50.0114965Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:36:50.0114965Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T19:36:50.0114965Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-29T19:36:49.9177695Z","primaryEndpoints":{"blob":"https://clisyneryraimz3wt5kupw4e.blob.core.windows.net/","queue":"https://clisyneryraimz3wt5kupw4e.queue.core.windows.net/","table":"https://clisyneryraimz3wt5kupw4e.table.core.windows.net/","file":"https://clisyneryraimz3wt5kupw4e.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":"2021-08-02T18:41:06.2906402Z","key2":"2021-08-02T18:41:06.2906402Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.2906402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-02T18:41:06.2906402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-02T18:41:06.2125781Z","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_serialconsolex5elz75iqefge53cx3xd34elmwzlv4leigatpsqifulgytj4vg24x/providers/Microsoft.Storage/storageAccounts/cliwz527psf46chk4gwjxp2h","name":"cliwz527psf46chk4gwjxp2h","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T20:26:14.6509503Z","key2":"2021-07-29T20:26:14.6509503Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T20:26:14.6509503Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T20:26:14.6509503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-29T20:26:14.5572066Z","primaryEndpoints":{"blob":"https://cliwz527psf46chk4gwjxp2h.blob.core.windows.net/","queue":"https://cliwz527psf46chk4gwjxp2h.queue.core.windows.net/","table":"https://cliwz527psf46chk4gwjxp2h.table.core.windows.net/","file":"https://cliwz527psf46chk4gwjxp2h.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","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/craigw-win2016_group/providers/Microsoft.Storage/storageAccounts/craigwwin2016groupdiag","name":"craigwwin2016groupdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-20T19:30:51.9126006Z","key2":"2021-04-20T19:30:51.9126006Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-20T19:30:51.9126006Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-20T19:30:51.9126006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T19:30:51.8344874Z","primaryEndpoints":{"blob":"https://craigwwin2016groupdiag.blob.core.windows.net/","queue":"https://craigwwin2016groupdiag.queue.core.windows.net/","table":"https://craigwwin2016groupdiag.table.core.windows.net/","file":"https://craigwwin2016groupdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kenla/providers/Microsoft.Storage/storageAccounts/kenlabd","name":"kenlabd","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-28T17:43:05.5910759Z","key2":"2021-07-28T17:43:05.5910759Z"},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-28T17:43:05.5910759Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-28T17:43:05.5910759Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-07-28T17:43:05.5129246Z","primaryEndpoints":{"blob":"https://kenlabd.blob.core.windows.net/","queue":"https://kenlabd.queue.core.windows.net/","table":"https://kenlabd.table.core.windows.net/","file":"https://kenlabd.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scrunnertestvmrg-westus2/providers/Microsoft.Storage/storageAccounts/scrunnerqxoorwnvnig3e","name":"scrunnerqxoorwnvnig3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-12T21:37:33.9638456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-12T21:37:33.9638456Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-11-12T21:37:33.8857017Z","primaryEndpoints":{"blob":"https://scrunnerqxoorwnvnig3e.blob.core.windows.net/","queue":"https://scrunnerqxoorwnvnig3e.queue.core.windows.net/","table":"https://scrunnerqxoorwnvnig3e.table.core.windows.net/","file":"https://scrunnerqxoorwnvnig3e.file.core.windows.net/"},"primaryLocation":"westus2","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":[],"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/scrunnertestvmrg-eastus2euap/providers/Microsoft.Storage/storageAccounts/scrunner4b2ydmou4cdic","name":"scrunner4b2ydmou4cdic","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-01T23:39:10.1050496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-01T23:39:10.1050496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-01T23:39:10.0300734Z","primaryEndpoints":{"blob":"https://scrunner4b2ydmou4cdic.blob.core.windows.net/","queue":"https://scrunner4b2ydmou4cdic.queue.core.windows.net/","table":"https://scrunner4b2ydmou4cdic.table.core.windows.net/","file":"https://scrunner4b2ydmou4cdic.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '40910' + - '46285' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:40 GMT + - Mon, 02 Aug 2021 18:45:26 GMT expires: - '-1' pragma: @@ -3037,24 +3026,24 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 77c3d2c8-d01f-4733-ba45-e272c7550ec7 - - 591d5f4e-3531-456c-a9f3-14c970ba5ddc - - 3bc435d1-a5c2-4a51-93fb-05efcb06ef62 - - f063392a-03a1-4db4-9a18-a68113adea9b - - 9e35d630-1333-4999-a20e-943ae94c8c4e - - 94ff2715-4649-421f-9a72-49ea7af56da4 - - 6b339abc-3113-4b7a-8faa-a16957e2de8e - - 4dfa8b39-6679-4c1a-959a-8f6ac5ec6192 - - ae42feb6-134e-4536-a777-1ed31edc027d + - e2ea11e0-bccf-4224-9cfd-8b8c75eecf8e + - 7be1de68-fd98-4b01-85cd-3fe4445ccaab + - 065aa402-b99f-4fbb-b140-afa7ac12c2a9 + - f427bbff-1b1d-471b-8295-5b17bc30a6dd + - ffd63fe6-5013-46ad-b496-f8e472160ff5 + - 3dd3ca27-55d9-46bd-8808-ec45eefc66a9 + - d856239c-b000-45a2-91ee-c57ed660e550 + - 5c0144fa-0ae1-4545-a556-2eeb5a646c2e + - c6a66619-6846-40c1-97fb-5341845d99c4 status: code: 200 message: OK - request: body: '{"location": "westus2", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": "true"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": - {"osDisk": {"osType": "Linux", "name": "cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"osDisk": {"osType": "Linux", "name": "cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511", "storageAccountType": "Premium_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": "cli000003", "adminUsername": "useraabedon", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", @@ -3073,13 +3062,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1953' + - '1959' Content-Type: - application/json ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3087,16 +3076,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -3116,15 +3105,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cf2d74b0-43b6-43b6-8e2a-297894184b66?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fccd065d-6172-4bb2-9cb6-c7a28e5a88ae?api-version=2021-03-01 cache-control: - no-cache content-length: - - '3010' + - '3016' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:41:40 GMT + - Mon, 02 Aug 2021 18:45:28 GMT expires: - '-1' pragma: @@ -3141,9 +3130,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1190 + - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3161,23 +3150,23 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/cf2d74b0-43b6-43b6-8e2a-297894184b66?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fccd065d-6172-4bb2-9cb6-c7a28e5a88ae?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:41:40.4837937+00:00\",\r\n \"endTime\": - \"2021-07-07T21:41:49.4213442+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cf2d74b0-43b6-43b6-8e2a-297894184b66\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:45:27.866668+00:00\",\r\n \"endTime\": + \"2021-08-02T18:45:36.1167601+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fccd065d-6172-4bb2-9cb6-c7a28e5a88ae\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:10 GMT + - Mon, 02 Aug 2021 18:45:57 GMT expires: - '-1' pragma: @@ -3194,7 +3183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29823 + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29935 status: code: 200 message: OK @@ -3212,7 +3201,7 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3220,16 +3209,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -3249,11 +3238,11 @@ interactions: cache-control: - no-cache content-length: - - '3011' + - '3017' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:10 GMT + - Mon, 02 Aug 2021 18:45:57 GMT expires: - '-1' pragma: @@ -3270,7 +3259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31902 + - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31942 status: code: 200 message: OK @@ -3288,22 +3277,22 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:10 GMT + - Mon, 02 Aug 2021 18:45:58 GMT expires: - '-1' pragma: @@ -3337,7 +3326,7 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3345,16 +3334,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -3370,23 +3359,23 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n - \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.3.1.1\",\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\": - \"2021-07-07T21:41:52+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2021-08-02T18:45:59+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:40:57.9678985+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:44:44.4757314+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.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\": \"2021-07-07T21:41:49.405708+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:45:36.1011705+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 }\r\n}" @@ -3394,11 +3383,11 @@ interactions: cache-control: - no-cache content-length: - - '4851' + - '4753' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:10 GMT + - Mon, 02 Aug 2021 18:45:58 GMT expires: - '-1' pragma: @@ -3415,7 +3404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31901 + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31941 status: code: 200 message: OK @@ -3435,22 +3424,22 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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 }" + string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '46' + - '42' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:45:59 GMT expires: - '-1' pragma: @@ -3484,22 +3473,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '46' + - '42' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:45:59 GMT expires: - '-1' pragma: @@ -3535,22 +3524,22 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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 }" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:46:00 GMT expires: - '-1' pragma: @@ -3568,7 +3557,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3584,22 +3573,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:46:00 GMT expires: - '-1' pragma: @@ -3631,7 +3620,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3639,16 +3628,16 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": @@ -3664,23 +3653,23 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"computerName\": \"cli000003\",\r\n \"osName\": \"ubuntu\",\r\n - \ \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": - \"2.3.1.1\",\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\": - \"2021-07-07T21:41:52+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2021-08-02T18:46:01+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:40:57.9678985+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:44:44.4757314+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.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\": \"2021-07-07T21:41:49.405708+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:45:36.1011705+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 }\r\n}" @@ -3688,11 +3677,301 @@ interactions: cache-control: - no-cache content-length: - - '4851' + - '4753' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:46:00 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/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31940 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/51a0a087-10f0-4193-a8d2-50221331c6c9?api-version=2021-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 02 Aug 2021 18:46:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/51a0a087-10f0-4193-a8d2-50221331c6c9?monitor=true&api-version=2021-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm stop + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/51a0a087-10f0-4193-a8d2-50221331c6c9?api-version=2021-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-08-02T18:46:01.5857985+00:00\",\r\n \"endTime\": + \"2021-08-02T18:46:06.8513882+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"51a0a087-10f0-4193-a8d2-50221331c6c9\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:46:38 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;14956,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.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/51a0a087-10f0-4193-a8d2-50221331c6c9?monitor=true&api-version=2021-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 02 Aug 2021 18:46: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;14955,Microsoft.Compute/GetOperation30Min;29928 + 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.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: + - Mon, 02 Aug 2021 18:46: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 + 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.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + response: + body: + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachines/cli000003\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\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_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n + \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n + \ \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": + {\r\n \"publicKeys\": [\r\n {\r\n \"path\": + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\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 },\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\": \"2021-08-02T18:46:39+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-08-02T18:44:44.4757314+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.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\": \"2021-08-02T18:46:06.8513882+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 }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4753' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:46:39 GMT expires: - '-1' pragma: @@ -3709,7 +3988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31900 + - Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -3729,7 +4008,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3737,17 +4016,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ef978655-a840-443b-bd99-7cc5269d6f87?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7c302753-c690-452c-888e-d8395d61cf01?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Jul 2021 21:42:11 GMT + - Mon, 02 Aug 2021 18:46:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ef978655-a840-443b-bd99-7cc5269d6f87?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7c302753-c690-452c-888e-d8395d61cf01?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -3758,7 +4037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1194 + - Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3778,13 +4057,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ef978655-a840-443b-bd99-7cc5269d6f87?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7c302753-c690-452c-888e-d8395d61cf01?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:42:12.5152831+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"ef978655-a840-443b-bd99-7cc5269d6f87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:46:40.1172533+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7c302753-c690-452c-888e-d8395d61cf01\"\r\n}" headers: cache-control: - no-cache @@ -3793,7 +4072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:21 GMT + - Mon, 02 Aug 2021 18:46:50 GMT expires: - '-1' pragma: @@ -3810,7 +4089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29821 + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29925 status: code: 200 message: OK @@ -3828,14 +4107,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ef978655-a840-443b-bd99-7cc5269d6f87?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7c302753-c690-452c-888e-d8395d61cf01?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-07T21:42:12.5152831+00:00\",\r\n \"endTime\": - \"2021-07-07T21:42:46.4374074+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ef978655-a840-443b-bd99-7cc5269d6f87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:46:40.1172533+00:00\",\r\n \"endTime\": + \"2021-08-02T18:47:06.1174774+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7c302753-c690-452c-888e-d8395d61cf01\"\r\n}" headers: cache-control: - no-cache @@ -3844,7 +4123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:58 GMT + - Mon, 02 Aug 2021 18:47:26 GMT expires: - '-1' pragma: @@ -3861,7 +4140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29811 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -3879,9 +4158,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ef978655-a840-443b-bd99-7cc5269d6f87?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/7c302753-c690-452c-888e-d8395d61cf01?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -3891,7 +4170,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Jul 2021 21:42:58 GMT + - Mon, 02 Aug 2021 18:47:26 GMT expires: - '-1' pragma: @@ -3904,7 +4183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29810 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29916 status: code: 200 message: OK @@ -3922,22 +4201,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:42:58 GMT + - Mon, 02 Aug 2021 18:47:27 GMT expires: - '-1' pragma: @@ -3971,7 +4250,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-compute/21.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3979,15 +4258,15 @@ interactions: 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\": \"905d02e7-1f14-4116-a7c7-73d63520272c\",\r\n + \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5eaa888f-709a-4642-a297-af2f8a420542\",\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.202106220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + \"18.04.202107200\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLES63AC7EFQBSUAEOSCXNWF3EHWXFBZDJ36X6IDSNZWDTS4WTDHLXJ5/providers/Microsoft.Compute/disks/cli000003_disk1_c31150ae03d94164a46c567623e1e39a\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_SERIALCONSOLEDMHUHHNCDRFCO34VWKSU32E6PTHYJGUBFZ7ZC4OGEG7IE6NXYCQB2/providers/Microsoft.Compute/disks/cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"cli000003\",\r\n \"adminUsername\": \"useraabedon\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": @@ -4002,17 +4281,17 @@ interactions: \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cli000002.blob.core.windows.net/\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_disk1_c31150ae03d94164a46c567623e1e39a\",\r\n + {\r\n \"disks\": [\r\n {\r\n \"name\": \"cli000003_OsDisk_1_dc89bca7cd6b4ddda31231a4ddd9a511\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-07T21:42:44.3592818+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:47:04.0549675+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clizkwe2c-905d02e7-1f14-4116-a7c7-73d63520272c/cli000003.905d02e7-1f14-4116-a7c7-73d63520272c.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6jftuz-5eaa888f-709a-4642-a297-af2f8a420542/cli000003.5eaa888f-709a-4642-a297-af2f8a420542.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\": \"2021-07-07T21:42:44.3749057+00:00\"\r\n },\r\n + \ \"time\": \"2021-08-02T18:47:04.0706076+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 }\r\n}" @@ -4020,11 +4299,11 @@ interactions: cache-control: - no-cache content-length: - - '4296' + - '4305' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Jul 2021 21:42:58 GMT + - Mon, 02 Aug 2021 18:47:27 GMT expires: - '-1' pragma: @@ -4041,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31894 + - Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31937 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 6c72af61887..92b98c0fa64 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,8 +11,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:37:14 GMT + - Mon, 02 Aug 2021 18:41:25 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:15 GMT + - Mon, 02 Aug 2021 18:41:26 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:15 GMT + - Mon, 02 Aug 2021 18:41:26 GMT expires: - '-1' pragma: @@ -142,8 +142,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -157,7 +157,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:37:17 GMT + - Mon, 02 Aug 2021 18:41:26 GMT expires: - '-1' pragma: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -205,7 +205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:19 GMT + - Mon, 02 Aug 2021 18:41:27 GMT expires: - '-1' pragma: @@ -285,13 +285,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:20 GMT + - Mon, 02 Aug 2021 18:41:27 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Fri, 30 Jul 2021 06:42:20 GMT + - Mon, 02 Aug 2021 18:46:27 GMT source-age: - - '0' + - '159' strict-transport-security: - max-age=31536000 vary: @@ -301,19 +301,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '1' + - '2' x-content-type-options: - nosniff x-fastly-request-id: - - 3356758c012337fc09b7af9e3c33a29e1f9920dd + - 8514320a55ebe8a4d310c3df8e58af2d9cd1c258 x-frame-options: - deny x-github-request-id: - - 5ACA:1F4F:15E584:21C6EF:61031774 + - 539E:1154:21BDFA:2AF64C:61083A82 x-served-by: - - cache-qpg1275-QPG + - cache-sea4481-SEA x-timer: - - S1627627041.642932,VS0,VE226 + - S1627929688.575332,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -333,7 +333,7 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19042-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 response: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:22 GMT + - Mon, 02 Aug 2021 18:41:27 GMT expires: - '-1' pragma: @@ -386,12 +386,12 @@ interactions: null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "cli6l8766", - "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "cli6l8766Nic", - "properties": {"ipConfigurations": [{"name": "cli6l8766IPConfig", "properties": + "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "clire1e02", + "adminUsername": "useraabedon", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "clire1e02Nic", + "properties": {"ipConfigurations": [{"name": "clire1e02IPConfig", "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"}]}}], @@ -409,29 +409,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4606' + - '4610' Content-Type: - application/json ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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_Mf2peSEfZEOlFuIGOJeoxYZATFEYw0yq","name":"vmss_deploy_Mf2peSEfZEOlFuIGOJeoxYZATFEYw0yq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5614686419814378783","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-07-30T06:37:28.2629027Z","duration":"PT2.1840164S","correlationId":"39b0368f-d029-4605-bdbc-bcca468a8237","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_86PEQKiqb15qnSf84rFYwD3fxwCtD4y6","name":"vmss_deploy_86PEQKiqb15qnSf84rFYwD3fxwCtD4y6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15659516945729008981","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-08-02T18:41:29.4986219Z","duration":"PT0.6069692S","correlationId":"b8f4233b-c328-467a-94ec-5e6cdf03c1f0","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_Mf2peSEfZEOlFuIGOJeoxYZATFEYw0yq/operationStatuses/08585739798393987472?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_86PEQKiqb15qnSf84rFYwD3fxwCtD4y6/operationStatuses/08585736771965859761?api-version=2021-04-01 cache-control: - no-cache content-length: - - '2924' + - '2925' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:37:30 GMT + - Mon, 02 Aug 2021 18:41:28 GMT expires: - '-1' pragma: @@ -459,9 +459,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585739798393987472?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/08585736771965859761?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -473,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:38:01 GMT + - Mon, 02 Aug 2021 18:41:59 GMT expires: - '-1' pragma: @@ -501,9 +501,9 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585739798393987472?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/08585736771965859761?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -515,7 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:38:32 GMT + - Mon, 02 Aug 2021 18:42:29 GMT expires: - '-1' pragma: @@ -543,9 +543,51 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585739798393987472?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/08585736771965859761?api-version=2021-04-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:42:59 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.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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/08585736771965859761?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -557,7 +599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:02 GMT + - Mon, 02 Aug 2021 18:43:29 GMT expires: - '-1' pragma: @@ -585,22 +627,22 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19042-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_Mf2peSEfZEOlFuIGOJeoxYZATFEYw0yq","name":"vmss_deploy_Mf2peSEfZEOlFuIGOJeoxYZATFEYw0yq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5614686419814378783","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-07-30T06:38:51.6255347Z","duration":"PT1M25.5466484S","correlationId":"39b0368f-d029-4605-bdbc-bcca468a8237","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":"cli6l8766","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]},"provisionVMAgent":true},"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":"cli6l8766Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"cli6l8766IPConfig","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":"75e82f91-c347-460c-a2bf-678ac7eb199e"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/loadBalancers/cli000003LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/publicIPAddresses/cli000003LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Network/virtualNetworks/cli000003VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Resources/deployments/vmss_deploy_86PEQKiqb15qnSf84rFYwD3fxwCtD4y6","name":"vmss_deploy_86PEQKiqb15qnSf84rFYwD3fxwCtD4y6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15659516945729008981","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-08-02T18:43:02.1294695Z","duration":"PT1M33.2378168S","correlationId":"b8f4233b-c328-467a-94ec-5e6cdf03c1f0","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":"clire1e02","adminUsername":"useraabedon","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/useraabedon/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]},"provisionVMAgent":true},"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":"clire1e02Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"clire1e02IPConfig","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,"publisher":"Microsoft.Azure.Monitor","type":"AzureMonitorLinuxAgent","typeHandlerVersion":"1.0","settings":{"GCS_AUTO_CONFIG":true}}},{"name":"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent","properties":{"autoUpgradeMinorVersion":true,"publisher":"Microsoft.Azure.Security.Monitoring","type":"AzureSecurityLinuxAgent","typeHandlerVersion":"2.0","settings":{"enableGenevaUpload":true}}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"69709fda-aa89-462d-87f7-272a63ced539"}}},"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: - - '6458' + - '7002' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:03 GMT + - Mon, 02 Aug 2021 18:43:29 GMT expires: - '-1' pragma: @@ -628,8 +670,8 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -643,7 +685,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:39:05 GMT + - Mon, 02 Aug 2021 18:43:31 GMT expires: - '-1' pragma: @@ -677,7 +719,7 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -693,7 +735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:06 GMT + - Mon, 02 Aug 2021 18:43:31 GMT expires: - '-1' pragma: @@ -721,25 +763,26 @@ interactions: ParameterSetName: - -g -n --image --instance-count -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -749,19 +792,30 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\": - \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\r\n }\r\n}" + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3630' + - '4638' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:07 GMT + - Mon, 02 Aug 2021 18:43:31 GMT expires: - '-1' pragma: @@ -778,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1296 + - Microsoft.Compute/GetVMScaleSet3Min;184,Microsoft.Compute/GetVMScaleSet30Min;1284 status: code: 200 message: OK @@ -796,7 +850,7 @@ interactions: ParameterSetName: - --resource-group --name --query User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -804,69 +858,106 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli000003_1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"instanceId\": - \"1\",\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\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\": \"ae66591d-7bff-4387-921e-2ca060517e24\",\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\": \"1\",\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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"38b3feea-f9d7-44a1-bcb5-a9df41477d1e\",\r\n \"hardwareProfile\": {},\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.202107200\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_818b1b0c1f274c98b516fd41810e46c0\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_c8c0350705ba4ac4a3b17f99591344f3\",\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/cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_818b1b0c1f274c98b516fd41810e46c0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_c8c0350705ba4ac4a3b17f99591344f3\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cli6l8766000001\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"clire1e02000001\",\r\n \"adminUsername\": \"useraabedon\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/useraabedon/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\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/1/networkInterfaces/cli6l8766Nic\"}]},\r\n - \ \"provisioningState\": \"Updating\"\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 + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/1/networkInterfaces/clire1e02Nic\"}]},\r\n + \ \"provisioningState\": \"Updating\"\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_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"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_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true}\r\n }\r\n }\r\n ]\r\n },\r\n + \ {\r\n \"name\": \"cli000003_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualMachines/2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": - true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\": \"97812956-5adb-43d5-a38b-60b447536f62\",\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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"4b74c97f-772a-46b7-a64b-ac3ac6899bee\",\r\n \"hardwareProfile\": {},\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.202107200\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\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/cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/disks/clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": - {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": - {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"clire1e02000002\",\r\n \"adminUsername\": \"useraabedon\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/useraabedon/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\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/cli6l8766Nic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n }\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/clire1e02Nic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\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 \"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 \"publisher\": + \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {\"enableGenevaUpload\":true}\r\n }\r\n }\r\n ]\r\n }\r\n + \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '8631' + - '12289' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:08 GMT + - Mon, 02 Aug 2021 18:43:32 GMT expires: - '-1' pragma: @@ -883,7 +974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;176,Microsoft.Compute/HighCostGetVMScaleSet30Min;859,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '4' status: @@ -903,25 +994,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -931,19 +1023,30 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\": - \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\r\n }\r\n}" + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3630' + - '4638' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:09 GMT + - Mon, 02 Aug 2021 18:43:32 GMT expires: - '-1' pragma: @@ -960,31 +1063,37 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;195,Microsoft.Compute/GetVMScaleSet30Min;1295 + - Microsoft.Compute/GetVMScaleSet3Min;183,Microsoft.Compute/GetVMScaleSet30Min;1283 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": "cli6l8766", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + 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": "clire1e02", "adminUsername": "useraabedon", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]}, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cli6l8766Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli6l8766IPConfig", + [{"name": "clire1e02Nic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "clire1e02IPConfig", "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, "settings": {"GCS_AUTO_CONFIG": + true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "settings": {"enableGenevaUpload": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true}}' headers: Accept: - application/json @@ -995,31 +1104,32 @@ interactions: Connection: - keep-alive Content-Length: - - '2566' + - '3245' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -1029,24 +1139,35 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\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/c26b244d-2b4d-4928-82fd-238293edfc14?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/46fd14c7-3489-48b4-bb22-738d55b29930?api-version=2021-03-01 cache-control: - no-cache content-length: - - '3738' + - '4746' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:18 GMT + - Mon, 02 Aug 2021 18:43:35 GMT expires: - '-1' pragma: @@ -1063,9 +1184,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;54,Microsoft.Compute/CreateVMScaleSet30Min;294,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -1085,13 +1206,13 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c26b244d-2b4d-4928-82fd-238293edfc14?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/46fd14c7-3489-48b4-bb22-738d55b29930?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:39:15.4361116+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c26b244d-2b4d-4928-82fd-238293edfc14\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:34.4908113+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"46fd14c7-3489-48b4-bb22-738d55b29930\"\r\n}" headers: cache-control: - no-cache @@ -1100,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:39:28 GMT + - Mon, 02 Aug 2021 18:43:45 GMT expires: - '-1' pragma: @@ -1117,7 +1238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978 status: code: 200 message: OK @@ -1135,14 +1256,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c26b244d-2b4d-4928-82fd-238293edfc14?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/46fd14c7-3489-48b4-bb22-738d55b29930?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:39:15.4361116+00:00\",\r\n \"endTime\": - \"2021-07-30T06:39:33.0923775+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c26b244d-2b4d-4928-82fd-238293edfc14\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:43:34.4908113+00:00\",\r\n \"endTime\": + \"2021-08-02T18:43:58.5535139+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"46fd14c7-3489-48b4-bb22-738d55b29930\"\r\n}" headers: cache-control: - no-cache @@ -1151,7 +1272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:40:05 GMT + - Mon, 02 Aug 2021 18:44:21 GMT expires: - '-1' pragma: @@ -1168,7 +1289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987 + - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29963 status: code: 200 message: OK @@ -1186,25 +1307,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -1214,20 +1336,31 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '4747' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:40:05 GMT + - Mon, 02 Aug 2021 18:44:21 GMT expires: - '-1' pragma: @@ -1244,12 +1377,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;192,Microsoft.Compute/GetVMScaleSet30Min;1292 + - Microsoft.Compute/GetVMScaleSet3Min;175,Microsoft.Compute/GetVMScaleSet30Min;1275 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -1266,7 +1399,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1274,17 +1407,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e7864995-6bcb-461e-b1e3-ad23d8cae140?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5ea07786-bf63-430c-a5d2-1cbb3f7bf905?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:40:07 GMT + - Mon, 02 Aug 2021 18:44:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e7864995-6bcb-461e-b1e3-ad23d8cae140?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5ea07786-bf63-430c-a5d2-1cbb3f7bf905?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1295,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1185,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1317,23 +1450,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e7864995-6bcb-461e-b1e3-ad23d8cae140?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5ea07786-bf63-430c-a5d2-1cbb3f7bf905?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:40:07.8422868+00:00\",\r\n \"endTime\": - \"2021-07-30T06:40:13.764193+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e7864995-6bcb-461e-b1e3-ad23d8cae140\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:44:22.9132878+00:00\",\r\n \"endTime\": + \"2021-08-02T18:44:34.8662934+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5ea07786-bf63-430c-a5d2-1cbb3f7bf905\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:40:37 GMT + - Mon, 02 Aug 2021 18:44:52 GMT expires: - '-1' pragma: @@ -1350,7 +1483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979 + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29951 status: code: 200 message: OK @@ -1368,9 +1501,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e7864995-6bcb-461e-b1e3-ad23d8cae140?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5ea07786-bf63-430c-a5d2-1cbb3f7bf905?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -1380,7 +1513,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:40:38 GMT + - Mon, 02 Aug 2021 18:44:52 GMT expires: - '-1' pragma: @@ -1393,7 +1526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29950 status: code: 200 message: OK @@ -1411,8 +1544,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -1426,7 +1559,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:40:40 GMT + - Mon, 02 Aug 2021 18:44:53 GMT expires: - '-1' pragma: @@ -1460,38 +1593,59 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n - \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n + \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"computerName\": + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:40:13+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:44:38+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:40:08.8266913+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\": \"2021-07-30T06:40:13.7329441+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\": \"2021-08-02T18:44:23.8203028+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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:44:34.8506769+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: - - '1288' + - '2808' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:40:41 GMT + - Mon, 02 Aug 2021 18:44:53 GMT expires: - '-1' pragma: @@ -1508,7 +1662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4999,Microsoft.Compute/VMScaleSetVMViews3Min;4995 + - Microsoft.Compute/GetVMScaleSetVM3Min;499,Microsoft.Compute/GetVMScaleSetVM30Min;2499,Microsoft.Compute/VMScaleSetVMViews3Min;4988 x-ms-request-charge: - '1' status: @@ -1530,25 +1684,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9134402c-9c08-4bce-aca4-3427c271f46d?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/19bedef6-c35a-472b-8809-0f194e653133?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:40:43 GMT + - Mon, 02 Aug 2021 18:44:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9134402c-9c08-4bce-aca4-3427c271f46d?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/19bedef6-c35a-472b-8809-0f194e653133?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1559,7 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1184,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1581,13 +1735,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9134402c-9c08-4bce-aca4-3427c271f46d?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/19bedef6-c35a-472b-8809-0f194e653133?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:40:43.4517192+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9134402c-9c08-4bce-aca4-3427c271f46d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:44:54.2570783+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"19bedef6-c35a-472b-8809-0f194e653133\"\r\n}" headers: cache-control: - no-cache @@ -1596,7 +1750,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:41:13 GMT + - Mon, 02 Aug 2021 18:45:24 GMT expires: - '-1' pragma: @@ -1613,7 +1767,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29946 status: code: 200 message: OK @@ -1631,14 +1785,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9134402c-9c08-4bce-aca4-3427c271f46d?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/19bedef6-c35a-472b-8809-0f194e653133?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:40:43.4517192+00:00\",\r\n \"endTime\": - \"2021-07-30T06:41:28.0611476+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9134402c-9c08-4bce-aca4-3427c271f46d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:44:54.2570783+00:00\",\r\n \"endTime\": + \"2021-08-02T18:45:46.9449535+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"19bedef6-c35a-472b-8809-0f194e653133\"\r\n}" headers: cache-control: - no-cache @@ -1647,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:41:43 GMT + - Mon, 02 Aug 2021 18:45:53 GMT expires: - '-1' pragma: @@ -1664,7 +1818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29968 + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29937 status: code: 200 message: OK @@ -1682,9 +1836,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/9134402c-9c08-4bce-aca4-3427c271f46d?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/19bedef6-c35a-472b-8809-0f194e653133?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -1694,7 +1848,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:41:44 GMT + - Mon, 02 Aug 2021 18:45:53 GMT expires: - '-1' pragma: @@ -1707,7 +1861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29967 + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29936 status: code: 200 message: OK @@ -1725,8 +1879,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -1740,7 +1894,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:41:46 GMT + - Mon, 02 Aug 2021 18:45:55 GMT expires: - '-1' pragma: @@ -1774,32 +1928,32 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n - \ \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n + \ \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"disks\": + [\r\n {\r\n \"name\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:41:26.9986649+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:45:45.882465+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\": \"2021-07-30T06:41:27.0298884+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2021-08-02T18:45:45.9137289+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: - - '880' + - '879' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:41:46 GMT + - Mon, 02 Aug 2021 18:45:54 GMT expires: - '-1' pragma: @@ -1816,14 +1970,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4998,Microsoft.Compute/VMScaleSetVMViews3Min;4994 + - Microsoft.Compute/GetVMScaleSetVM3Min;492,Microsoft.Compute/GetVMScaleSetVM30Min;2492,Microsoft.Compute/VMScaleSetVMViews3Min;4981 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -1840,7 +1994,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1848,17 +2002,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8172a838-6150-4da8-9aa4-29196ca275d2?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f9b105bd-1b38-4242-bc8b-7edbbcd851a9?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:41:48 GMT + - Mon, 02 Aug 2021 18:46:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8172a838-6150-4da8-9aa4-29196ca275d2?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f9b105bd-1b38-4242-bc8b-7edbbcd851a9?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -1869,7 +2023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1183,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1891,23 +2045,22 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8172a838-6150-4da8-9aa4-29196ca275d2?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f9b105bd-1b38-4242-bc8b-7edbbcd851a9?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:41:48.9049016+00:00\",\r\n \"endTime\": - \"2021-07-30T06:42:07.5611621+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8172a838-6150-4da8-9aa4-29196ca275d2\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:45:55.6637999+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f9b105bd-1b38-4242-bc8b-7edbbcd851a9\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:42:18 GMT + - Mon, 02 Aug 2021 18:46:41 GMT expires: - '-1' pragma: @@ -1924,7 +2077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29961 + - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29927 status: code: 200 message: OK @@ -1942,9 +2095,60 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8172a838-6150-4da8-9aa4-29196ca275d2?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f9b105bd-1b38-4242-bc8b-7edbbcd851a9?api-version=2021-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-08-02T18:45:55.6637999+00:00\",\r\n \"endTime\": + \"2021-08-02T18:46:52.008022+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f9b105bd-1b38-4242-bc8b-7edbbcd851a9\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:47: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;14960,Microsoft.Compute/GetOperation30Min;29922 + 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.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f9b105bd-1b38-4242-bc8b-7edbbcd851a9?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -1954,7 +2158,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:42:18 GMT + - Mon, 02 Aug 2021 18:47:12 GMT expires: - '-1' pragma: @@ -1967,12 +2171,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29960 + - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -1989,7 +2193,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -1997,17 +2201,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d6152fcb-9336-42c5-81ea-575da5f9ad76?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/156648e2-972a-4a94-9a27-b82452933109?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:42:21 GMT + - Mon, 02 Aug 2021 18:47:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d6152fcb-9336-42c5-81ea-575da5f9ad76?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/156648e2-972a-4a94-9a27-b82452933109?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -2018,7 +2222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2040,23 +2244,73 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d6152fcb-9336-42c5-81ea-575da5f9ad76?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/156648e2-972a-4a94-9a27-b82452933109?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:42:21.4361649+00:00\",\r\n \"endTime\": - \"2021-07-30T06:42:32.7173913+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d6152fcb-9336-42c5-81ea-575da5f9ad76\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:47:13.055033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"156648e2-972a-4a94-9a27-b82452933109\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:47: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/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29914 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss stop + Connection: + - keep-alive + ParameterSetName: + - -g -n --instance-ids + User-Agent: + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/156648e2-972a-4a94-9a27-b82452933109?api-version=2021-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-08-02T18:47:13.055033+00:00\",\r\n \"endTime\": + \"2021-08-02T18:47:55.7428615+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"156648e2-972a-4a94-9a27-b82452933109\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:42:51 GMT + - Mon, 02 Aug 2021 18:48:13 GMT expires: - '-1' pragma: @@ -2073,7 +2327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29957 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29910 status: code: 200 message: OK @@ -2091,9 +2345,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d6152fcb-9336-42c5-81ea-575da5f9ad76?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/156648e2-972a-4a94-9a27-b82452933109?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -2103,7 +2357,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:42:51 GMT + - Mon, 02 Aug 2021 18:48:13 GMT expires: - '-1' pragma: @@ -2116,7 +2370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29956 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -2134,8 +2388,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -2149,7 +2403,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:42:53 GMT + - Mon, 02 Aug 2021 18:48:14 GMT expires: - '-1' pragma: @@ -2183,38 +2437,59 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:42:18+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:46:51+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:41:49.4517302+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\": \"2021-07-30T06:42:32.7017488+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}" + succeeded\",\r\n \"time\": \"2021-08-02T18:46:18.6171002+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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:47:55.7272382+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: - - '1288' + - '2808' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:42:54 GMT + - Mon, 02 Aug 2021 18:48:13 GMT expires: - '-1' pragma: @@ -2231,14 +2506,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4997,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;488,Microsoft.Compute/GetVMScaleSetVM30Min;2487,Microsoft.Compute/VMScaleSetVMViews3Min;4988 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -2255,7 +2530,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2263,17 +2538,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/93709e1d-0fea-4ceb-bc9a-429423b560e6?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5180417b-1ed5-4a7f-8375-871517409254?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:42:56 GMT + - Mon, 02 Aug 2021 18:48:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/93709e1d-0fea-4ceb-bc9a-429423b560e6?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5180417b-1ed5-4a7f-8375-871517409254?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -2284,7 +2559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1189,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2306,23 +2581,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/93709e1d-0fea-4ceb-bc9a-429423b560e6?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5180417b-1ed5-4a7f-8375-871517409254?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:42:56.592369+00:00\",\r\n \"endTime\": - \"2021-07-30T06:42:59.2486403+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"93709e1d-0fea-4ceb-bc9a-429423b560e6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:48:14.6180005+00:00\",\r\n \"endTime\": + \"2021-08-02T18:48:23.9461948+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5180417b-1ed5-4a7f-8375-871517409254\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:43:26 GMT + - Mon, 02 Aug 2021 18:48:44 GMT expires: - '-1' pragma: @@ -2339,7 +2614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -2357,9 +2632,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/93709e1d-0fea-4ceb-bc9a-429423b560e6?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/5180417b-1ed5-4a7f-8375-871517409254?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -2369,7 +2644,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:43:26 GMT + - Mon, 02 Aug 2021 18:48:44 GMT expires: - '-1' pragma: @@ -2382,7 +2657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -2400,25 +2675,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -2428,20 +2704,31 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '4747' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:43:29 GMT + - Mon, 02 Aug 2021 18:48:45 GMT expires: - '-1' pragma: @@ -2458,32 +2745,38 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;199,Microsoft.Compute/GetVMScaleSet30Min;1291 + - Microsoft.Compute/GetVMScaleSet3Min;199,Microsoft.Compute/GetVMScaleSet30Min;1274 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": "cli6l8766", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + 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": "clire1e02", "adminUsername": "useraabedon", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]}, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cli6l8766Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli6l8766IPConfig", + [{"name": "clire1e02Nic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "clire1e02IPConfig", "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, "settings": {"GCS_AUTO_CONFIG": true}}}, + {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", "properties": + {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "settings": {"enableGenevaUpload": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true}}' headers: Accept: - application/json @@ -2494,31 +2787,32 @@ interactions: Connection: - keep-alive Content-Length: - - '2639' + - '3318' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -2528,25 +2822,36 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\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/a87fecce-6f2a-48f6-b61a-f35ed4b517de?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/868ecfd4-4ad2-4f12-abc6-1d2a91d12fec?api-version=2021-03-01 cache-control: - no-cache content-length: - - '3822' + - '4830' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:43:36 GMT + - Mon, 02 Aug 2021 18:48:47 GMT expires: - '-1' pragma: @@ -2563,9 +2868,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;297,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;292,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -2585,14 +2890,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a87fecce-6f2a-48f6-b61a-f35ed4b517de?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/868ecfd4-4ad2-4f12-abc6-1d2a91d12fec?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:43:34.0923969+00:00\",\r\n \"endTime\": - \"2021-07-30T06:43:34.5142772+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a87fecce-6f2a-48f6-b61a-f35ed4b517de\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:48:46.9776507+00:00\",\r\n \"endTime\": + \"2021-08-02T18:48:47.2432824+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"868ecfd4-4ad2-4f12-abc6-1d2a91d12fec\"\r\n}" headers: cache-control: - no-cache @@ -2601,7 +2906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:43:47 GMT + - Mon, 02 Aug 2021 18:48:57 GMT expires: - '-1' pragma: @@ -2618,7 +2923,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29903 status: code: 200 message: OK @@ -2636,25 +2941,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -2664,21 +2970,32 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3823' + - '4831' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:43:47 GMT + - Mon, 02 Aug 2021 18:48:57 GMT expires: - '-1' pragma: @@ -2695,12 +3012,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1288 + - Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1271 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -2717,7 +3034,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -2725,17 +3042,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/08f20a71-d2b1-4b46-a30a-06b84edf3574?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f74492bc-2629-4024-b814-c5ccc712376a?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:43:48 GMT + - Mon, 02 Aug 2021 18:49:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/08f20a71-d2b1-4b46-a30a-06b84edf3574?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f74492bc-2629-4024-b814-c5ccc712376a?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -2746,7 +3063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1184,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -2768,23 +3085,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/08f20a71-d2b1-4b46-a30a-06b84edf3574?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f74492bc-2629-4024-b814-c5ccc712376a?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:43:49.0299088+00:00\",\r\n \"endTime\": - \"2021-07-30T06:43:55.451779+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"08f20a71-d2b1-4b46-a30a-06b84edf3574\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:48:58.4464469+00:00\",\r\n \"endTime\": + \"2021-08-02T18:49:14.9153724+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f74492bc-2629-4024-b814-c5ccc712376a\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:44:18 GMT + - Mon, 02 Aug 2021 18:49:37 GMT expires: - '-1' pragma: @@ -2801,7 +3118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29947 + - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29898 status: code: 200 message: OK @@ -2819,9 +3136,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/08f20a71-d2b1-4b46-a30a-06b84edf3574?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f74492bc-2629-4024-b814-c5ccc712376a?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -2831,7 +3148,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:44:19 GMT + - Mon, 02 Aug 2021 18:49:37 GMT expires: - '-1' pragma: @@ -2844,7 +3161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -2862,8 +3179,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -2877,7 +3194,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:44:20 GMT + - Mon, 02 Aug 2021 18:49:40 GMT expires: - '-1' pragma: @@ -2911,40 +3228,61 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:43:57+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:49:13+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:43:49.9986715+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:48:59.5558746+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.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\": \"2021-07-30T06:43:55.4048756+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:49:14.884185+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: - - '1759' + - '3278' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:44:22 GMT + - Mon, 02 Aug 2021 18:49:40 GMT expires: - '-1' pragma: @@ -2961,7 +3299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4996,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;498,Microsoft.Compute/GetVMScaleSetVM30Min;2486,Microsoft.Compute/VMScaleSetVMViews3Min;4995 x-ms-request-charge: - '1' status: @@ -2983,8 +3321,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -2998,7 +3336,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:44:24 GMT + - Mon, 02 Aug 2021 18:49:41 GMT expires: - '-1' pragma: @@ -3032,8 +3370,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -3047,7 +3385,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:44:25 GMT + - Mon, 02 Aug 2021 18:49:42 GMT expires: - '-1' pragma: @@ -3083,8 +3421,8 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -3098,7 +3436,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:44:27 GMT + - Mon, 02 Aug 2021 18:49:43 GMT expires: - '-1' pragma: @@ -3116,7 +3454,7 @@ interactions: x-frame-options: - deny x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3132,8 +3470,8 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -3147,7 +3485,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:44:29 GMT + - Mon, 02 Aug 2021 18:49:43 GMT expires: - '-1' pragma: @@ -3179,40 +3517,61 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:43:57+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:49:13+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:43:49.9986715+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:48:59.5558746+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.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\": \"2021-07-30T06:43:55.4048756+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:49:14.884185+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: - - '1759' + - '3278' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:44:31 GMT + - Mon, 02 Aug 2021 18:49:43 GMT expires: - '-1' pragma: @@ -3229,7 +3588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4995,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2485,Microsoft.Compute/VMScaleSetVMViews3Min;4994 x-ms-request-charge: - '1' status: @@ -3251,25 +3610,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4954b9b-c2bf-4953-b25f-a75f8cd20322?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b344d5f4-f242-478d-bf89-282df18d993d?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:44:32 GMT + - Mon, 02 Aug 2021 18:50:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4954b9b-c2bf-4953-b25f-a75f8cd20322?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b344d5f4-f242-478d-bf89-282df18d993d?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -3280,7 +3639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1187,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -3302,13 +3661,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4954b9b-c2bf-4953-b25f-a75f8cd20322?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b344d5f4-f242-478d-bf89-282df18d993d?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:44:32.7954894+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b4954b9b-c2bf-4953-b25f-a75f8cd20322\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:49:44.4155795+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b344d5f4-f242-478d-bf89-282df18d993d\"\r\n}" headers: cache-control: - no-cache @@ -3317,7 +3676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:45:02 GMT + - Mon, 02 Aug 2021 18:50:31 GMT expires: - '-1' pragma: @@ -3334,7 +3693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29944 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29892 status: code: 200 message: OK @@ -3352,14 +3711,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4954b9b-c2bf-4953-b25f-a75f8cd20322?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b344d5f4-f242-478d-bf89-282df18d993d?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:44:32.7954894+00:00\",\r\n \"endTime\": - \"2021-07-30T06:45:19.2017389+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b4954b9b-c2bf-4953-b25f-a75f8cd20322\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:49:44.4155795+00:00\",\r\n \"endTime\": + \"2021-08-02T18:50:41.5566707+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b344d5f4-f242-478d-bf89-282df18d993d\"\r\n}" headers: cache-control: - no-cache @@ -3368,7 +3727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:45:32 GMT + - Mon, 02 Aug 2021 18:51:00 GMT expires: - '-1' pragma: @@ -3385,7 +3744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -3403,9 +3762,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b4954b9b-c2bf-4953-b25f-a75f8cd20322?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b344d5f4-f242-478d-bf89-282df18d993d?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -3415,7 +3774,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:45:33 GMT + - Mon, 02 Aug 2021 18:51:00 GMT expires: - '-1' pragma: @@ -3428,7 +3787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29884 status: code: 200 message: OK @@ -3446,8 +3805,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -3461,7 +3820,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:45:34 GMT + - Mon, 02 Aug 2021 18:51:01 GMT expires: - '-1' pragma: @@ -3495,23 +3854,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + [\r\n {\r\n \"name\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:45:18.1392163+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:50:40.5098201+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.serialconsole.log\"\r\n + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.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\": \"2021-07-30T06:45:18.1705105+00:00\"\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-08-02T18:50:40.5254533+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: @@ -3522,7 +3881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:45:36 GMT + - Mon, 02 Aug 2021 18:51:01 GMT expires: - '-1' pragma: @@ -3539,14 +3898,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4994,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2484,Microsoft.Compute/VMScaleSetVMViews3Min;4992 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -3563,7 +3922,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3571,17 +3930,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0cc3b6c5-a374-49d0-bc9d-52e23742a802?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ba7545fd-2d4e-467f-8300-78a817a0de0b?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:45:37 GMT + - Mon, 02 Aug 2021 18:51:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0cc3b6c5-a374-49d0-bc9d-52e23742a802?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ba7545fd-2d4e-467f-8300-78a817a0de0b?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -3592,7 +3951,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1186,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -3614,14 +3973,64 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0cc3b6c5-a374-49d0-bc9d-52e23742a802?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ba7545fd-2d4e-467f-8300-78a817a0de0b?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:45:38.1705027+00:00\",\r\n \"endTime\": - \"2021-07-30T06:45:55.2486199+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0cc3b6c5-a374-49d0-bc9d-52e23742a802\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:51:02.5201293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"ba7545fd-2d4e-467f-8300-78a817a0de0b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:51:32 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;14977,Microsoft.Compute/GetOperation30Min;29880 + 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.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ba7545fd-2d4e-467f-8300-78a817a0de0b?api-version=2021-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-08-02T18:51:02.5201293+00:00\",\r\n \"endTime\": + \"2021-08-02T18:51:37.2437603+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ba7545fd-2d4e-467f-8300-78a817a0de0b\"\r\n}" headers: cache-control: - no-cache @@ -3630,7 +4039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:46:08 GMT + - Mon, 02 Aug 2021 18:52:02 GMT expires: - '-1' pragma: @@ -3647,7 +4056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29938 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29877 status: code: 200 message: OK @@ -3665,9 +4074,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/0cc3b6c5-a374-49d0-bc9d-52e23742a802?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ba7545fd-2d4e-467f-8300-78a817a0de0b?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -3677,7 +4086,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:46:08 GMT + - Mon, 02 Aug 2021 18:52:02 GMT expires: - '-1' pragma: @@ -3690,12 +4099,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29876 status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -3712,7 +4121,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3720,17 +4129,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/56c0826a-00cc-4301-8079-f8b9be14e682?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/938c7e69-49b8-4bb1-8fdd-4783e00ecb32?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:46:10 GMT + - Mon, 02 Aug 2021 18:52:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/56c0826a-00cc-4301-8079-f8b9be14e682?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/938c7e69-49b8-4bb1-8fdd-4783e00ecb32?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -3741,7 +4150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1198' x-ms-request-charge: @@ -3763,23 +4172,23 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/56c0826a-00cc-4301-8079-f8b9be14e682?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/938c7e69-49b8-4bb1-8fdd-4783e00ecb32?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:46:10.5923854+00:00\",\r\n \"endTime\": - \"2021-07-30T06:46:24.748647+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"56c0826a-00cc-4301-8079-f8b9be14e682\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:52:05.3385247+00:00\",\r\n \"endTime\": + \"2021-08-02T18:52:43.8076306+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"938c7e69-49b8-4bb1-8fdd-4783e00ecb32\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:46:40 GMT + - Mon, 02 Aug 2021 18:52:52 GMT expires: - '-1' pragma: @@ -3796,7 +4205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29934 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29873 status: code: 200 message: OK @@ -3814,9 +4223,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/56c0826a-00cc-4301-8079-f8b9be14e682?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/938c7e69-49b8-4bb1-8fdd-4783e00ecb32?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -3826,7 +4235,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:46:40 GMT + - Mon, 02 Aug 2021 18:52:52 GMT expires: - '-1' pragma: @@ -3839,7 +4248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29933 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -3857,8 +4266,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -3872,7 +4281,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:46:42 GMT + - Mon, 02 Aug 2021 18:52:53 GMT expires: - '-1' pragma: @@ -3906,40 +4315,61 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:46:10+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:51:35+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:45:38.7955183+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:51:03.254337+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.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\": \"2021-07-30T06:46:24.7174121+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}" + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:52:43.7920478+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: - - '1759' + - '3278' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:46:43 GMT + - Mon, 02 Aug 2021 18:52:53 GMT expires: - '-1' pragma: @@ -3956,14 +4386,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4993,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;494,Microsoft.Compute/GetVMScaleSetVM30Min;2479,Microsoft.Compute/VMScaleSetVMViews3Min;4992 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -3980,7 +4410,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -3988,17 +4418,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b24e9a87-1e76-4470-9ff3-22d77ff3c6b9?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d2132925-53bc-4282-80f2-bebb4694f1c0?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:46:45 GMT + - Mon, 02 Aug 2021 18:53:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b24e9a87-1e76-4470-9ff3-22d77ff3c6b9?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d2132925-53bc-4282-80f2-bebb4694f1c0?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -4009,7 +4439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1191,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1189,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -4031,14 +4461,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b24e9a87-1e76-4470-9ff3-22d77ff3c6b9?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d2132925-53bc-4282-80f2-bebb4694f1c0?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:46:45.8736398+00:00\",\r\n \"endTime\": - \"2021-07-30T06:46:55.2486238+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b24e9a87-1e76-4470-9ff3-22d77ff3c6b9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:52:54.4327015+00:00\",\r\n \"endTime\": + \"2021-08-02T18:52:57.0889878+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d2132925-53bc-4282-80f2-bebb4694f1c0\"\r\n}" headers: cache-control: - no-cache @@ -4047,7 +4477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:15 GMT + - Mon, 02 Aug 2021 18:53:45 GMT expires: - '-1' pragma: @@ -4064,7 +4494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29931 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29869 status: code: 200 message: OK @@ -4082,9 +4512,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b24e9a87-1e76-4470-9ff3-22d77ff3c6b9?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/d2132925-53bc-4282-80f2-bebb4694f1c0?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -4094,7 +4524,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:47:15 GMT + - Mon, 02 Aug 2021 18:53:45 GMT expires: - '-1' pragma: @@ -4107,7 +4537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29930 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29868 status: code: 200 message: OK @@ -4125,25 +4555,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -4153,21 +4584,32 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3823' + - '4831' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:17 GMT + - Mon, 02 Aug 2021 18:53:46 GMT expires: - '-1' pragma: @@ -4184,31 +4626,37 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;199,Microsoft.Compute/GetVMScaleSet30Min;1287 + - Microsoft.Compute/GetVMScaleSet3Min;198,Microsoft.Compute/GetVMScaleSet30Min;1258 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": "cli6l8766", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + 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": "clire1e02", "adminUsername": "useraabedon", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]}, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cli6l8766Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli6l8766IPConfig", + [{"name": "clire1e02Nic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "clire1e02IPConfig", "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, "settings": {"GCS_AUTO_CONFIG": + true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "settings": {"enableGenevaUpload": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true}}' headers: Accept: - application/json @@ -4219,31 +4667,32 @@ interactions: Connection: - keep-alive Content-Length: - - '2567' + - '3246' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -4253,25 +4702,36 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\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/b5516af6-d212-4a05-971c-648f84ba35be?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8611a9be-f857-4426-aa99-2d08886eb7ce?api-version=2021-03-01 cache-control: - no-cache content-length: - - '3823' + - '4831' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:26 GMT + - Mon, 02 Aug 2021 18:53:47 GMT expires: - '-1' pragma: @@ -4288,7 +4748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;296,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;290,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -4310,14 +4770,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b5516af6-d212-4a05-971c-648f84ba35be?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8611a9be-f857-4426-aa99-2d08886eb7ce?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:47:24.3892839+00:00\",\r\n \"endTime\": - \"2021-07-30T06:47:24.7017795+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b5516af6-d212-4a05-971c-648f84ba35be\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:53:48.2612354+00:00\",\r\n \"endTime\": + \"2021-08-02T18:53:48.4956434+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8611a9be-f857-4426-aa99-2d08886eb7ce\"\r\n}" headers: cache-control: - no-cache @@ -4326,7 +4786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:36 GMT + - Mon, 02 Aug 2021 18:53:58 GMT expires: - '-1' pragma: @@ -4343,7 +4803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29928 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29867 status: code: 200 message: OK @@ -4361,25 +4821,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -4389,21 +4850,32 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3824' + - '4832' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:37 GMT + - Mon, 02 Aug 2021 18:53:58 GMT expires: - '-1' pragma: @@ -4420,7 +4892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1284 + - Microsoft.Compute/GetVMScaleSet3Min;195,Microsoft.Compute/GetVMScaleSet30Min;1255 status: code: 200 message: OK @@ -4438,8 +4910,8 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -4453,7 +4925,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:47:38 GMT + - Mon, 02 Aug 2021 18:53:58 GMT expires: - '-1' pragma: @@ -4487,40 +4959,61 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:47:13+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:53:19+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:45:38.7955183+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:51:03.254337+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": - \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-cli6lodwf-97812956-5adb-43d5-a38b-60b447536f62/cli000003_3.97812956-5adb-43d5-a38b-60b447536f62.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\": \"2021-07-30T06:46:55.233002+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://cli000002.blob.core.windows.net/bootdiagnostics-clirezwrc-4b74c97f-772a-46b7-a64b-ac3ac6899bee/cli000003_2.4b74c97f-772a-46b7-a64b-ac3ac6899bee.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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:52:57.05773+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: - - '1758' + - '3276' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:47:39 GMT + - Mon, 02 Aug 2021 18:53:58 GMT expires: - '-1' pragma: @@ -4537,14 +5030,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4992,Microsoft.Compute/VMScaleSetVMViews3Min;4997 + - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2476,Microsoft.Compute/VMScaleSetVMViews3Min;4988 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -4561,7 +5054,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -4569,17 +5062,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/62314b70-0f42-46e9-8d19-fe70f0c4a1fa?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff68727e-7993-4b36-9a7c-58183dee13c5?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:47:41 GMT + - Mon, 02 Aug 2021 18:53:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/62314b70-0f42-46e9-8d19-fe70f0c4a1fa?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff68727e-7993-4b36-9a7c-58183dee13c5?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -4590,9 +5083,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -4612,14 +5105,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/62314b70-0f42-46e9-8d19-fe70f0c4a1fa?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff68727e-7993-4b36-9a7c-58183dee13c5?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:47:41.8736907+00:00\",\r\n \"endTime\": - \"2021-07-30T06:47:46.9674593+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"62314b70-0f42-46e9-8d19-fe70f0c4a1fa\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:53:59.2925963+00:00\",\r\n \"endTime\": + \"2021-08-02T18:54:05.9801186+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ff68727e-7993-4b36-9a7c-58183dee13c5\"\r\n}" headers: cache-control: - no-cache @@ -4628,7 +5121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:48:12 GMT + - Mon, 02 Aug 2021 18:54:29 GMT expires: - '-1' pragma: @@ -4645,7 +5138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29864 status: code: 200 message: OK @@ -4663,9 +5156,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/62314b70-0f42-46e9-8d19-fe70f0c4a1fa?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff68727e-7993-4b36-9a7c-58183dee13c5?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -4675,7 +5168,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:48:12 GMT + - Mon, 02 Aug 2021 18:54:29 GMT expires: - '-1' pragma: @@ -4688,7 +5181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29925 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -4706,8 +5199,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -4721,7 +5214,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:48:14 GMT + - Mon, 02 Aug 2021 18:54:30 GMT expires: - '-1' pragma: @@ -4755,38 +5248,59 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:47:50+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:54:11+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:45:38.7955183+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\": \"2021-07-30T06:47:46.9361518+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\": \"2021-08-02T18:51:03.254337+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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:54:05.9488768+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1262' + - '2781' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:48:15 GMT + - Mon, 02 Aug 2021 18:54:29 GMT expires: - '-1' pragma: @@ -4803,7 +5317,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4991,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;491,Microsoft.Compute/GetVMScaleSetVM30Min;2475,Microsoft.Compute/VMScaleSetVMViews3Min;4988 x-ms-request-charge: - '1' status: @@ -4825,25 +5339,25 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/deallocate?api-version=2021-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b87310bf-8981-453d-9b0c-5f2ff39754ed?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/57433d58-2c3a-4ea4-bc14-083feca4d645?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:48:16 GMT + - Mon, 02 Aug 2021 18:54:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b87310bf-8981-453d-9b0c-5f2ff39754ed?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/57433d58-2c3a-4ea4-bc14-083feca4d645?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -4854,7 +5368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -4876,13 +5390,13 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b87310bf-8981-453d-9b0c-5f2ff39754ed?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/57433d58-2c3a-4ea4-bc14-083feca4d645?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:48:17.1549064+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b87310bf-8981-453d-9b0c-5f2ff39754ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:54:30.8709679+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"57433d58-2c3a-4ea4-bc14-083feca4d645\"\r\n}" headers: cache-control: - no-cache @@ -4891,7 +5405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:48:46 GMT + - Mon, 02 Aug 2021 18:55:01 GMT expires: - '-1' pragma: @@ -4908,7 +5422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29860 status: code: 200 message: OK @@ -4926,14 +5440,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b87310bf-8981-453d-9b0c-5f2ff39754ed?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/57433d58-2c3a-4ea4-bc14-083feca4d645?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:48:17.1549064+00:00\",\r\n \"endTime\": - \"2021-07-30T06:49:06.6549794+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b87310bf-8981-453d-9b0c-5f2ff39754ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:54:30.8709679+00:00\",\r\n \"endTime\": + \"2021-08-02T18:55:26.0748514+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"57433d58-2c3a-4ea4-bc14-083feca4d645\"\r\n}" headers: cache-control: - no-cache @@ -4942,7 +5456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:49:17 GMT + - Mon, 02 Aug 2021 18:55:30 GMT expires: - '-1' pragma: @@ -4959,7 +5473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29920 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -4977,9 +5491,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/b87310bf-8981-453d-9b0c-5f2ff39754ed?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/57433d58-2c3a-4ea4-bc14-083feca4d645?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -4989,7 +5503,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:49:17 GMT + - Mon, 02 Aug 2021 18:55:30 GMT expires: - '-1' pragma: @@ -5002,7 +5516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29919 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -5020,8 +5534,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -5035,7 +5549,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:49:19 GMT + - Mon, 02 Aug 2021 18:55:31 GMT expires: - '-1' pragma: @@ -5069,32 +5583,32 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + [\r\n {\r\n \"name\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:49:05.6080527+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-08-02T18:55:24.9966162+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\": \"2021-07-30T06:49:05.639287+00:00\"\r\n },\r\n {\r\n + \ \"time\": \"2021-08-02T18:55:25.0279383+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: - - '853' + - '854' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:49:21 GMT + - Mon, 02 Aug 2021 18:55:31 GMT expires: - '-1' pragma: @@ -5111,14 +5625,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4990,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;495,Microsoft.Compute/GetVMScaleSetVM30Min;2474,Microsoft.Compute/VMScaleSetVMViews3Min;4992 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -5135,7 +5649,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -5143,17 +5657,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13f84378-c19f-437c-9d7f-82461ef9daa9?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bed1d3d7-99cf-4493-ba46-d259f25cf66a?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:49:22 GMT + - Mon, 02 Aug 2021 18:55:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13f84378-c19f-437c-9d7f-82461ef9daa9?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bed1d3d7-99cf-4493-ba46-d259f25cf66a?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -5164,9 +5678,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1189,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '1' status: @@ -5186,14 +5700,64 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bed1d3d7-99cf-4493-ba46-d259f25cf66a?api-version=2021-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-08-02T18:55:32.2312709+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bed1d3d7-99cf-4493-ba46-d259f25cf66a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 02 Aug 2021 18:56:02 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;14982,Microsoft.Compute/GetOperation30Min;29852 + 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.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13f84378-c19f-437c-9d7f-82461ef9daa9?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bed1d3d7-99cf-4493-ba46-d259f25cf66a?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:49:23.5767545+00:00\",\r\n \"endTime\": - \"2021-07-30T06:49:37.5611447+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"13f84378-c19f-437c-9d7f-82461ef9daa9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:55:32.2312709+00:00\",\r\n \"endTime\": + \"2021-08-02T18:56:08.0131144+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"bed1d3d7-99cf-4493-ba46-d259f25cf66a\"\r\n}" headers: cache-control: - no-cache @@ -5202,7 +5766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:49:53 GMT + - Mon, 02 Aug 2021 18:56:31 GMT expires: - '-1' pragma: @@ -5219,7 +5783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29916 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29848 status: code: 200 message: OK @@ -5237,9 +5801,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/13f84378-c19f-437c-9d7f-82461ef9daa9?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/bed1d3d7-99cf-4493-ba46-d259f25cf66a?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -5249,7 +5813,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:49:54 GMT + - Mon, 02 Aug 2021 18:56:31 GMT expires: - '-1' pragma: @@ -5262,7 +5826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -5280,25 +5844,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5308,21 +5873,32 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3824' + - '4832' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:49:55 GMT + - Mon, 02 Aug 2021 18:56:32 GMT expires: - '-1' pragma: @@ -5339,31 +5915,37 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;193,Microsoft.Compute/GetVMScaleSet30Min;1281 + - Microsoft.Compute/GetVMScaleSet3Min;194,Microsoft.Compute/GetVMScaleSet30Min;1249 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": "cli6l8766", "adminUsername": - "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}, + 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": "clire1e02", "adminUsername": "useraabedon", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/useraabedon/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3"}]}, "provisionVMAgent": true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "cli6l8766Nic", "properties": {"primary": true, "enableAcceleratedNetworking": - false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "cli6l8766IPConfig", + [{"name": "clire1e02Nic", "properties": {"primary": true, "enableAcceleratedNetworking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "clire1e02IPConfig", "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, "settings": {"GCS_AUTO_CONFIG": + true}}}, {"name": "Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent", + "properties": {"publisher": "Microsoft.Azure.Security.Monitoring", "type": "AzureSecurityLinuxAgent", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "settings": {"enableGenevaUpload": + true}}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true}}' headers: Accept: - application/json @@ -5374,31 +5956,32 @@ interactions: Connection: - keep-alive Content-Length: - - '2566' + - '3245' Content-Type: - application/json ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5408,24 +5991,35 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\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/11d8398f-8341-440e-bfc7-5d86e0a1d917?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff230fa7-7692-43b5-84a1-df35be844f13?api-version=2021-03-01 cache-control: - no-cache content-length: - - '3738' + - '4746' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:04 GMT + - Mon, 02 Aug 2021 18:56:34 GMT expires: - '-1' pragma: @@ -5442,9 +6036,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;295,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;289,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '0' status: @@ -5464,14 +6058,14 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/11d8398f-8341-440e-bfc7-5d86e0a1d917?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/ff230fa7-7692-43b5-84a1-df35be844f13?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:50:01.7017513+00:00\",\r\n \"endTime\": - \"2021-07-30T06:50:01.8267774+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"11d8398f-8341-440e-bfc7-5d86e0a1d917\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:56:34.0601758+00:00\",\r\n \"endTime\": + \"2021-08-02T18:56:34.2633043+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ff230fa7-7692-43b5-84a1-df35be844f13\"\r\n}" headers: cache-control: - no-cache @@ -5480,7 +6074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:14 GMT + - Mon, 02 Aug 2021 18:56:44 GMT expires: - '-1' pragma: @@ -5497,7 +6091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29913 + - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -5515,25 +6109,26 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n + \"westus2\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"cli6l8766\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"clire1e02\",\r\n \"adminUsername\": \"useraabedon\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": - \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh\"\r\n + \"/home/useraabedon/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0Gw3f0EtRO65EEYmPvlLEDipvXLlMW75hZpyuR5jAYFWTx1rHcLaUL9GtG+KQWtXBjVBTJzo3Srr4inbf1Mf21Vpy3JLfiwkN09PQlMIQXj1xgKwK6x5IXRr1+2i9VhcXQ05hsld5YPTqUW7wUIcdikQfwmHGtmZ92WiLdvAqODi9ceEcuJrABb14gquHnmbc9zVS3LhWGT+x8pvyw7co8IjmGfPuto+XbP+dOJUwNQ9nrdhhAkzHtAM5cfI5s974rREACnMszdOvszDPnL5YF6gnwHa4H1EGPfbdoV1nuSZbi9exSDP1qy3yUyJo5gI7VITgCHFyDWUAcOIlRBY3\"\r\n \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": @@ -5543,20 +6138,31 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"cli6l8766Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"cli6l8766IPConfig\",\"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\":\"clire1e02Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"clire1e02IPConfig\",\"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\": \"75e82f91-c347-460c-a2bf-678ac7eb199e\"\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 \"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 \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n + \ \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":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\": \"69709fda-aa89-462d-87f7-272a63ced539\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3739' + - '4747' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:14 GMT + - Mon, 02 Aug 2021 18:56:44 GMT expires: - '-1' pragma: @@ -5573,7 +6179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;193,Microsoft.Compute/GetVMScaleSet30Min;1278 + - Microsoft.Compute/GetVMScaleSet3Min;190,Microsoft.Compute/GetVMScaleSet30Min;1245 status: code: 200 message: OK @@ -5591,8 +6197,8 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -5606,7 +6212,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:50:16 GMT + - Mon, 02 Aug 2021 18:56:44 GMT expires: - '-1' pragma: @@ -5640,38 +6246,59 @@ interactions: ParameterSetName: - --name --resource-group --set User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:49:51+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:56:06+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:49:24.1080509+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\": \"2021-07-30T06:49:37.5299403+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\": \"2021-08-02T18:55:32.9344446+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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:56:07.9818472+00:00\"\r\n },\r\n {\r\n \"code\": + \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1262' + - '2782' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:17 GMT + - Mon, 02 Aug 2021 18:56:44 GMT expires: - '-1' pragma: @@ -5688,14 +6315,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4989,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;497,Microsoft.Compute/GetVMScaleSetVM30Min;2473,Microsoft.Compute/VMScaleSetVMViews3Min;4997 x-ms-request-charge: - '1' status: code: 200 message: OK - request: - body: '{"instanceIds": ["3"]}' + body: '{"instanceIds": ["2"]}' headers: Accept: - '*/*' @@ -5712,7 +6339,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 response: @@ -5720,17 +6347,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c13e0e35-2e1d-4910-b4c5-2ecd296f75a7?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06c7758e-223b-4821-9a23-46b9ade2bea4?api-version=2021-03-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 30 Jul 2021 06:50:19 GMT + - Mon, 02 Aug 2021 18:56:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c13e0e35-2e1d-4910-b4c5-2ecd296f75a7?monitor=true&api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06c7758e-223b-4821-9a23-46b9ade2bea4?monitor=true&api-version=2021-03-01 pragma: - no-cache server: @@ -5741,7 +6368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1191,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1188,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -5763,14 +6390,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c13e0e35-2e1d-4910-b4c5-2ecd296f75a7?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06c7758e-223b-4821-9a23-46b9ade2bea4?api-version=2021-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-07-30T06:50:19.7017639+00:00\",\r\n \"endTime\": - \"2021-07-30T06:50:28.2486278+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c13e0e35-2e1d-4910-b4c5-2ecd296f75a7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-08-02T18:56:45.0758792+00:00\",\r\n \"endTime\": + \"2021-08-02T18:56:51.9977802+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"06c7758e-223b-4821-9a23-46b9ade2bea4\"\r\n}" headers: cache-control: - no-cache @@ -5779,7 +6406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:49 GMT + - Mon, 02 Aug 2021 18:57:15 GMT expires: - '-1' pragma: @@ -5796,7 +6423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29911 + - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29840 status: code: 200 message: OK @@ -5814,9 +6441,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c13e0e35-2e1d-4910-b4c5-2ecd296f75a7?monitor=true&api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/06c7758e-223b-4821-9a23-46b9ade2bea4?monitor=true&api-version=2021-03-01 response: body: string: '' @@ -5826,7 +6453,7 @@ interactions: content-length: - '0' date: - - Fri, 30 Jul 2021 06:50:49 GMT + - Mon, 02 Aug 2021 18:57:15 GMT expires: - '-1' pragma: @@ -5839,7 +6466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29910 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -5857,8 +6484,8 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + (Windows-10-10.0.19042-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: @@ -5872,7 +6499,7 @@ interactions: content-type: - application/json; charset=UTF-8 date: - - Fri, 30 Jul 2021 06:50:52 GMT + - Mon, 02 Aug 2021 18:57:15 GMT expires: - '-1' pragma: @@ -5906,38 +6533,59 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.27.0 azsdk-python-azure-mgmt-compute/22.0.0 Python/3.8.10 (Windows-10-10.0.19042-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=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_serialconsole000001/providers/Microsoft.Compute/virtualMachineScaleSets/cli000003/virtualmachines/2/instanceView?api-version=2021-03-01 response: body: - string: "{\r\n \"placementGroupId\": \"9b9a1310-653e-472d-a6f4-8adce5f2fd52\",\r\n + string: "{\r\n \"placementGroupId\": \"04915201-3ec9-4b11-ad5f-163228089358\",\r\n \ \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": - \"cli6l8766000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \"clire1e02000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.3.1.1\",\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\": \"2021-07-30T06:50:27+00:00\"\r\n - \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": - [\r\n {\r\n \"name\": \"cli6lodwfzgpf6rmlu76cli6lodwfzgpf6rmlu76pOS__1_4a30fa0682b14f3da2cfd642cac5d280\",\r\n + \"Guest Agent is running\",\r\n \"time\": \"2021-08-02T18:56:58+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": + \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": + \"1.10.5\",\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.17.168\",\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\": \"clirezwrcs66n46afexeclirezwrcs66n46afexejOS__1_a207b63ef73c4436871b71f4d17becef\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-07-30T06:50:20.6861404+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\": \"2021-07-30T06:50:28.2173773+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\": \"2021-08-02T18:56:46.1696322+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.10.5\",\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.17.168\",\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\": + \"2021-08-02T18:56:51.9665576+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: - - '1288' + - '2808' content-type: - application/json; charset=utf-8 date: - - Fri, 30 Jul 2021 06:50:53 GMT + - Mon, 02 Aug 2021 18:57:15 GMT expires: - '-1' pragma: @@ -5954,7 +6602,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;996,Microsoft.Compute/GetVMScaleSetVM30Min;4988,Microsoft.Compute/VMScaleSetVMViews3Min;4996 + - Microsoft.Compute/GetVMScaleSetVM3Min;496,Microsoft.Compute/GetVMScaleSetVM30Min;2472,Microsoft.Compute/VMScaleSetVMViews3Min;4996 x-ms-request-charge: - '1' status: 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 c24f9cb0969..477b881555b 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,22 +15,22 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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 }" + string: "{\n \"properties\": {\n \"disabled\": true\n }\n}" headers: cache-control: - no-cache content-length: - - '46' + - '42' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:37:24 GMT + - Mon, 02 Aug 2021 18:41:04 GMT expires: - '-1' pragma: @@ -68,22 +68,22 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.25.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 + - AZURECLI/2.27.0 azsdk-python-microsoftserialconsoleclient/unknown Python/3.8.10 (Windows-10-10.0.19042-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 }" + string: "{\n \"properties\": {\n \"disabled\": false\n }\n}" headers: cache-control: - no-cache content-length: - - '47' + - '43' content-type: - application/json; charset=UTF-8 date: - - Wed, 07 Jul 2021 21:37:24 GMT + - Mon, 02 Aug 2021 18:41:04 GMT expires: - '-1' pragma: diff --git a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py index 65d19b1b004..b54947cf357 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py +++ b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py @@ -50,7 +50,8 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss update --name {name} --resource-group {rg} --set virtualMachineProfile.diagnosticsProfile="{{\\"bootDiagnostics\\": {{\\"Enabled\\" : \\"True\\",\\"StorageUri\\" : null}}}}"') self.cmd('az vmss update-instances -g {rg} -n {name} --instance-ids {id}') - check_resource(self.cli_ctx, resource_group, name, iid) + with self.assertRaises(AzureConnectionError): + check_resource(self.cli_ctx, resource_group, name, iid) self.cmd('az vmss deallocate -g {rg} -n {name} --instance-ids {id}') @@ -60,7 +61,8 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss start -g {rg} -n {name} --instance-ids {id}') self.cmd('az vmss stop -g {rg} -n {name} --instance-ids {id}') - check_resource(self.cli_ctx, resource_group, name, iid) + with self.assertRaises(AzureConnectionError): + check_resource(self.cli_ctx, resource_group, name, iid) self.cmd('az vmss start -g {rg} -n {name} --instance-ids {id}') self.cmd('az vmss update --name {name} --resource-group {rg} --set virtualMachineProfile.diagnosticsProfile="{{\\"bootDiagnostics\\": {{\\"Enabled\\" : \\"True\\",\\"StorageUri\\":\\"https://{sa}.blob.core.windows.net/\\"}}}}"') @@ -110,7 +112,8 @@ def test_check_resource_VMSS(self, resource_group, storage_account): self.cmd('az vmss update-instances -g {rg} -n {name} --instance-ids {id}') - check_resource(self.cli_ctx, resource_group, name, iid) + with self.assertRaises(AzureConnectionError): + check_resource(self.cli_ctx, resource_group, name, iid) @ResourceGroupPreparer(name_prefix='cli_test_serialconsole', location='westus2') @StorageAccountPreparer(name_prefix='cli', location="westus2") @@ -136,7 +139,8 @@ def test_check_resource_VM(self, resource_group, storage_account): self.cmd('az vm boot-diagnostics enable -g {rg} -n {name}') - check_resource(self.cli_ctx, resource_group, name, None) + with self.assertRaises(AzureConnectionError): + check_resource(self.cli_ctx, resource_group, name, None) self.cmd('az vm deallocate -g {rg} -n {name}') @@ -146,7 +150,8 @@ def test_check_resource_VM(self, resource_group, storage_account): self.cmd('az vm start -g {rg} -n {name}') self.cmd('az vm stop -g {rg} -n {name}') - check_resource(self.cli_ctx, resource_group, name, None) + with self.assertRaises(AzureConnectionError): + check_resource(self.cli_ctx, resource_group, name, None) self.cmd('az vm boot-diagnostics disable -g {rg} -n {name}') @@ -171,6 +176,10 @@ def test_check_resource_VM(self, resource_group, storage_account): check_resource(self.cli_ctx, resource_group, name, None) + self.cmd('az vm stop -g {rg} -n {name}') + + check_resource(self.cli_ctx, resource_group, name, None) + self.cmd('az vm deallocate -g {rg} -n {name}') with self.assertRaises(AzureConnectionError): diff --git a/src/serial-console/setup.py b/src/serial-console/setup.py index 0ea19bd2be1..df40ae9cf29 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.0' +VERSION = '0.1.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers