From e66c3682ba10ed7b7b9dd610d56bdf48619db3cc Mon Sep 17 00:00:00 2001 From: qinkaiwu Date: Wed, 11 Oct 2023 11:37:53 +0800 Subject: [PATCH 1/7] Remove unversioned aliases in cache file and replace the usage in tests --- .../cli/command_modules/keyvault/_help.py | 4 +- .../tests/latest/test_monitor_autoscale.py | 16 +- .../test_monitor_diagnostic_settings.py | 4 +- .../latest/test_monitor_general_operations.py | 6 +- .../test_monitor_metric_alert_scenarios.py | 2 +- .../test_network_commands.py | 4 +- .../test_network_commands.py | 2 +- .../test_network_commands.py | 2 +- .../tests/latest/test_network_commands.py | 8 +- .../latest/test_nw_connection_monitor.py | 2 +- .../tests/hybrid_2018_03_01/test_resource.py | 2 +- .../test_resource_id_deletes.py | 2 +- .../tests/hybrid_2019_03_01/test_resource.py | 2 +- .../test_resource_id_deletes.py | 2 +- .../resource/tests/latest/test_resource.py | 8 +- .../tests/latest/test_resource_id_deletes.py | 2 +- .../azure/cli/command_modules/vm/_alias.py | 49 ------- .../hybrid_2018_03_01/test_vm_commands.py | 104 ++++++------- .../hybrid_2019_03_01/test_vm_commands.py | 138 +++++++++--------- .../hybrid_2020_09_01/test_vm_commands.py | 100 ++++++------- .../vm/tests/latest/test_vm_commands.py | 6 +- 21 files changed, 208 insertions(+), 257 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py index 07e67c29077..829d9e0a9f4 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py @@ -58,7 +58,7 @@ vm_secrets=$(az vm secret format -s "$secrets") az vm create -g group-name -n vm-name --admin-username deploy \\ - --image debian --secrets "$vm_secrets" + --image Debian:debian-10:10:latest --secrets "$vm_secrets" """ helps['keyvault certificate list'] = """ @@ -166,7 +166,7 @@ vm_secrets=$(az vm secret format -s "$secrets") az vm create -g group-name -n vm-name --admin-username deploy \\ - --image debian --secrets "$vm_secrets" + --image Debian:debian-10:10:latest --secrets "$vm_secrets" """ helps['keyvault certificate backup'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_autoscale.py b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_autoscale.py index 8fbce9dd68a..f9a75b0ba57 100644 --- a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_autoscale.py +++ b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_autoscale.py @@ -15,7 +15,7 @@ def test_monitor_autoscale_basic(self, resource_group): self.kwargs.update({ 'vmss': 'vmss1' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3 ', checks=[ @@ -55,7 +55,7 @@ def test_monitor_autoscale_refined(self, resource_group): self.kwargs.update({ 'vmss': 'vmss1' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3 --action email abc@example.com efg@example.com opq@example.com --action webhook https://www.contoso.com/alert apiKey=value', checks=[ @@ -101,7 +101,7 @@ def test_monitor_autoscale_rules(self, resource_group): self.kwargs.update({ 'vmss': 'vmss1' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --min-count 1 --count 3 --max-count 5') @@ -193,7 +193,7 @@ def test_monitor_autoscale_rule_with_dimensions(self, resource_group): 'vmss': 'vmss1' }) self.cmd( - 'vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$ --instance-count 2') + 'vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$ --instance-count 2') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --min-count 1 --count 3 --max-count 5') @@ -273,7 +273,7 @@ def test_monitor_autoscale_fixed(self, resource_group): 'vmss': 'vmss1', 'sched': 'Christmas' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3') @@ -310,7 +310,7 @@ def test_monitor_autoscale_recurring(self, resource_group): self.kwargs.update({ 'vmss': 'vmss1' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testname --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testname --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3') @@ -368,7 +368,7 @@ def test_monitor_autoscale_predictive_policy(self, resource_group): 'new-scale-mode': 'ForecastOnly' }) self.cmd( - 'vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + 'vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3 --scale-mode {scale-mode}', checks=[ @@ -400,7 +400,7 @@ def test_monitor_autoscale_show_predictive_metric(self, resource_group): 'scale-mode': 'Enabled', }) self.cmd( - 'vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + 'vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('monitor autoscale create --resource {vmss_id} --count 3 --max-count 5 --min-count 1 ' diff --git a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py index c1b5387ee58..d866962aad1 100644 --- a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py +++ b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_diagnostic_settings.py @@ -78,9 +78,9 @@ def test_monitor_diagnostic_settings_marketplace_id(self, resource_group): self.cmd('network nsg create -n {nsg} -g {rg}') #self.kwargs['mp_id'] = self.cmd('network nsg show -n {nsg} -g {rg}').get_output_in_json()['id'] - #self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username testadmin --admin-password TestTest12#$') + #self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username testadmin --admin-password TestTest12#$') #self.kwargs['mp_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] - # self.kwargs['mp_id'] = self.cmd('vm create -g {rg} -n {vm1} --image UbuntuLTS --admin-password TestPassword11!! ' + # self.kwargs['mp_id'] = self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password TestPassword11!! ' # '--admin-username testadmin --authentication-type password').get_output_in_json()['id'] self.cmd('monitor log-analytics workspace create -g {rg} -n {ws}') diff --git a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_general_operations.py b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_general_operations.py index 7e5f49cc2a8..72d36f4653e 100644 --- a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_general_operations.py +++ b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_general_operations.py @@ -22,11 +22,11 @@ def test_monitor_clone_vm_metric_alerts_scenario(self, resource_group): 'rg': resource_group }) - vm1_json = self.cmd('vm create -g {rg} -n {vm1} --image UbuntuLTS --admin-password TestPassword11!! ' + vm1_json = self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password TestPassword11!! ' '--admin-username testadmin --authentication-type password').get_output_in_json() - vm2_json = self.cmd('vm create -g {rg} -n {vm2} --image UbuntuLTS --admin-password TestPassword11!! ' + vm2_json = self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password TestPassword11!! ' '--admin-username testadmin --authentication-type password').get_output_in_json() - vm3_json = self.cmd('vm create -g {rg} -n {vm3} --image UbuntuLTS --admin-password TestPassword11!! ' + vm3_json = self.cmd('vm create -g {rg} -n {vm3} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password TestPassword11!! ' '--admin-username testadmin --authentication-type password').get_output_in_json() self.kwargs.update({ 'vm1_id': vm1_json['id'], diff --git a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_metric_alert_scenarios.py b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_metric_alert_scenarios.py index 74bc5dfd923..5c25f7feb0c 100644 --- a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_metric_alert_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/test_monitor_metric_alert_scenarios.py @@ -139,7 +139,7 @@ def test_metric_alert_special_char_scenario(self, resource_group): @ResourceGroupPreparer(name_prefix='cli_test_monitor') def test_metric_alert_basic_scenarios(self, resource_group): vm = 'vm1' - vm_json = self.cmd('vm create -g {} -n {} --image UbuntuLTS --admin-password TestPassword11!! --admin-username ' + vm_json = self.cmd('vm create -g {} -n {} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password TestPassword11!! --admin-username ' 'testadmin --authentication-type password'.format(resource_group, vm)).get_output_in_json() vm_id = vm_json['id'] diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py index 2bdce5ab1ca..a0dba114fb7 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py @@ -711,7 +711,7 @@ class NetworkNicConvenienceCommandsScenarioTest(ScenarioTest): def test_network_nic_convenience_commands(self, resource_group): self.kwargs['vm'] = 'conveniencevm1' - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') self.kwargs['nic_id'] = self.cmd('vm show -g {rg} -n {vm} --query "networkProfile.networkInterfaces[0].id"').get_output_in_json() self.cmd('network nic list-effective-nsg --ids {nic_id}', checks=self.greater_than('length(@)', 0)) @@ -1335,7 +1335,7 @@ def _network_watcher_configure(self): def _network_watcher_vm(self): self.kwargs['private-ip'] = '10.0.0.9' - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {nsg} --private-ip-address {private-ip}') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {nsg} --private-ip-address {private-ip}') self.cmd('vm extension set -g {rg} --vm-name {vm} -n NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher') self.cmd('network watcher show-topology -g {rg}') diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2019_03_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2019_03_01/test_network_commands.py index d3e9bf4d47d..1ced392baae 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2019_03_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2019_03_01/test_network_commands.py @@ -957,7 +957,7 @@ class NetworkNicConvenienceCommandsScenarioTest(ScenarioTest): def test_network_nic_convenience_commands(self, resource_group): self.kwargs['vm'] = 'conveniencevm1' - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') self.kwargs['nic_id'] = self.cmd('vm show -g {rg} -n {vm} --query "networkProfile.networkInterfaces[0].id"').get_output_in_json() self.cmd('network nic list-effective-nsg --ids {nic_id}', checks=self.greater_than('length(@)', 0)) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2020_09_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2020_09_01/test_network_commands.py index 9cf168ca97a..1c83f356d95 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2020_09_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2020_09_01/test_network_commands.py @@ -1057,7 +1057,7 @@ class NetworkNicConvenienceCommandsScenarioTest(ScenarioTest): def test_network_nic_convenience_commands(self, resource_group): self.kwargs['vm'] = 'conveniencevm1' - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password') self.kwargs['nic_id'] = self.cmd('vm show -g {rg} -n {vm} --query "networkProfile.networkInterfaces[0].id"').get_output_in_json() self.cmd('network nic list-effective-nsg --ids {nic_id}', checks=self.greater_than('length(@)', 0)) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py index b0295f529b0..25264ccb9d5 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py @@ -4453,7 +4453,7 @@ class NetworkNicConvenienceCommandsScenarioTest(ScenarioTest): def test_network_nic_convenience_commands(self, resource_group): self.kwargs['vm'] = 'conveniencevm1' - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password --nsg-rule None') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password --nsg-rule None') self.kwargs['nic_id'] = self.cmd('vm show -g {rg} -n {vm} --query "networkProfile.networkInterfaces[0].id"').get_output_in_json() self.cmd('network nic list-effective-nsg --ids {nic_id}', checks=self.greater_than('length(@)', 0)) @@ -6059,7 +6059,7 @@ def test_network_watcher_vm(self, resource_group, resource_group_location): 'private-ip': '10.0.0.9' }) - vm = self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {nsg} --nsg-rule None --private-ip-address {private-ip}').get_output_in_json() + vm = self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {nsg} --nsg-rule None --private-ip-address {private-ip}').get_output_in_json() self.kwargs['vm_id'] = vm['id'] self.cmd('vm extension set -g {rg} --vm-name {vm} -n NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher') @@ -6083,7 +6083,7 @@ def test_network_watcher_packet_capture(self, resource_group, resource_group_loc 'capture2': 'capture2' }) - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {vm} --nsg-rule None') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username deploy --admin-password PassPass10!) --nsg {vm} --nsg-rule None') self.cmd('vm extension set -g {rg} --vm-name {vm} -n NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher') self.cmd('network watcher packet-capture create -g {rg} --vm {vm} -n {capture1} --file-path capture/capture.cap') @@ -6108,7 +6108,7 @@ def test_network_watcher_packet_capture_vmss_as_target(self, resource_group, res 'capture1': 'captureVMSS1', 'capture2': 'captureVMSS2' }) - self.cmd('vmss create -g {rg} --name {vmss} --image UbuntuLTS --location {loc} --admin-username azureuser --generate-ssh-keys --upgrade-policy-mode Automatic') + self.cmd('vmss create -g {rg} --name {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --location {loc} --admin-username azureuser --generate-ssh-keys --upgrade-policy-mode Automatic') self.cmd('vmss extension set --name NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher --resource-group {rg} --vmss-name {vmss}') self.cmd('network watcher packet-capture create -g {rg} --target {vmss} -n {capture} --target-type AzureVMSS --file-path capture/capture.cap', checks=[ diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_nw_connection_monitor.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_nw_connection_monitor.py index 8d8f6a8fc7a..157a3c85735 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_nw_connection_monitor.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_nw_connection_monitor.py @@ -14,7 +14,7 @@ class NWConnectionMonitorScenarioTest(ScenarioTest): def _prepare_vm(self, resource_group, vm): vm_create_cmd_tpl = 'vm create -g {rg} --name {vm} ' \ - '--image UbuntuLTS ' \ + '--image Canonical:UbuntuServer:18.04-LTS:latest ' \ '--nsg {vm} ' \ '--generate-ssh-keys '\ '--nsg-rule None ' diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource.py index f4be2596b7e..d28ce018f59 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource.py @@ -527,7 +527,7 @@ def test_invoke_action(self, resource_group): 'pass': self.create_random_name('Longpassword#1', 30) }) - self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image UbuntuLTS --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] + self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] self.cmd('resource invoke-action --action powerOff --ids {vm_id}') self.cmd('resource invoke-action --action generalize --ids {vm_id}') diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource_id_deletes.py b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource_id_deletes.py index e8928d28090..85abe72fc28 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource_id_deletes.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2018_03_01/test_resource_id_deletes.py @@ -16,7 +16,7 @@ def test_delete_dependent_resources(self, resource_group): username = 'ubuntu' password = self.create_random_name('Password#1', 30) - self.cmd('vm create -n {} -g {} --image UbuntuLTS --tag {} ' + self.cmd('vm create -n {} -g {} --image Canonical:UbuntuServer:18.04-LTS:latest --tag {} ' '--admin-username {} --admin-password {} --authentication-type {} --nsg-rule None' .format(vm_name, resource_group, tag_name, username, password, 'password')) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource.py index 93c4b213f1b..7560031aee2 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource.py @@ -954,7 +954,7 @@ def test_invoke_action(self, resource_group): 'pass': self.create_random_name('Longpassword#1', 30) }) - self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image UbuntuLTS --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] + self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] self.cmd('resource invoke-action --action powerOff --ids {vm_id}') self.cmd('resource invoke-action --action generalize --ids {vm_id}') diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource_id_deletes.py b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource_id_deletes.py index b2c65c9b5be..98b7101edef 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource_id_deletes.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/hybrid_2019_03_01/test_resource_id_deletes.py @@ -16,7 +16,7 @@ def test_delete_dependent_resources(self, resource_group): username = 'ubuntu' password = self.create_random_name('Password#1', 30) - self.cmd('vm create -n {} -g {} --image UbuntuLTS --tag {} ' + self.cmd('vm create -n {} -g {} --image Canonical:UbuntuServer:18.04-LTS:latest --tag {} ' '--admin-username {} --admin-password {} --authentication-type {} --nsg-rule None' .format(vm_name, resource_group, tag_name, username, password, 'password')) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 7f3fa0de133..c7d619bc003 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -254,7 +254,7 @@ def test_resource_patch(self, resource_group): 'vm': 'vm' }) self.kwargs['vm_id'] = self.cmd( - 'vm create -g {rg} -n {vm} --image UbuntuLTS --size Standard_D2s_v3 --v-cpus-available 1 ' + 'vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --size Standard_D2s_v3 --v-cpus-available 1 ' '--v-cpus-per-core 1 --admin-username vmtest --generate-ssh-keys --nsg-rule NONE', ).get_output_in_json()['id'] @@ -4735,7 +4735,7 @@ def test_group_deployment_cross_tenant(self, resource_group, another_resource_gr self.cmd('sig image-definition show -g {rg} --gallery-name {gallery} --gallery-image-definition {image} --subscription {aux_sub}', checks=self.check('name', self.kwargs['image'])) - self.cmd('vm create -g {rg} -n {vm} --image ubuntults --admin-username clitest1 --generate-ssh-key --subscription {aux_sub}') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitest1 --generate-ssh-key --subscription {aux_sub}') self.cmd( 'vm run-command invoke -g {rg} -n {vm} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes" --subscription {aux_sub}') time.sleep(70) @@ -4859,7 +4859,7 @@ def test_deployment_group_cross_tenant(self, resource_group, another_resource_gr self.cmd('sig image-definition show -g {rg} --gallery-name {gallery} --gallery-image-definition {image} --subscription {aux_sub}', checks=self.check('name', self.kwargs['image'])) - self.cmd('vm create -g {rg} -n {vm} --image ubuntults --admin-username clitest1 --generate-ssh-key --subscription {aux_sub}') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitest1 --generate-ssh-key --subscription {aux_sub}') self.cmd( 'vm run-command invoke -g {rg} -n {vm} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes" --subscription {aux_sub}') time.sleep(70) @@ -4954,7 +4954,7 @@ def test_invoke_action(self, resource_group): 'pass': self.create_random_name('Longpassword#1', 30) }) - self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image UbuntuLTS --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] + self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username {user} --admin-password {pass} --authentication-type password --nsg-rule None').get_output_in_json()['id'] self.cmd('resource invoke-action --action powerOff --ids {vm_id} --no-wait') time.sleep(20) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource_id_deletes.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource_id_deletes.py index b2c65c9b5be..98b7101edef 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource_id_deletes.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource_id_deletes.py @@ -16,7 +16,7 @@ def test_delete_dependent_resources(self, resource_group): username = 'ubuntu' password = self.create_random_name('Password#1', 30) - self.cmd('vm create -n {} -g {} --image UbuntuLTS --tag {} ' + self.cmd('vm create -n {} -g {} --image Canonical:UbuntuServer:18.04-LTS:latest --tag {} ' '--admin-username {} --admin-password {} --authentication-type {} --nsg-rule None' .format(vm_name, resource_group, tag_name, username, password, 'password')) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_alias.py b/src/azure-cli/azure/cli/command_modules/vm/_alias.py index 6b42850bcb6..49368dab5d3 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_alias.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_alias.py @@ -18,13 +18,6 @@ "type": "object", "value": { "Linux": { - "CentOS": { - "publisher": "OpenLogic", - "offer": "CentOS", - "sku": "7.5", - "version": "latest", - "architecture": "x64" - }, "CentOS85Gen2": { "publisher": "OpenLogic", "offer": "CentOS", @@ -32,13 +25,6 @@ "version": "latest", "architecture": "x64" }, - "Debian": { - "publisher": "Debian", - "offer": "debian-10", - "sku": "10", - "version": "latest", - "architecture": "x64" - }, "Debian11": { "publisher": "Debian", "offer": "debian-11", @@ -46,13 +32,6 @@ "version": "latest", "architecture": "x64" }, - "Flatcar": { - "publisher": "kinvolk", - "offer": "flatcar-container-linux-free", - "sku": "stable", - "version": "latest", - "architecture": "x64" - }, "FlatcarLinuxFreeGen2": { "publisher": "kinvolk", "offer": "flatcar-container-linux-free", @@ -60,13 +39,6 @@ "version": "latest", "architecture": "x64" }, - "openSUSE-Leap": { - "publisher": "SUSE", - "offer": "opensuse-leap-15-3", - "sku": "gen2", - "version": "latest", - "architecture": "x64" - }, "OpenSuseLeap154Gen2": { "publisher": "SUSE", "offer": "openSUSE-leap-15-4", @@ -74,13 +46,6 @@ "version": "latest", "architecture": "x64" }, - "RHEL": { - "publisher": "RedHat", - "offer": "RHEL", - "sku": "7-LVM", - "version": "latest", - "architecture": "x64" - }, "RHELRaw8LVMGen2": { "publisher": "RedHat", "offer": "RHEL", @@ -88,13 +53,6 @@ "version": "latest", "architecture": "x64" }, - "SLES": { - "publisher": "SUSE", - "offer": "sles-15-sp3", - "sku": "gen2", - "version": "latest", - "architecture": "x64" - }, "SuseSles15SP3": { "publisher": "SUSE", "offer": "sles-15-sp3", @@ -102,13 +60,6 @@ "version": "latest", "architecture": "x64" }, - "UbuntuLTS": { - "publisher": "Canonical", - "offer": "UbuntuServer", - "sku": "18.04-LTS", - "version": "latest", - "architecture": "x64" - }, "Ubuntu2204": { "publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py index 5ee23dd3ce0..f41807d94f8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py @@ -224,7 +224,7 @@ def test_vm_generalize(self, resource_group): 'vm': 'vm-generalize' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') + self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') self.cmd('vm stop -g {rg} -n {vm}') # Should be able to generalize the VM after it has been stopped self.cmd('vm generalize -g {rg} -n {vm}', checks=self.is_empty()) @@ -289,7 +289,7 @@ def test_custom_image(self, resource_group): 'image2': 'img-from-managed', }) - self.cmd('vm create -g {rg} -n {vm1} --image ubuntults --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') # deprovision the VM, but we have to do it async to avoid hanging the run-command itself self.cmd('vm run-command invoke -g {rg} -n {vm1} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) @@ -297,7 +297,7 @@ def test_custom_image(self, resource_group): self.cmd('vm generalize -g {rg} -n {vm1}') self.cmd('image create -g {rg} -n {image1} --source {vm1}') - self.cmd('vm create -g {rg} -n {vm2} --image ubuntults --storage-sku standard_lrs --data-disk-sizes-gb 1 --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --storage-sku standard_lrs --data-disk-sizes-gb 1 --admin-username sdk-test-admin --admin-password testPassword0') self.cmd('vm run-command invoke -g {rg} -n {vm2} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) self.cmd('vm deallocate -g {rg} -n {vm2}') @@ -413,7 +413,7 @@ def test_vm_create_from_unmanaged_disk(self, resource_group): 'loc': 'westus', 'vm': 'vm1' }) - self.cmd('vm create -g {rg} -n {vm} --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n {vm}', checks=[ self.check('name', '{vm}'), self.check('licenseType', None) @@ -443,7 +443,7 @@ def test_vm_create_with_specialized_unmanaged_disk(self, resource_group): }) # create a vm with unmanaged os disk - self.cmd('vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['disk_uri'] = vm1_info['storageProfile']['osDisk']['vhd']['uri'] @@ -462,7 +462,7 @@ def test_vm_create_with_unmanaged_data_disks(self, resource_group): }) # create a unmanaged bm with 2 unmanaged disks - vm_create_cmd = 'vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' + vm_create_cmd = 'vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' self.cmd(vm_create_cmd) self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 1') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 2') @@ -492,7 +492,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -523,7 +523,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): @ResourceGroupPreparer() def test_vm_create_by_attach_unmanaged_os_and_data_disks(self, resource_group): # creating a vm - self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name vm1 --new --size-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['os_disk_vhd'] = result['storageProfile']['osDisk']['vhd']['uri'] @@ -545,12 +545,12 @@ class VMOSDiskSize(ScenarioTest): def test_set_os_disk_size(self, resource_group): # test unmanaged disk self.kwargs.update({'sa': self.create_random_name(prefix='cli', length=12)}) - self.cmd('vm create -g {rg} -n vm --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75 --use-unmanaged-disk --storage-account {sa}') + self.cmd('vm create -g {rg} -n vm --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75 --use-unmanaged-disk --storage-account {sa}') result = self.cmd('storage blob list --account-name {sa} --container-name vhds').get_output_in_json() self.assertTrue(result[0]['properties']['contentLength'] > 75000000000) # test managed disk - self.cmd('vm create -g {rg} -n vm1 --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75') self.cmd('vm show -g {rg} -n vm1', checks=self.check('storageProfile.osDisk.diskSizeGb', 75)) @@ -644,7 +644,7 @@ def test_vm_create_state_modifications(self, resource_group): # Expecting no results self.cmd('vm list --resource-group {rg}', checks=self.is_empty()) - self.cmd('vm create --resource-group {rg} --location {loc} --name {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --tags firsttag=1 secondtag=2 thirdtag --nsg {nsg} --public-ip-address {ip} --vnet-name {vnet} --storage-account {sa} --use-unmanaged-disk') + self.cmd('vm create --resource-group {rg} --location {loc} --name {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --tags firsttag=1 secondtag=2 thirdtag --nsg {nsg} --public-ip-address {ip} --vnet-name {vnet} --storage-account {sa} --use-unmanaged-disk') # Expecting one result, the one we created self.cmd('vm list --resource-group {rg}', checks=[ @@ -711,7 +711,7 @@ def test_vm_create_no_wait(self, resource_group): 'loc': 'westus', 'vm': 'vmnowait2' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username user12 --admin-password testPassword0 --authentication-type password --image UbuntuLTS --no-wait', + self.cmd('vm create -g {rg} -n {vm} --admin-username user12 --admin-password testPassword0 --authentication-type password --image Canonical:UbuntuServer:18.04-LTS:latest --no-wait', checks=self.is_empty()) time.sleep(30) self.cmd('vm wait -g {rg} -n {vm} --custom "instanceView.statuses[?code==\'PowerState/running\']"', @@ -805,7 +805,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -914,7 +914,7 @@ def test_vm_create_multi_nics(self, resource_group): self.kwargs['nic'] = 'nic{}'.format(i) self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet}') - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --nics nic1 nic2 nic3 nic4 --admin-username user11 --size Standard_DS3 --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --nics nic1 nic2 nic3 nic4 --admin-username user11 --size Standard_DS3 --ssh-key-value \'{ssh_key}\'') self.cmd('vm show -g {rg} -n {vm}', checks=[ self.check("networkProfile.networkInterfaces[0].id.ends_with(@, 'nic1')", True), self.check("networkProfile.networkInterfaces[1].id.ends_with(@, 'nic2')", True), @@ -959,7 +959,7 @@ def test_vm_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vm create -n {vm} -g {rg} --image Debian --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') + self.cmd('vm create -n {vm} -g {rg} --image Debian:debian-10:10:latest --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') self.cmd('vm show -n {vm} -g {rg}', checks=[ self.check('availabilitySet', None), @@ -983,7 +983,7 @@ def test_vm_boot_diagnostics(self, resource_group, storage_account): self.kwargs['storage_uri'] = 'https://{}.blob.core.windows.net/'.format(self.kwargs['sa']) self.cmd('storage account create -g {rg} -n {sa} --sku Standard_LRS -l westus') - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0 --use-unmanaged-disk') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0 --use-unmanaged-disk') self.cmd('vm boot-diagnostics enable -g {rg} -n {vm} --storage {sa}') self.cmd('vm show -g {rg} -n {vm}', checks=[ @@ -998,7 +998,7 @@ def test_vm_boot_diagnostics(self, resource_group, storage_account): checks=self.check('diagnosticsProfile.bootDiagnostics.enabled', False)) # try enable it at the create - self.cmd('vm create -g {rg} -n {vm2} --image debian --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') + self.cmd('vm create -g {rg} -n {vm2} --image Debian:debian-10:10:latest --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') self.cmd('vm show -g {rg} -n {vm2}', checks=[ self.check('diagnosticsProfile.bootDiagnostics.enabled', True), self.check('diagnosticsProfile.bootDiagnostics.storageUri', '{storage_uri}') @@ -1021,7 +1021,7 @@ def test_vmss_extension(self): 'config_file': config_file }) - self.cmd('vmss create -n {vmss} -g {rg} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') + self.cmd('vmss create -n {vmss} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') self.cmd('vmss extension set -n {ext} --publisher {pub} --version 1.4 --vmss-name {vmss} --resource-group {rg} --protected-settings "{config_file}"') self.cmd('vmss extension show --resource-group {rg} --vmss-name {vmss} --name {ext}', checks=[ @@ -1044,8 +1044,8 @@ def test_diagnostics_extension_install(self, resource_group, storage_account): 'vmss': 'testdiagvmss' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password TestTest12#$') - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password TestTest12#$ --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password TestTest12#$') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password TestTest12#$ --use-unmanaged-disk') storage_sastoken = '123' # use junk keys, do not retrieve real keys which will get into the recording _, protected_settings = tempfile.mkstemp() with open(protected_settings, 'w') as outfile: @@ -1117,7 +1117,7 @@ def test_vm_create_existing_options(self, resource_group, storage_account): self.cmd('network vnet create --name {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network nsg create --name {nsg} -g {rg}') - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -1170,7 +1170,7 @@ def test_vm_create_existing_ids_options(self, resource_group, storage_account): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['nsg_id']) - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -1194,7 +1194,7 @@ def test_vm_create_custom_ip(self, resource_group): 'public_ip_sku': 'Standard' }) - self.cmd('vm create -n {vm} -g {rg} --image openSUSE-Leap --admin-username user11 --private-ip-address 10.0.0.5 --public-ip-sku {public_ip_sku} --public-ip-address-dns-name {dns} --generate-ssh-keys') + self.cmd('vm create -n {vm} -g {rg} --image SUSE:opensuse-leap-15-3:gen2:latest --admin-username user11 --private-ip-address 10.0.0.5 --public-ip-sku {public_ip_sku} --public-ip-address-dns-name {dns} --generate-ssh-keys') self.cmd('network public-ip show -n {vm}PublicIP -g {rg}', checks=[ self.check('publicIPAllocationMethod', 'Static'), @@ -1205,7 +1205,7 @@ def test_vm_create_custom_ip(self, resource_group): checks=self.check('ipConfigurations[0].privateIPAllocationMethod', 'Static')) # verify the default should be "Basic" sku with "Dynamic" allocation method - self.cmd('vm create -n {vm2} -g {rg} --image openSUSE-Leap --admin-username user11 --generate-ssh-keys') + self.cmd('vm create -n {vm2} -g {rg} --image SUSE:opensuse-leap-15-3:gen2:latest --admin-username user11 --generate-ssh-keys') self.cmd('network public-ip show -n {vm2}PublicIP -g {rg}', checks=[ self.check('publicIPAllocationMethod', 'Dynamic'), self.check('sku.name', 'Basic') @@ -1224,7 +1224,7 @@ def test_vm_disk_attach_detach(self, resource_group): 'disk2': 'd2' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username admin123 --image centos --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username admin123 --image OpenLogic:CentOS:7.5:latest --admin-password testPassword0 --authentication-type password') self.cmd('vm disk attach -g {rg} --vm-name {vm} --disk {disk1} --new --size-gb 1 --caching ReadOnly') self.cmd('vm disk attach -g {rg} --vm-name {vm} --disk {disk2} --new --size-gb 2 --lun 2 --sku standard_lrs') @@ -1264,7 +1264,7 @@ def test_vm_data_unmanaged_disk(self, resource_group): 'disk': 'd7' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') # check we have no data disk result = self.cmd('vm show -g {rg} -n {vm}', @@ -1410,7 +1410,7 @@ def test_vmss_create_options(self, resource_group): self.cmd('network public-ip create --name {ip} -g {rg}') - self.cmd('vmss create --image Debian --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') + self.cmd('vmss create --image Debian:debian-10:10:latest --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') self.cmd('network lb show -g {rg} -n {vmss}lb ', checks=self.check('frontendIPConfigurations[0].publicIPAddress.id.ends_with(@, \'{ip}\')', True)) self.cmd('vmss show -g {rg} -n {vmss}', checks=[ @@ -1451,7 +1451,7 @@ def test_vmss_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, 'quotes': '""' if platform.system() == 'Windows' else "''" }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') self.cmd('vmss show -n {vmss} -g {rg}', checks=[ self.check('tags', {}), self.check('virtualMachineProfile.networkProfile.networkInterfaceConfigurations.ipConfigurations.loadBalancerBackendAddressPools', None), @@ -1468,7 +1468,7 @@ def test_vmss_create_with_app_gateway(self, resource_group): 'vmss': 'vmss1', 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", checks=self.check('vmss.provisioningState', 'Succeeded')) # spot check it is using gateway self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -1482,7 +1482,7 @@ def test_vmss_create_default_app_gateway(self, resource_group): 'vmss': 'vmss1' }) - res = self.cmd("vmss create -g {rg} --name {vmss} --validate --image UbuntuLTS --disable-overprovision --instance-count 101 --single-placement-group false " + res = self.cmd("vmss create -g {rg} --name {vmss} --validate --image Canonical:UbuntuServer:18.04-LTS:latest --disable-overprovision --instance-count 101 --single-placement-group false " "--admin-username ubuntuadmin --generate-ssh-keys").get_output_in_json() # Ensure generated template is valid. "Quota Exceeding" is expected on most subscriptions, so we allow that. self.assertTrue(not res['error'] or (res['error']['details'][0]['code'] == 'QuotaExceeded')) @@ -1494,14 +1494,14 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image UbuntuLTS --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): self.kwargs.update({ 'vmss': 'vmss123' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --single-placement-group false') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --single-placement-group false') self.cmd('vmss show -g {rg} -n {vmss}', checks=[ self.check('singlePlacementGroup', False) ]) @@ -1526,7 +1526,7 @@ def test_vmss_public_ip_per_vm_custom_domain_name(self, resource_group): 'dns_label': self.create_random_name('clivmss', 20) }) nsg_result = self.cmd('network nsg create -g {rg} -n {nsg}').get_output_in_json() - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", checks=self.check('vmss.provisioningState', 'Succeeded')) result = self.cmd("vmss show -n {vmss} -g {rg}", checks=[ self.check('length(virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings.dnsServers)', 2), @@ -1557,7 +1557,7 @@ def test_vm_accelerated_networking(self, resource_group): self.kwargs.update({ 'vm': 'vm1' }) - self.cmd("vm create -n {vm} -g {rg} --size Standard_DS4_v2 --image ubuntults --admin-username clittester --generate-ssh-keys") + self.cmd("vm create -n {vm} -g {rg} --size Standard_DS4_v2 --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clittester --generate-ssh-keys") self.cmd('network nic show -n {vm}vmnic -g {rg}', checks=self.check('enableAcceleratedNetworking', True)) @@ -1654,7 +1654,7 @@ def test_vmss_create_linux_secrets(self, resource_group): vm_format = self.cmd('vm secret format -s {secret_out}').get_output_in_json() self.kwargs['secrets'] = json.dumps(vm_format) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') self.cmd('vmss show -n {vmss} -g {rg}', checks=[ self.check('provisioningState', 'Succeeded'), @@ -1683,7 +1683,7 @@ def test_vmss_create_existing_options(self): self.cmd('network vnet create -n {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network lb create --name {lb} -g {rg} --backend-pool-name {bepool}') - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1726,7 +1726,7 @@ def test_vmss_create_existing_ids_options(self, resource_group): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['lb_id']) - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1754,7 +1754,7 @@ def test_vmss_vms(self, resource_group): 'instance_ids': [] }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') instance_list = self.cmd('vmss list-instances --resource-group {rg} --name {vmss}', checks=[ self.check('type(@)', 'array'), @@ -1793,7 +1793,7 @@ def test_vmss_create_custom_data(self): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') # custom data is write only, hence we have no automatic way to cross check. Here we just verify VM was provisioned self.cmd('vmss show -n {vmss} -g {rg}', @@ -1836,8 +1836,8 @@ def test_vmss_create_idempotent(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) # run the command twice with the same parameters and verify it does not fail - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') # still 1 vnet and 1 subnet inside self.cmd('network vnet list -g {rg}', checks=[ @@ -1855,7 +1855,7 @@ def test_vmss_with_ilb(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image centos --instance-count 1 --public-ip-address ""') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image OpenLogic:CentOS:7.5:latest --instance-count 1 --public-ip-address ""') # TODO: restore error validation when #5155 is addressed # with self.assertRaises(AssertionError) as err: self.cmd('vmss list-instance-connection-info -g {rg} -n {vmss}', expect_failure=True) @@ -1879,7 +1879,7 @@ def test_vmss_lb_sku(self, resource_group): }) # default to Basic - self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb list -g {rg}', checks=self.check('[0].sku.name', 'Basic')) self.cmd('network public-ip list -g {rg}', checks=[ self.check('[0].sku.name', 'Basic'), @@ -1887,7 +1887,7 @@ def test_vmss_lb_sku(self, resource_group): ]) # but you can overrides the defaults - self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb show -g {rg} -n {lb}', checks=self.check('sku.name', 'Standard')) self.cmd('network public-ip show -g {rg} -n {ip}', checks=[ @@ -1905,7 +1905,7 @@ def test_vm_create_progress(self, resource_group): self.kwargs.update({'vm': 'vm123'}) with force_progress_logging() as test_io: - self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image debian') + self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image Debian:debian-10:10:latest') content = test_io.getvalue() # check log has okay format @@ -1955,7 +1955,7 @@ def test_run_command_e2e(self, resource_group, resource_group_location): self.cmd('vm run-command list -l {loc}') self.cmd('vm run-command show --command-id RunShellScript -l {loc}') - public_ip = self.cmd('vm create -g {rg} -n {vm} --image ubuntults --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] + public_ip = self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] self.cmd('vm open-port -g {rg} -n {vm} --port 80') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --script "sudo apt-get update && sudo apt-get install -y nginx"') @@ -1967,7 +1967,7 @@ def test_run_command_e2e(self, resource_group, resource_group_location): @ResourceGroupPreparer(name_prefix='cli_test_vm_run_command_w_params') def test_run_command_with_parameters(self, resource_group): self.kwargs.update({'vm': 'test-run-command-vm2'}) - self.cmd('vm create -g {rg} -n {vm} --image debian --admin-username clitest1 --admin-password Test12345678!!') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password Test12345678!!') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --scripts "echo $0 $1" --parameters hello world') @@ -2006,7 +2006,7 @@ def test_vmss_rolling_upgrade(self, resource_group): self.cmd('network lb inbound-nat-pool create -g {rg} --lb-name {lb} -n nat-pool1 --backend-port 22 --frontend-port-range-start 50000 --frontend-port-range-end 50119 --protocol Tcp --frontend-ip-name LoadBalancerFrontEnd') # create a scaleset to use the LB, note, we start with the manual mode as we are not done with the setup yet - self.cmd('vmss create -g {rg} -n {vmss} --image ubuntults --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') # install the web server _, settings_file = tempfile.mkstemp() @@ -2052,9 +2052,9 @@ def test_vm_lb_integration(self, resource_group): }) # provision 2 web servers self.cmd('vm availability-set create -g {rg} -n {avset}') - self.cmd('vm create -g {rg} -n {vm1} --image ubuntults --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') self.cmd('vm open-port -g {rg} -n {vm1} --port 80') - self.cmd('vm create -g {rg} -n {vm2} --image ubuntults --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') self.cmd('vm open-port -g {rg} -n {vm2} --port 80') # provision 1 LB @@ -2096,7 +2096,7 @@ def test_vm_create_existing_nic(self, resource_group): self.cmd('network vnet create -g {rg} -n my-vnet --subnet-name my-subnet1') self.cmd('network nic create -g {rg} -n my-nic --subnet my-subnet1 --vnet-name my-vnet --public-ip-address my-pip') self.cmd('network nic ip-config create -n my-ipconfig2 -g {rg} --nic-name my-nic --private-ip-address-version IPv6') - self.cmd('vm create -g {rg} -n vm1 --image ubuntults --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n vm1 --image Canonical:UbuntuServer:18.04-LTS:latest --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') result = self.cmd('vm show -g {rg} -n vm1 -d').get_output_in_json() self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['publicIps'])) self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['privateIps'])) @@ -2115,7 +2115,7 @@ def test_vm_secret_e2e_test(self, resource_group, resource_group_location): self.kwargs['policy_path'] = os.path.join(TEST_DIR, 'keyvault', 'policy.json') - self.cmd('vm create -g {rg} -n {vm} --image rhel --generate-ssh-keys --admin-username rheladmin') + self.cmd('vm create -g {rg} -n {vm} --image RedHat:RHEL:7-LVM:latest --generate-ssh-keys --admin-username rheladmin') time.sleep(60) # ensure we don't hit the DNS exception (ignored under playback) self.cmd('keyvault certificate create --vault-name {vault} -n {cert} -p @"{policy_path}"') diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py index 48aaf2985bb..1a65d549f8d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py @@ -223,7 +223,7 @@ def test_vm_generalize(self, resource_group): 'vm': 'vm-generalize' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') + self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') self.cmd('vm stop -g {rg} -n {vm}') # Should be able to generalize the VM after it has been stopped self.cmd('vm generalize -g {rg} -n {vm}', checks=self.is_empty()) @@ -256,7 +256,7 @@ def test_vm_capture_zone_resilient_image(self, resource_group): 'vm': 'vm-generalize' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image centos --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image OpenLogic:CentOS:7.5:latest --admin-password testPassword0 --authentication-type password') self.cmd('vm deallocate -g {rg} -n {vm}') # Should be able to generalize the VM after it has been stopped self.cmd('vm generalize -g {rg} -n {vm}', checks=self.is_empty()) @@ -309,7 +309,7 @@ def test_vm_custom_image(self, resource_group): 'image2': 'img-from-managed', }) - self.cmd('vm create -g {rg} -n {vm1} --image ubuntults --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') # deprovision the VM, but we have to do it async to avoid hanging the run-command itself self.cmd('vm run-command invoke -g {rg} -n {vm1} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) @@ -317,7 +317,7 @@ def test_vm_custom_image(self, resource_group): self.cmd('vm generalize -g {rg} -n {vm1}') self.cmd('image create -g {rg} -n {image1} --source {vm1}') - self.cmd('vm create -g {rg} -n {vm2} --image ubuntults --storage-sku standard_lrs --data-disk-sizes-gb 1 1 --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --storage-sku standard_lrs --data-disk-sizes-gb 1 1 --admin-username sdk-test-admin --admin-password testPassword0') self.cmd('vm run-command invoke -g {rg} -n {vm2} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) self.cmd('vm deallocate -g {rg} -n {vm2}') @@ -362,7 +362,7 @@ def test_vm_custom_image_name_conflict(self, resource_group): 'image3': 'img-from-disk-id', }) - self.cmd('vm create -g {rg} -n {vm} --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n {vm}').get_output_in_json() self.cmd('vm stop -g {rg} -n {vm}') @@ -470,7 +470,7 @@ def test_vm_create_from_unmanaged_disk(self, resource_group): 'loc': 'westus', 'vm': 'vm1' }) - self.cmd('vm create -g {rg} -n {vm} --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n {vm}', checks=[ self.check('name', '{vm}'), self.check('licenseType', None) @@ -500,7 +500,7 @@ def test_vm_create_with_specialized_unmanaged_disk(self, resource_group): }) # create a vm with unmanaged os disk - self.cmd('vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['disk_uri'] = vm1_info['storageProfile']['osDisk']['vhd']['uri'] @@ -519,7 +519,7 @@ def test_vm_create_with_unmanaged_data_disks(self, resource_group): }) # create a unmanaged bm with 2 unmanaged disks - vm_create_cmd = 'vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' + vm_create_cmd = 'vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' self.cmd(vm_create_cmd) self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 1') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 2') @@ -549,7 +549,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -580,7 +580,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): @ResourceGroupPreparer() def test_vm_create_by_attach_unmanaged_os_and_data_disks(self, resource_group): # creating a vm - self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name vm1 --new --size-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['os_disk_vhd'] = result['storageProfile']['osDisk']['vhd']['uri'] @@ -602,12 +602,12 @@ class VMOSDiskSize(ScenarioTest): def test_vm_set_os_disk_size(self, resource_group): # test unmanaged disk self.kwargs.update({'sa': self.create_random_name(prefix='cli', length=12)}) - self.cmd('vm create -g {rg} -n vm --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75 --use-unmanaged-disk --storage-account {sa}') + self.cmd('vm create -g {rg} -n vm --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75 --use-unmanaged-disk --storage-account {sa}') result = self.cmd('storage blob list --account-name {sa} --container-name vhds').get_output_in_json() self.assertTrue(result[0]['properties']['contentLength'] > 75000000000) # test managed disk - self.cmd('vm create -g {rg} -n vm1 --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --os-disk-size-gb 75') self.cmd('vm show -g {rg} -n vm1', checks=self.check('storageProfile.osDisk.diskSizeGb', 75)) @@ -727,7 +727,7 @@ def test_vm_create_state_modifications(self, resource_group): # Expecting no results self.cmd('vm list --resource-group {rg}', checks=self.is_empty()) - self.cmd('vm create --resource-group {rg} --location {loc} --name {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --tags firsttag=1 secondtag=2 thirdtag --nsg {nsg} --public-ip-address {ip} --vnet-name {vnet} --storage-account {sa} --use-unmanaged-disk') + self.cmd('vm create --resource-group {rg} --location {loc} --name {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --tags firsttag=1 secondtag=2 thirdtag --nsg {nsg} --public-ip-address {ip} --vnet-name {vnet} --storage-account {sa} --use-unmanaged-disk') # Expecting one result, the one we created self.cmd('vm list --resource-group {rg}', checks=[ @@ -796,7 +796,7 @@ def test_vm_create_no_wait(self, resource_group): 'loc': 'westus', 'vm': 'vmnowait2' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username user12 --admin-password testPassword0 --authentication-type password --image UbuntuLTS --no-wait', + self.cmd('vm create -g {rg} -n {vm} --admin-username user12 --admin-password testPassword0 --authentication-type password --image Canonical:UbuntuServer:18.04-LTS:latest --no-wait', checks=self.is_empty()) time.sleep(30) self.cmd('vm wait -g {rg} -n {vm} --custom "instanceView.statuses[?code==\'PowerState/running\']"', @@ -926,7 +926,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -961,7 +961,7 @@ def test_vm_extension_instance_name(self, resource_group): 'ext_name': 'MyAccessExt' }) - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension set -n {ext_type} --publisher {pub} --version 1.2 --vm-name {vm} --resource-group {rg} ' '--protected-settings "{config}" --extension-instance-name {ext_name}') @@ -1061,7 +1061,7 @@ def test_vm_create_multi_nics(self, resource_group): self.kwargs['nic'] = 'nic{}'.format(i) self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet}') - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --nics nic1 nic2 nic3 nic4 --admin-username user11 --size Standard_DS3 --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --nics nic1 nic2 nic3 nic4 --admin-username user11 --size Standard_DS3 --ssh-key-value \'{ssh_key}\'') self.cmd('vm show -g {rg} -n {vm}', checks=[ self.check("networkProfile.networkInterfaces[0].id.ends_with(@, 'nic1')", True), self.check("networkProfile.networkInterfaces[1].id.ends_with(@, 'nic2')", True), @@ -1106,7 +1106,7 @@ def test_vm_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vm create -n {vm} -g {rg} --image Debian --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') + self.cmd('vm create -n {vm} -g {rg} --image Debian:debian-10:10:latest --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') self.cmd('vm show -n {vm} -g {rg}', checks=[ self.check('availabilitySet', None), @@ -1130,7 +1130,7 @@ def test_vm_boot_diagnostics(self, resource_group, storage_account): self.kwargs['storage_uri'] = 'https://{}.blob.core.windows.net/'.format(self.kwargs['sa']) self.cmd('storage account create -g {rg} -n {sa} --sku Standard_LRS -l westus') - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0 --use-unmanaged-disk') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0 --use-unmanaged-disk') self.cmd('vm boot-diagnostics enable -g {rg} -n {vm} --storage {sa}') self.cmd('vm show -g {rg} -n {vm}', checks=[ @@ -1145,7 +1145,7 @@ def test_vm_boot_diagnostics(self, resource_group, storage_account): checks=self.check('diagnosticsProfile.bootDiagnostics.enabled', False)) # try enable it at the create - self.cmd('vm create -g {rg} -n {vm2} --image debian --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') + self.cmd('vm create -g {rg} -n {vm2} --image Debian:debian-10:10:latest --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') self.cmd('vm show -g {rg} -n {vm2}', checks=[ self.check('diagnosticsProfile.bootDiagnostics.enabled', True), self.check('diagnosticsProfile.bootDiagnostics.storageUri', '{storage_uri}') @@ -1168,7 +1168,7 @@ def test_vmss_extension(self): 'config_file': config_file }) - self.cmd('vmss create -n {vmss} -g {rg} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') + self.cmd('vmss create -n {vmss} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') self.cmd('vmss extension set -n {ext} --publisher {pub} --version 1.4 --vmss-name {vmss} --resource-group {rg} --protected-settings "{config_file}"') self.cmd('vmss extension show --resource-group {rg} --vmss-name {vmss} --name {ext}', checks=[ @@ -1191,7 +1191,7 @@ def test_vmss_extension_instance_name(self): 'ext_name': 'MyNetworkWatcher' }) - self.cmd('vmss create -n {vmss} -g {rg} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') + self.cmd('vmss create -n {vmss} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password testPassword0 --instance-count 1') self.cmd('vmss extension set -n {ext_type} --publisher {pub} --version 1.4 --vmss-name {vmss} --resource-group {rg} ' '--protected-settings "{config_file}" --extension-instance-name {ext_name}') self.cmd('vmss extension show --resource-group {rg} --vmss-name {vmss} --name {ext_name}', checks=[ @@ -1214,8 +1214,8 @@ def test_diagnostics_extension_install(self, resource_group, storage_account): 'vmss': 'testdiagvmss' }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password TestTest12#$') - self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password TestTest12#$ --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password TestTest12#$') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password TestTest12#$ --use-unmanaged-disk') storage_sastoken = '123' # use junk keys, do not retrieve real keys which will get into the recording _, protected_settings = tempfile.mkstemp() with open(protected_settings, 'w') as outfile: @@ -1287,7 +1287,7 @@ def test_vm_create_existing_options(self, resource_group, storage_account): self.cmd('network vnet create --name {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network nsg create --name {nsg} -g {rg}') - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -1306,7 +1306,7 @@ def test_vm_create_auth(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, }) - self.cmd('vm create --image Debian -l westus -g {rg} -n {vm_1} --authentication-type all ' + self.cmd('vm create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vm_1} --authentication-type all ' ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'') self.cmd('vm show -n {vm_1} -g {rg}', checks=[ @@ -1314,7 +1314,7 @@ def test_vm_create_auth(self, resource_group): self.check('osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) ]) - self.cmd('vm create --image Debian -l westus -g {rg} -n {vm_2} --authentication-type ssh ' + self.cmd('vm create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vm_2} --authentication-type ssh ' ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'') self.cmd('vm show -n {vm_2} -g {rg}', checks=[ @@ -1363,7 +1363,7 @@ def test_vm_create_existing_ids_options(self, resource_group, storage_account): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['nsg_id']) - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -1387,7 +1387,7 @@ def test_vm_create_custom_ip(self, resource_group): 'public_ip_sku': 'Standard' }) - self.cmd('vm create -n {vm} -g {rg} --image openSUSE-Leap --admin-username user11 --private-ip-address 10.0.0.5 --public-ip-sku {public_ip_sku} --public-ip-address-dns-name {dns} --generate-ssh-keys') + self.cmd('vm create -n {vm} -g {rg} --image SUSE:opensuse-leap-15-3:gen2:latest --admin-username user11 --private-ip-address 10.0.0.5 --public-ip-sku {public_ip_sku} --public-ip-address-dns-name {dns} --generate-ssh-keys') self.cmd('network public-ip show -n {vm}PublicIP -g {rg}', checks=[ self.check('publicIPAllocationMethod', 'Static'), @@ -1398,7 +1398,7 @@ def test_vm_create_custom_ip(self, resource_group): checks=self.check('ipConfigurations[0].privateIPAllocationMethod', 'Static')) # verify the default should be "Basic" sku with "Dynamic" allocation method - self.cmd('vm create -n {vm2} -g {rg} --image openSUSE-Leap --admin-username user11 --generate-ssh-keys') + self.cmd('vm create -n {vm2} -g {rg} --image SUSE:opensuse-leap-15-3:gen2:latest --admin-username user11 --generate-ssh-keys') self.cmd('network public-ip show -n {vm2}PublicIP -g {rg}', checks=[ self.check('publicIPAllocationMethod', 'Dynamic'), self.check('sku.name', 'Basic') @@ -1417,7 +1417,7 @@ def test_vm_disk_attach_detach(self, resource_group): 'disk2': 'd2' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username admin123 --image centos --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username admin123 --image OpenLogic:CentOS:7.5:latest --admin-password testPassword0 --authentication-type password') self.cmd('vm disk attach -g {rg} --vm-name {vm} --name {disk1} --new --size-gb 1 --caching ReadOnly') self.cmd('vm disk attach -g {rg} --vm-name {vm} --name {disk2} --new --size-gb 2 --lun 2 --sku standard_lrs') @@ -1469,7 +1469,7 @@ def test_vm_data_unmanaged_disk(self, resource_group): 'disk': 'd7' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') # check we have no data disk result = self.cmd('vm show -g {rg} -n {vm}', @@ -1615,7 +1615,7 @@ def test_vmss_create_options(self, resource_group): self.cmd('network public-ip create --name {ip} -g {rg}') - self.cmd('vmss create --image Debian --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') + self.cmd('vmss create --image Debian:debian-10:10:latest --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') self.cmd('network lb show -g {rg} -n {vmss}lb ', checks=self.check('frontendIPConfigurations[0].publicIPAddress.id.ends_with(@, \'{ip}\')', True)) self.cmd('vmss show -g {rg} -n {vmss}', checks=[ @@ -1659,7 +1659,7 @@ def test_vmss_update_instance_disks(self, resource_group): 'sku': 'Standard_LRS' }) - self.cmd('vmss create --image Debian --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') + self.cmd('vmss create --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') self.cmd('disk create -g {rg} -n {disk} --size-gb 1 --sku {sku}') instances = self.cmd('vmss list-instances -g {rg} -n {vmss}').get_output_in_json() self.kwargs['instance_id'] = instances[0]['instanceId'] @@ -1682,14 +1682,14 @@ def test_vmss_create_auth(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, }) - self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_1} --authentication-type all ' + self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_1} --authentication-type all ' ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) ]) - self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' + self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) @@ -1705,7 +1705,7 @@ def test_vmss_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, 'quotes': '""' if platform.system() == 'Windows' else "''" }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') self.cmd('vmss show -n {vmss} -g {rg}', checks=[ self.check('tags', {}), self.check('virtualMachineProfile.networkProfile.networkInterfaceConfigurations.ipConfigurations.loadBalancerBackendAddressPools', None), @@ -1722,7 +1722,7 @@ def test_vmss_create_with_app_gateway(self, resource_group): 'vmss': 'vmss1', 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", checks=self.check('vmss.provisioningState', 'Succeeded')) # spot check it is using gateway self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -1736,7 +1736,7 @@ def test_vmss_create_default_app_gateway(self, resource_group): 'vmss': 'vmss1' }) - res = self.cmd("vmss create -g {rg} --name {vmss} --validate --image UbuntuLTS --disable-overprovision --instance-count 101 --single-placement-group false " + res = self.cmd("vmss create -g {rg} --name {vmss} --validate --image Canonical:UbuntuServer:18.04-LTS:latest --disable-overprovision --instance-count 101 --single-placement-group false " "--admin-username ubuntuadmin --generate-ssh-keys").get_output_in_json() # Ensure generated template is valid. "Quota Exceeding" is expected on most subscriptions, so we allow that. self.assertTrue(not res['error'] or (res['error']['details'][0]['code'] == 'QuotaExceeded')) @@ -1748,14 +1748,14 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image UbuntuLTS --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): self.kwargs.update({ 'vmss': 'vmss123' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --single-placement-group false') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --single-placement-group false') self.cmd('vmss show -g {rg} -n {vmss}', checks=[ self.check('singlePlacementGroup', False) ]) @@ -1780,7 +1780,7 @@ def test_vmss_public_ip_per_vm_custom_domain_name(self, resource_group): 'dns_label': self.create_random_name('clivmss', 20) }) nsg_result = self.cmd('network nsg create -g {rg} -n {nsg}').get_output_in_json() - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", checks=self.check('vmss.provisioningState', 'Succeeded')) result = self.cmd("vmss show -n {vmss} -g {rg}", checks=[ self.check('length(virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings.dnsServers)', 2), @@ -1886,7 +1886,7 @@ def test_vmss_create_linux_secrets(self, resource_group): vm_format = self.cmd('vm secret format -s {secret_out}').get_output_in_json() self.kwargs['secrets'] = json.dumps(vm_format) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') self.cmd('vmss show -n {vmss} -g {rg}', checks=[ self.check('provisioningState', 'Succeeded'), @@ -1915,7 +1915,7 @@ def test_vmss_create_existing_options(self): self.cmd('network vnet create -n {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network lb create --name {lb} -g {rg} --backend-pool-name {bepool}') - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1959,7 +1959,7 @@ def test_vmss_create_existing_ids_options(self, resource_group): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['lb_id']) - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1987,7 +1987,7 @@ def test_vmss_vms(self, resource_group): 'instance_ids': [] }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') instance_list = self.cmd('vmss list-instances --resource-group {rg} --name {vmss}', checks=[ self.check('type(@)', 'array'), @@ -2026,7 +2026,7 @@ def test_vmss_create_custom_data(self): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') # custom data is write only, hence we have no automatic way to cross check. Here we just verify VM was provisioned self.cmd('vmss show -n {vmss} -g {rg}', @@ -2073,8 +2073,8 @@ def test_vmss_create_idempotent(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) # run the command twice with the same parameters and verify it does not fail - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') # still 1 vnet and 1 subnet inside self.cmd('network vnet list -g {rg}', checks=[ @@ -2092,7 +2092,7 @@ def test_vmss_with_ilb(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image centos --instance-count 1 --public-ip-address ""') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image OpenLogic:CentOS:7.5:latest --instance-count 1 --public-ip-address ""') # TODO: restore error validation when #5155 is addressed # with self.assertRaises(AssertionError) as err: self.cmd('vmss list-instance-connection-info -g {rg} -n {vmss}', expect_failure=True) @@ -2116,7 +2116,7 @@ def test_vmss_lb_sku(self, resource_group): }) # default to Basic - self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb list -g {rg}', checks=self.check('[0].sku.name', 'Basic')) self.cmd('network public-ip list -g {rg}', checks=[ self.check('[0].sku.name', 'Basic'), @@ -2124,7 +2124,7 @@ def test_vmss_lb_sku(self, resource_group): ]) # but you can overrides the defaults - self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb show -g {rg} -n {lb}', checks=self.check('sku.name', 'Standard')) self.cmd('network public-ip show -g {rg} -n {ip}', checks=[ @@ -2142,7 +2142,7 @@ def test_vm_create_progress(self, resource_group): self.kwargs.update({'vm': 'vm123'}) with force_progress_logging() as test_io: - self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image debian') + self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image Debian:debian-10:10:latest') content = test_io.getvalue() # check log has okay format @@ -2167,7 +2167,7 @@ def test_vm_create_zones(self, resource_group, resource_group_location): 'vm': 'vm123', 'ip': 'vm123ip' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username clitester --admin-password PasswordPassword1! --image debian --zone {zones} --public-ip-address {ip}', + self.cmd('vm create -g {rg} -n {vm} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --zone {zones} --public-ip-address {ip}', checks=self.check('zones', '{zones}')) self.cmd('network public-ip show -g {rg} -n {ip}', checks=self.check('zones[0]', '{zones}')) @@ -2180,7 +2180,7 @@ def test_vm_create_zones(self, resource_group, resource_group_location): @AllowLargeResponse(size_kb=8192) def test_vm_error_on_zone_unavailable(self, resource_group, resource_group_location): try: - self.cmd('vm create -g {rg} -n vm1 --admin-username clitester --admin-password PasswordPassword1! --image debian --zone 1') + self.cmd('vm create -g {rg} -n vm1 --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --zone 1') except Exception as ex: self.assertTrue('availability zone is not yet supported' in str(ex)) @@ -2192,7 +2192,7 @@ def test_vmss_create_single_zone(self, resource_group, resource_group_location): 'zones': '2', 'vmss': 'vmss123' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --zones {zones}') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --zones {zones}') self.cmd('vmss show -g {rg} -n {vmss}', checks=self.check('zones[0]', '{zones}')) result = self.cmd('vmss show -g {rg} -n {vmss} -otable') @@ -2222,7 +2222,7 @@ def test_vmss_create_x_zones(self, resource_group, resource_group_location): 'nsg': 'vmss123NSG', # default name chosen by the create 'probe': 'LBProbe' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --zones {zones} --vm-sku Standard_D1_V2') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --zones {zones} --vm-sku Standard_D1_V2') self.cmd('vmss show -g {rg} -n {vmss}', checks=self.check('zones', ['1', '2', '3'])) result = self.cmd('vmss show -g {rg} -n {vmss} -otable') @@ -2281,7 +2281,7 @@ def test_vmss_create_zonal_with_fd(self, resource_group, resource_group_location 'zones': '2', 'vmss': 'vmss123' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --zones {zones} --platform-fault-domain-count 1') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --zones {zones} --platform-fault-domain-count 1') self.cmd('vmss show -g {rg} -n {vmss}', checks=[ self.check('singlePlacementGroup', False) ]) @@ -2307,7 +2307,7 @@ def test_vm_run_command_e2e(self, resource_group, resource_group_location): self.cmd('vm run-command list -l {loc}') self.cmd('vm run-command show --command-id RunShellScript -l {loc}') - public_ip = self.cmd('vm create -g {rg} -n {vm} --image ubuntults --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] + public_ip = self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] self.cmd('vm open-port -g {rg} -n {vm} --port 80') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --script "sudo apt-get update && sudo apt-get install -y nginx"') @@ -2319,7 +2319,7 @@ def test_vm_run_command_e2e(self, resource_group, resource_group_location): @ResourceGroupPreparer(name_prefix='cli_test_vm_run_command_w_params') def test_vm_run_command_with_parameters(self, resource_group): self.kwargs.update({'vm': 'test-run-command-vm2'}) - self.cmd('vm create -g {rg} -n {vm} --image debian --admin-username clitest1 --admin-password Test12345678!!') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password Test12345678!!') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --scripts "echo $0 $1" --parameters hello world') @ResourceGroupPreparer(name_prefix='cli_test_vm_encryption', location='westus') @@ -2354,7 +2354,7 @@ def test_vmss_rolling_upgrade(self, resource_group): self.cmd('network lb inbound-nat-pool create -g {rg} --lb-name {lb} -n nat-pool1 --backend-port 22 --frontend-port-range-start 50000 --frontend-port-range-end 50119 --protocol Tcp --frontend-ip-name LoadBalancerFrontEnd') # create a scaleset to use the LB, note, we start with the manual mode as we are not done with the setup yet - self.cmd('vmss create -g {rg} -n {vmss} --image ubuntults --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') # install the web server _, settings_file = tempfile.mkstemp() @@ -2394,13 +2394,13 @@ def test_vmss_create_with_low_priority(self, resource_group): 'vmss': 'vmss1', 'vmss2': 'vmss2' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --priority {priority}') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --priority {priority}') self.cmd('vmss show -g {rg} -n {vmss}', checks=[ self.check('virtualMachineProfile.priority', '{priority}'), self.check('virtualMachineProfile.evictionPolicy', 'Deallocate') ]) - self.cmd('vmss create -g {rg} -n {vmss2} --admin-username clitester --admin-password PasswordPassword1! --image centos --priority {priority} --eviction-policy delete') + self.cmd('vmss create -g {rg} -n {vmss2} --admin-username clitester --admin-password PasswordPassword1! --image OpenLogic:CentOS:7.5:latest --priority {priority} --eviction-policy delete') self.cmd('vmss show -g {rg} -n {vmss2}', checks=[ self.check('virtualMachineProfile.priority', '{priority}'), self.check('virtualMachineProfile.evictionPolicy', 'Delete') @@ -2421,9 +2421,9 @@ def test_vm_lb_integration(self, resource_group): }) # provision 2 web servers self.cmd('vm availability-set create -g {rg} -n {avset}') - self.cmd('vm create -g {rg} -n {vm1} --image ubuntults --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') self.cmd('vm open-port -g {rg} -n {vm1} --port 80') - self.cmd('vm create -g {rg} -n {vm2} --image ubuntults --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --public-ip-address "" --availability-set {avset} --generate-ssh-keys --admin-username ubuntuadmin') self.cmd('vm open-port -g {rg} -n {vm2} --port 80') # provision 1 LB @@ -2465,7 +2465,7 @@ def test_vm_create_existing_nic(self, resource_group): self.cmd('network vnet create -g {rg} -n my-vnet --subnet-name my-subnet1') self.cmd('network nic create -g {rg} -n my-nic --subnet my-subnet1 --vnet-name my-vnet --public-ip-address my-pip') self.cmd('network nic ip-config create -n my-ipconfig2 -g {rg} --nic-name my-nic --private-ip-address-version IPv6') - self.cmd('vm create -g {rg} -n vm1 --image ubuntults --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n vm1 --image Canonical:UbuntuServer:18.04-LTS:latest --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') result = self.cmd('vm show -g {rg} -n vm1 -d').get_output_in_json() self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['publicIps'])) self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['privateIps'])) @@ -2484,7 +2484,7 @@ def test_vm_secret_e2e_test(self, resource_group, resource_group_location): self.kwargs['policy_path'] = os.path.join(TEST_DIR, 'keyvault', 'policy.json') - self.cmd('vm create -g {rg} -n {vm} --image rhel --generate-ssh-keys --admin-username rheladmin') + self.cmd('vm create -g {rg} -n {vm} --image RedHat:RHEL:7-LVM:latest --generate-ssh-keys --admin-username rheladmin') time.sleep(60) # ensure we don't hit the DNS exception (ignored under playback) self.cmd('keyvault certificate create --vault-name {vault} -n {cert} -p @"{policy_path}"') @@ -2507,7 +2507,7 @@ def test_vm_os_disk_swap(self, resource_group): 'vm': 'vm1', 'backupDisk': 'disk1', }) - self.cmd('vm create -g {rg} -n {vm} --image centos --admin-username clitest123 --generate-ssh-keys') + self.cmd('vm create -g {rg} -n {vm} --image OpenLogic:CentOS:7.5:latest --admin-username clitest123 --generate-ssh-keys') res = self.cmd('vm show -g {rg} -n {vm}').get_output_in_json() original_disk_id = res['storageProfile']['osDisk']['managedDisk']['id'] backup_disk_id = self.cmd('disk create -g {{rg}} -n {{backupDisk}} --source {}'.format(original_disk_id)).get_output_in_json()['id'] @@ -2527,7 +2527,7 @@ def test_vm_generic_update(self, resource_group): 'vm': 'vm1', }) - self.cmd('vm create -g {rg} -n {vm} --image debian --data-disk-sizes-gb 1 2 --admin-username cligenerics --generate-ssh-keys') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --data-disk-sizes-gb 1 2 --admin-username cligenerics --generate-ssh-keys') # we will try all kinds of generic updates we can self.cmd('vm update -g {rg} -n {vm} --set identity.type="SystemAssigned"', checks=[ diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py index fee8f385f23..fa1a99e0126 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py @@ -221,7 +221,7 @@ def test_vm_generalize(self, resource_group): 'vm': 'vm-generalize' }) - self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image UbuntuLTS --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') + self.cmd('vm create -g {rg} -n {vm} --admin-username ubuntu --image Canonical:UbuntuServer:18.04-LTS:latest --admin-password testPassword0 --authentication-type password --use-unmanaged-disk') self.cmd('vm stop -g {rg} -n {vm}') # Should be able to generalize the VM after it has been stopped self.cmd('vm generalize -g {rg} -n {vm}', checks=self.is_empty()) @@ -253,7 +253,7 @@ def test_vm_capture_zone_resilient_image(self, resource_group): 'vm': 'vm-generalize' }) - self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image centos --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} --location {loc} -n {vm} --admin-username ubuntu --image OpenLogic:CentOS:7.5:latest --admin-password testPassword0 --authentication-type password') self.cmd('vm deallocate -g {rg} -n {vm}') # Should be able to generalize the VM after it has been stopped self.cmd('vm generalize -g {rg} -n {vm}', checks=self.is_empty()) @@ -306,7 +306,7 @@ def test_vm_custom_image(self, resource_group): 'image2': 'img-from-managed', }) - self.cmd('vm create -g {rg} -n {vm1} --image ubuntults --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm1} --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk --admin-username sdk-test-admin --admin-password testPassword0') # deprovision the VM, but we have to do it async to avoid hanging the run-command itself self.cmd('vm run-command invoke -g {rg} -n {vm1} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) @@ -314,7 +314,7 @@ def test_vm_custom_image(self, resource_group): self.cmd('vm generalize -g {rg} -n {vm1}') self.cmd('image create -g {rg} -n {image1} --source {vm1}') - self.cmd('vm create -g {rg} -n {vm2} --image ubuntults --storage-sku standard_lrs --data-disk-sizes-gb 1 1 --admin-username sdk-test-admin --admin-password testPassword0') + self.cmd('vm create -g {rg} -n {vm2} --image Canonical:UbuntuServer:18.04-LTS:latest --storage-sku standard_lrs --data-disk-sizes-gb 1 1 --admin-username sdk-test-admin --admin-password testPassword0') self.cmd('vm run-command invoke -g {rg} -n {vm2} --command-id RunShellScript --scripts "echo \'sudo waagent -deprovision+user --force\' | at -M now + 1 minutes"') time.sleep(70) self.cmd('vm deallocate -g {rg} -n {vm2}') @@ -359,7 +359,7 @@ def test_vm_custom_image_name_conflict(self, resource_group): 'image3': 'img-from-disk-id', }) - self.cmd('vm create -g {rg} -n {vm} --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n {vm}').get_output_in_json() self.cmd('vm stop -g {rg} -n {vm}') @@ -467,7 +467,7 @@ def test_vm_create_from_unmanaged_disk(self, resource_group): 'loc': 'westus', 'vm': 'vm1' }) - self.cmd('vm create -g {rg} -n {vm} --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n {vm}', checks=[ self.check('name', '{vm}'), self.check('licenseType', None) @@ -497,7 +497,7 @@ def test_vm_create_with_specialized_unmanaged_disk(self, resource_group): }) # create a vm with unmanaged os disk - self.cmd('vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password') vm1_info = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['disk_uri'] = vm1_info['storageProfile']['osDisk']['vhd']['uri'] @@ -516,7 +516,7 @@ def test_vm_create_with_unmanaged_data_disks(self, resource_group): }) # create a unmanaged bm with 2 unmanaged disks - vm_create_cmd = 'vm create -g {rg} -n vm1 --image debian --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' + vm_create_cmd = 'vm create -g {rg} -n vm1 --image Debian:debian-10:10:latest --use-unmanaged-disk --admin-username ubuntu --admin-password testPassword0 --authentication-type password' self.cmd(vm_create_cmd) self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 1') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name {vm} --new --size-gb 2') @@ -546,7 +546,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -577,7 +577,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): @ResourceGroupPreparer() def test_vm_create_by_attach_unmanaged_os_and_data_disks(self, resource_group): # creating a vm - self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image centos --admin-username centosadmin --admin-password testPassword0 --authentication-type password') + self.cmd('vm create -g {rg} -n vm1 --use-unmanaged-disk --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password') self.cmd('vm unmanaged-disk attach -g {rg} --vm-name vm1 --new --size-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs['os_disk_vhd'] = result['storageProfile']['osDisk']['vhd']['uri'] @@ -731,7 +731,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -766,7 +766,7 @@ def test_vm_extension_instance_name(self, resource_group): 'ext_name': 'MyAccessExt' }) - self.cmd('vm create -n {vm} -g {rg} --image UbuntuLTS --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension set -n {ext_type} --publisher {pub} --version 1.2 --vm-name {vm} --resource-group {rg} ' '--protected-settings "{config}" --extension-instance-name {ext_name}') @@ -873,7 +873,7 @@ def test_vm_create_existing_options(self, resource_group, storage_account): self.cmd('network vnet create --name {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network nsg create --name {nsg} -g {rg}') - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --vnet-name {vnet} --subnet {subnet} --availability-set {availset} --public-ip-address {pubip} -l "West US" --nsg {nsg} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -926,7 +926,7 @@ def test_vm_create_existing_ids_options(self, resource_group, storage_account): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['nsg_id']) - self.cmd('vm create --image UbuntuLTS --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') + self.cmd('vm create --image Canonical:UbuntuServer:18.04-LTS:latest --os-disk-name {disk} --subnet {subnet_id} --availability-set {availset_id} --public-ip-address {pubip_id} -l "West US" --nsg {nsg_id} --use-unmanaged-disk --size Standard_DS2 --admin-username user11 --storage-account {sa} --storage-container-name {container} -g {rg} --name {vm} --ssh-key-value \'{ssh_key}\'') self.cmd('vm availability-set show -n {availset} -g {rg}', checks=self.check('virtualMachines[0].id.ends_with(@, \'{}\')'.format(self.kwargs['vm'].upper()), True)) @@ -1025,7 +1025,7 @@ def test_vmss_create_options(self, resource_group): self.cmd('network public-ip create --name {ip} -g {rg}') - self.cmd('vmss create --image Debian --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') + self.cmd('vmss create --image Debian:debian-10:10:latest --admin-password testPassword0 -l westus -g {rg} -n {vmss} --disable-overprovision --instance-count {count} --os-disk-caching {caching} --upgrade-policy-mode {update} --authentication-type password --admin-username myadmin --public-ip-address {ip} --data-disk-sizes-gb 1 --vm-sku Standard_D2_v2') self.cmd('network lb show -g {rg} -n {vmss}lb ', checks=self.check('frontendIPConfigurations[0].publicIPAddress.id.ends_with(@, \'{ip}\')', True)) self.cmd('vmss show -g {rg} -n {vmss}', checks=[ @@ -1069,7 +1069,7 @@ def test_vmss_update_instance_disks(self, resource_group): 'sku': 'Standard_LRS' }) - self.cmd('vmss create --image Debian --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') + self.cmd('vmss create --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') self.cmd('disk create -g {rg} -n {disk} --size-gb 1 --sku {sku}') instances = self.cmd('vmss list-instances -g {rg} -n {vmss}').get_output_in_json() self.kwargs['instance_id'] = instances[0]['instanceId'] @@ -1092,14 +1092,14 @@ def test_vmss_create_auth(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, }) - self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_1} --authentication-type all ' + self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_1} --authentication-type all ' ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) ]) - self.cmd('vmss create --image Debian -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' + self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) @@ -1115,7 +1115,7 @@ def test_vmss_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, 'quotes': '""' if platform.system() == 'Windows' else "''" }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --load-balancer {quotes} --admin-username ubuntu --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --vm-sku Basic_A1') self.cmd('vmss show -n {vmss} -g {rg}', checks=[ self.check('tags', {}), self.check('virtualMachineProfile.networkProfile.networkInterfaceConfigurations.ipConfigurations.loadBalancerBackendAddressPools', None), @@ -1132,7 +1132,7 @@ def test_vmss_create_with_app_gateway(self, resource_group): 'vmss': 'vmss1', 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", checks=self.check('vmss.provisioningState', 'Succeeded')) # spot check it is using gateway self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -1147,14 +1147,14 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image UbuntuLTS --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): self.kwargs.update({ 'vmss': 'vmss123' }) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image debian --single-placement-group false') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username clitester --admin-password PasswordPassword1! --image Debian:debian-10:10:latest --single-placement-group false') self.cmd('vmss show -g {rg} -n {vmss}', checks=[ self.check('singlePlacementGroup', False) ]) @@ -1179,7 +1179,7 @@ def test_vmss_public_ip_per_vm_custom_domain_name(self, resource_group): 'dns_label': self.create_random_name('clivmss', 20) }) nsg_result = self.cmd('network nsg create -g {rg} -n {nsg}').get_output_in_json() - self.cmd("vmss create -n {vmss} -g {rg} --image Debian --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --vm-domain-name {dns_label} --public-ip-per-vm --dns-servers 10.0.0.6 10.0.0.5 --nsg {nsg}", checks=self.check('vmss.provisioningState', 'Succeeded')) result = self.cmd("vmss show -n {vmss} -g {rg}", checks=[ self.check('length(virtualMachineProfile.networkProfile.networkInterfaceConfigurations[0].dnsSettings.dnsServers)', 2), @@ -1294,7 +1294,7 @@ def test_vmss_public_ip_per_vm_custom_domain_name(self, resource_group): # vm_format = self.cmd('vm secret format -s {secret_out}').get_output_in_json() # self.kwargs['secrets'] = json.dumps(vm_format) -# self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') +# self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value \'{ssh_key}\' --secrets \'{secrets}\'') # self.cmd('vmss show -n {vmss} -g {rg}', checks=[ # self.check('provisioningState', 'Succeeded'), @@ -1324,7 +1324,7 @@ def test_vmss_create_existing_options(self): self.cmd('network vnet create -n {vnet} -g {rg} --subnet-name {subnet}') self.cmd('network lb create --name {lb} -g {rg} --backend-pool-name {bepool}') - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --vnet-name {vnet} --subnet {subnet} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1368,7 +1368,7 @@ def test_vmss_create_existing_ids_options(self, resource_group): assert is_valid_resource_id(self.kwargs['subnet_id']) assert is_valid_resource_id(self.kwargs['lb_id']) - self.cmd('vmss create --image CentOS --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') + self.cmd('vmss create --image OpenLogic:CentOS:7.5:latest --os-disk-name {os_disk} --admin-username ubuntu --subnet {subnet_id} -l "West US" --vm-sku {sku} --storage-container-name {container} -g {rg} --name {vmss} --load-balancer {lb_id} --ssh-key-value \'{ssh_key}\' --backend-pool-name {bepool} --use-unmanaged-disk') self.cmd('vmss show --name {vmss} -g {rg}', checks=[ self.check('sku.name', '{sku}'), self.check('virtualMachineProfile.storageProfile.osDisk.name', '{os_disk}'), @@ -1396,7 +1396,7 @@ def test_vmss_vms(self, resource_group): 'instance_ids': [] }) - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username admin123 --admin-password TestTest12#$ --instance-count {count}') instance_list = self.cmd('vmss list-instances --resource-group {rg} --name {vmss}', checks=[ self.check('type(@)', 'array'), @@ -1435,7 +1435,7 @@ def test_vmss_create_custom_data(self): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value "{ssh_key}" --custom-data "#cloud-config\nhostname: myVMhostname"') # custom data is write only, hence we have no automatic way to cross check. Here we just verify VM was provisioned self.cmd('vmss show -n {vmss} -g {rg}', @@ -1482,8 +1482,8 @@ def test_vmss_create_idempotent(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) # run the command twice with the same parameters and verify it does not fail - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') - self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image UbuntuLTS --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') + self.cmd('vmss create -g {rg} -n {vmss} --authentication-type password --admin-username admin123 --admin-password PasswordPassword1! --image Canonical:UbuntuServer:18.04-LTS:latest --use-unmanaged-disk') # still 1 vnet and 1 subnet inside self.cmd('network vnet list -g {rg}', checks=[ @@ -1501,7 +1501,7 @@ def test_vmss_with_ilb(self, resource_group): self.kwargs.update({'vmss': 'vmss1'}) - self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image centos --instance-count 1 --public-ip-address ""') + self.cmd('vmss create -g {rg} -n {vmss} --admin-username admin123 --admin-password PasswordPassword1! --image OpenLogic:CentOS:7.5:latest --instance-count 1 --public-ip-address ""') # TODO: restore error validation when #5155 is addressed # with self.assertRaises(AssertionError) as err: self.cmd('vmss list-instance-connection-info -g {rg} -n {vmss}', expect_failure=True) @@ -1525,7 +1525,7 @@ def test_vmss_lb_sku(self, resource_group): }) # default to Basic - self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss0} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb list -g {rg}', checks=self.check('[0].sku.name', 'Basic')) self.cmd('network public-ip list -g {rg}', checks=[ self.check('[0].sku.name', 'Basic'), @@ -1533,7 +1533,7 @@ def test_vmss_lb_sku(self, resource_group): ]) # but you can overrides the defaults - self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image UbuntuLTS --admin-username admin123 --admin-password PasswordPassword1!') + self.cmd('vmss create -g {rg} -l {loc} -n {vmss} --lb {lb} --lb-sku {sku} --public-ip-address {ip} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username admin123 --admin-password PasswordPassword1!') self.cmd('network lb show -g {rg} -n {lb}', checks=self.check('sku.name', 'Standard')) self.cmd('network public-ip show -g {rg} -n {ip}', checks=[ @@ -1551,7 +1551,7 @@ def test_vm_create_progress(self, resource_group): self.kwargs.update({'vm': 'vm123'}) with force_progress_logging() as test_io: - self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image debian') + self.cmd('vm create -g {rg} -n {vm} --admin-username {vm} --admin-password PasswordPassword1! --image Debian:debian-10:10:latest') content = test_io.getvalue() # check log has okay format @@ -1600,7 +1600,7 @@ def test_vm_run_command_e2e(self, resource_group, resource_group_location): self.cmd('vm run-command list -l {loc}') self.cmd('vm run-command show --command-id RunShellScript -l {loc}') - public_ip = self.cmd('vm create -g {rg} -n {vm} --image ubuntults --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] + public_ip = self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitest1 --admin-password Test12345678!!').get_output_in_json()['publicIpAddress'] self.cmd('vm open-port -g {rg} -n {vm} --port 80') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --script "sudo apt-get update && sudo apt-get install -y nginx"') @@ -1612,7 +1612,7 @@ def test_vm_run_command_e2e(self, resource_group, resource_group_location): @ResourceGroupPreparer(name_prefix='cli_test_vm_run_command_w_params') def test_vm_run_command_with_parameters(self, resource_group): self.kwargs.update({'vm': 'test-run-command-vm2'}) - self.cmd('vm create -g {rg} -n {vm} --image debian --admin-username clitest1 --admin-password Test12345678!!') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password Test12345678!!') self.cmd('vm run-command invoke -g {rg} -n{vm} --command-id RunShellScript --scripts "echo $0 $1" --parameters hello world') # @ResourceGroupPreparer(name_prefix='cli_test_vm_encryption', location='westus') @@ -1648,7 +1648,7 @@ def test_vmss_rolling_upgrade(self, resource_group): self.cmd('network lb inbound-nat-pool create -g {rg} --lb-name {lb} -n nat-pool1 --backend-port 22 --frontend-port-range-start 50000 --frontend-port-range-end 50119 --protocol Tcp --frontend-ip-name LoadBalancerFrontEnd') # create a scaleset to use the LB, note, we start with the manual mode as we are not done with the setup yet - self.cmd('vmss create -g {rg} -n {vmss} --image ubuntults --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester1 --admin-password Testqwer1234! --lb {lb} --health-probe {probe}') # install the web server _, settings_file = tempfile.mkstemp() @@ -1689,7 +1689,7 @@ def test_vm_create_existing_nic(self, resource_group): self.cmd('network vnet create -g {rg} -n my-vnet --subnet-name my-subnet1') self.cmd('network nic create -g {rg} -n my-nic --subnet my-subnet1 --vnet-name my-vnet --public-ip-address my-pip') self.cmd('network nic ip-config create -n my-ipconfig2 -g {rg} --nic-name my-nic --private-ip-address-version IPv6') - self.cmd('vm create -g {rg} -n vm1 --image ubuntults --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') + self.cmd('vm create -g {rg} -n vm1 --image Canonical:UbuntuServer:18.04-LTS:latest --nics my-nic --generate-ssh-keys --admin-username ubuntuadmin') result = self.cmd('vm show -g {rg} -n vm1 -d').get_output_in_json() self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['publicIps'])) self.assertTrue(re.match(r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+', result['privateIps'])) @@ -1702,7 +1702,7 @@ def test_vm_os_disk_swap(self, resource_group): 'vm': 'vm1', 'backupDisk': 'disk1', }) - self.cmd('vm create -g {rg} -n {vm} --image centos --admin-username clitest123 --generate-ssh-keys') + self.cmd('vm create -g {rg} -n {vm} --image OpenLogic:CentOS:7.5:latest --admin-username clitest123 --generate-ssh-keys') res = self.cmd('vm show -g {rg} -n {vm}').get_output_in_json() original_disk_id = res['storageProfile']['osDisk']['managedDisk']['id'] backup_disk_id = self.cmd('disk create -g {{rg}} -n {{backupDisk}} --source {}'.format(original_disk_id)).get_output_in_json()['id'] @@ -1722,7 +1722,7 @@ def test_vm_generic_update(self, resource_group): 'vm': 'vm1', }) - self.cmd('vm create -g {rg} -n {vm} --image debian --data-disk-sizes-gb 1 2 --admin-username cligenerics --generate-ssh-keys') + self.cmd('vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --data-disk-sizes-gb 1 2 --admin-username cligenerics --generate-ssh-keys') # we will try all kinds of generic updates we can self.cmd('vm update -g {rg} -n {vm} --set identity.type="SystemAssigned"', checks=[ @@ -1813,7 +1813,7 @@ def test_dedicated_host_e2e(self, resource_group, resource_group_location): 'host_id': host_id }) - self.cmd('vm create -n {vm-name} --image debian -g {rg} --size Standard_D4s_v3 ' + self.cmd('vm create -n {vm-name} --image Debian:debian-10:10:latest -g {rg} --size Standard_D4s_v3 ' '--host {host_id} --generate-ssh-keys --admin-username azureuser --nsg-rule NONE') # validate resources created successfully @@ -1850,8 +1850,8 @@ def test_dedicated_host_e2e(self, resource_group, resource_group_location): self.kwargs.update({ 'host_id': host_id }) - self.cmd('vm create -g {rg2} -n vm1 --image centos --host {host_id} --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') - self.cmd('vm create -g {rg2} -n vm2 --image centos --host-group {host-group} --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') + self.cmd('vm create -g {rg2} -n vm1 --image OpenLogic:CentOS:7.5:latest --host {host_id} --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') + self.cmd('vm create -g {rg2} -n vm2 --image OpenLogic:CentOS:7.5:latest --host-group {host-group} --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') self.cmd('vm show -g {rg2} -n vm1', checks=[ self.check_pattern('host.id', '.*/{host-name}$') ]) @@ -1943,7 +1943,7 @@ def test_update_dedicated_host_e2e(self, resource_group, resource_group_location 'host2_id': host2_id }) - self.cmd('vm create -n {vm-name} --image debian -g {rg} --size Standard_D4s_v3 ' + self.cmd('vm create -n {vm-name} --image Debian:debian-10:10:latest -g {rg} --size Standard_D4s_v3 ' '--generate-ssh-keys --admin-username azureuser --nsg-rule NONE') # validate resources created successfully @@ -2005,8 +2005,8 @@ def test_update_dedicated_host_e2e(self, resource_group, resource_group_location 'host_id': host_id, 'host2_id': host2_id }) - self.cmd('vm create -g {rg} -n vm1 --image centos --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') - self.cmd('vm create -g {rg} -n vm2 --image centos --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') + self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') + self.cmd('vm create -g {rg} -n vm2 --image OpenLogic:CentOS:7.5:latest --size Standard_D4s_v3 --nsg-rule NONE --generate-ssh-keys --admin-username azureuser') self.cmd('vm show -g {rg} -n vm1', checks=[ self.check('host', None) ]) @@ -2141,11 +2141,11 @@ def test_ppg_with_related_resources(self, resource_group): self.kwargs['ppg_id'] = self.cmd('ppg create -n {ppg} -t standard -g {rg}').get_output_in_json()['id'] self.kwargs['vm_id'] = self.cmd( - 'vm create -g {rg} -n {vm} --image debian --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg} --nsg-rule NONE').get_output_in_json()[ + 'vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg} --nsg-rule NONE').get_output_in_json()[ 'id'] self.cmd( - 'vmss create -g {rg} -n {vmss} --image debian --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id}') + 'vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id}') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.kwargs['avset_id'] = \ @@ -2174,14 +2174,14 @@ def test_ppg_update(self, resource_group): self.kwargs['ppg_id'] = self.cmd('ppg create -g {rg} -n {ppg} -t standard').get_output_in_json()['id'] - self.cmd('vmss create -g {rg} -n {vmss} --image debian --admin-username debian --ssh-key-value \'{ssh_key}\'') + self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\'') self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] self.cmd('vmss deallocate -g {rg} -n {vmss}') time.sleep(30) self.cmd('vmss update -g {rg} -n {vmss} --ppg {ppg_id}') self.cmd( - 'vm create -g {rg} -n {vm} --image debian --admin-username debian --ssh-key-value \'{ssh_key}\' --nsg-rule NONE') + 'vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --nsg-rule NONE') self.kwargs['vm_id'] = self.cmd('vm show -g {rg} -n {vm}').get_output_in_json()['id'] self.cmd('vm deallocate -g {rg} -n {vm}') time.sleep(30) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 9f68cb8902c..f0a991efe0e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -73,7 +73,7 @@ def test_vm_reimage(self, resource_group): 'vm': 'vm' }) - self.cmd('vm create -g {rg} -n {vm} --image centos --admin-username centosadmin --admin-password testPassword0 ' + self.cmd('vm create -g {rg} -n {vm} --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 ' '--authentication-type password --os-disk-delete-option Delete --nsg-rule NONE') vm_json_before_reimage = self.cmd('vm show -n {vm} -g {rg}').get_output_in_json() self.kwargs.update({ @@ -4559,7 +4559,7 @@ def test_vmss_update_custom_data(self): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian --admin-username deploy --ssh-key-value "{ssh_key}"') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value "{ssh_key}"') self.cmd('vmss update -n {vmss} -g {rg} --custom-data "#cloud-config\nhostname: myVMSShostname"') # custom data is write only, hence we have no automatic way to cross check. Here we just verify VM was provisioned self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -5544,7 +5544,7 @@ def test_vm_secret_e2e_test(self, resource_group, resource_group_location, key_v self.kwargs['policy_path'] = os.path.join(TEST_DIR, 'keyvault', 'policy.json') - self.cmd('vm create -g {rg} -n {vm} --image rhel --generate-ssh-keys --admin-username rheladmin --nsg-rule NONE') + self.cmd('vm create -g {rg} -n {vm} --image RedHat:RHEL:7-LVM:latest --generate-ssh-keys --admin-username rheladmin --nsg-rule NONE') time.sleep(60) # ensure we don't hit the DNS exception (ignored under playback) self.cmd('keyvault certificate create --vault-name {vault} -n {cert} -p @"{policy_path}"') From bf7c36ed5260ca99643e409164ca225f3bde4d1f Mon Sep 17 00:00:00 2001 From: qinkaiwu Date: Wed, 11 Oct 2023 13:34:02 +0800 Subject: [PATCH 2/7] Fix test_when_alias_doc_is_missing --- .../vm/tests/hybrid_2018_03_01/test_vm_image.py | 4 ++-- .../vm/tests/hybrid_2019_03_01/test_vm_image.py | 4 ++-- .../vm/tests/hybrid_2020_09_01/test_vm_image.py | 4 ++-- .../cli/command_modules/vm/tests/latest/test_vm_image.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py index 0755532c8e7..0d40db058bb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py @@ -59,8 +59,8 @@ def test_when_alias_doc_is_missing(self, mock_get_active_cloud): cli_ctx = DummyCli() cli_ctx.cloud = mock_cloud images = load_images_from_aliases_doc(cli_ctx) - self.assertEqual(images[0], {'urnAlias': 'CentOS', 'publisher': 'OpenLogic', - 'offer': 'CentOS', 'sku': '7.5', 'version': 'latest', + self.assertEqual(images[0], {'urnAlias': 'CentOS85Gen2', 'publisher': 'OpenLogic', + 'offer': 'CentOS', 'sku': '8_5-gen2', 'version': 'latest', 'architecture': 'x64'}) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py index 0755532c8e7..0d40db058bb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py @@ -59,8 +59,8 @@ def test_when_alias_doc_is_missing(self, mock_get_active_cloud): cli_ctx = DummyCli() cli_ctx.cloud = mock_cloud images = load_images_from_aliases_doc(cli_ctx) - self.assertEqual(images[0], {'urnAlias': 'CentOS', 'publisher': 'OpenLogic', - 'offer': 'CentOS', 'sku': '7.5', 'version': 'latest', + self.assertEqual(images[0], {'urnAlias': 'CentOS85Gen2', 'publisher': 'OpenLogic', + 'offer': 'CentOS', 'sku': '8_5-gen2', 'version': 'latest', 'architecture': 'x64'}) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py index 0755532c8e7..0d40db058bb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py @@ -59,8 +59,8 @@ def test_when_alias_doc_is_missing(self, mock_get_active_cloud): cli_ctx = DummyCli() cli_ctx.cloud = mock_cloud images = load_images_from_aliases_doc(cli_ctx) - self.assertEqual(images[0], {'urnAlias': 'CentOS', 'publisher': 'OpenLogic', - 'offer': 'CentOS', 'sku': '7.5', 'version': 'latest', + self.assertEqual(images[0], {'urnAlias': 'CentOS85Gen2', 'publisher': 'OpenLogic', + 'offer': 'CentOS', 'sku': '8_5-gen2', 'version': 'latest', 'architecture': 'x64'}) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_image.py index 4225bfd72d9..078ebfc1227 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_image.py @@ -59,7 +59,7 @@ def test_when_alias_doc_is_missing(self, mock_get_active_cloud): cli_ctx = DummyCli() cli_ctx.cloud = mock_cloud images = load_images_from_aliases_doc(cli_ctx) - self.assertEqual(images[1], {'urnAlias': 'CentOS85Gen2', 'publisher': 'OpenLogic', + self.assertEqual(images[0], {'urnAlias': 'CentOS85Gen2', 'publisher': 'OpenLogic', 'offer': 'CentOS', 'sku': '8_5-gen2', 'version': 'latest', 'architecture': 'x64'}) From e4172b80a432e2d093161eda86cc13ff18cd6644 Mon Sep 17 00:00:00 2001 From: qinkaiwu Date: Thu, 12 Oct 2023 10:11:44 +0800 Subject: [PATCH 3/7] Remove warning message --- .../azure/cli/command_modules/vm/custom.py | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 29a1a66df38..d70ec4ac3d8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -949,18 +949,6 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ if public_ip_sku is None and public_ip_address_type == 'new' or public_ip_sku == "Basic": logger.warning(remove_basic_option_msg, "--public-ip-sku Standard", "Public IP") - # Breaking Change Warning, change image alias - if image: - if image == "UbuntuLTS": - logger.warning('Consider using the "Ubuntu2204" alias. On April 30, 2023,' - 'the image deployed by the "UbuntuLTS" alias reaches its end of life. ' - 'The "UbuntuLTS" will be removed with the breaking change release of Fall 2023.') - if image in ["RHEL", "Debian", "CentOS", "Flatcar", "SLES", "openSUSE-Leap"]: - logger.warning('Consider using the image alias including the version of the distribution you want to use. ' - 'For example: please use Debian11 instead of Debian.\nIn Ignite (November) 2023, ' - 'the aliases without version suffix (such as: `UbuntuLTS`, `CentOS`, `Debian`, `Flatcar`, ' - '`SLES`, `openSUSE-Leap` and `RHEL`) will be removed.') - subscription_id = get_subscription_id(cmd.cli_ctx) if os_disk_encryption_set is not None and not is_valid_resource_id(os_disk_encryption_set): os_disk_encryption_set = resource_id( @@ -3211,18 +3199,6 @@ def create_vmss(cmd, vmss_name, resource_group_name, image=None, build_msi_role_assignment, build_nsg_resource, build_nat_rule_v2) - # Breaking Change Warning, change image alias - if image: - if image == "UbuntuLTS": - logger.warning('Consider using the "Ubuntu2204" alias. On April 30, 2023,' - 'the image deployed by the "UbuntuLTS" alias reaches its end of life. ' - 'The "UbuntuLTS" will be removed with the breaking change release of Fall 2023.') - if image in ["RHEL", "Debian", "CentOS", "Flatcar", "SLES", "openSUSE-Leap"]: - logger.warning('Consider using the image alias including the version of the distribution you want to use. ' - 'For example: please use Debian11 instead of Debian.\nIn Ignite (November) 2023, ' - 'the aliases without version suffix (such as: `UbuntuLTS`, `CentOS`, `Debian`, `Flatcar`, ' - '`SLES`, `openSUSE-Leap` and `RHEL`) will be removed.') - # The default load balancer will be expected to be changed from Basic to Standard, and Basic will be removed. # In order to avoid breaking change which has a big impact to users, # we use the hint to guide users to use Standard load balancer to create VMSS in the first stage. From 97e66ee49526cc528b7a96a6cee3d28800d264b3 Mon Sep 17 00:00:00 2001 From: qinkaiwu Date: Thu, 12 Oct 2023 10:30:55 +0800 Subject: [PATCH 4/7] Fix test --- .../vm/tests/hybrid_2018_03_01/test_vm_image.py | 4 ++-- .../vm/tests/hybrid_2019_03_01/test_vm_image.py | 4 ++-- .../vm/tests/hybrid_2020_09_01/test_vm_image.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py index 0d40db058bb..d5d1fc34821 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_image.py @@ -40,8 +40,8 @@ def test_read_images_from_alias_doc(self): self.assertTrue(len(win_images) > 0) ubuntu_image = next(i for i in images if i['publisher'] == 'Canonical') self.assertEqual(ubuntu_image['publisher'], 'Canonical') - self.assertEqual(ubuntu_image['offer'], 'UbuntuServer') - self.assertEqual(ubuntu_image['urnAlias'], 'UbuntuLTS') + self.assertEqual(ubuntu_image['offer'], '0001-com-ubuntu-server-jammy') + self.assertEqual(ubuntu_image['urnAlias'], 'Ubuntu2204') parts = ubuntu_image['urn'].split(':') self.assertEqual(parts[0], ubuntu_image['publisher']) self.assertEqual(parts[1], ubuntu_image['offer']) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py index 0d40db058bb..d5d1fc34821 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_image.py @@ -40,8 +40,8 @@ def test_read_images_from_alias_doc(self): self.assertTrue(len(win_images) > 0) ubuntu_image = next(i for i in images if i['publisher'] == 'Canonical') self.assertEqual(ubuntu_image['publisher'], 'Canonical') - self.assertEqual(ubuntu_image['offer'], 'UbuntuServer') - self.assertEqual(ubuntu_image['urnAlias'], 'UbuntuLTS') + self.assertEqual(ubuntu_image['offer'], '0001-com-ubuntu-server-jammy') + self.assertEqual(ubuntu_image['urnAlias'], 'Ubuntu2204') parts = ubuntu_image['urn'].split(':') self.assertEqual(parts[0], ubuntu_image['publisher']) self.assertEqual(parts[1], ubuntu_image['offer']) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py index 0d40db058bb..d5d1fc34821 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_image.py @@ -40,8 +40,8 @@ def test_read_images_from_alias_doc(self): self.assertTrue(len(win_images) > 0) ubuntu_image = next(i for i in images if i['publisher'] == 'Canonical') self.assertEqual(ubuntu_image['publisher'], 'Canonical') - self.assertEqual(ubuntu_image['offer'], 'UbuntuServer') - self.assertEqual(ubuntu_image['urnAlias'], 'UbuntuLTS') + self.assertEqual(ubuntu_image['offer'], '0001-com-ubuntu-server-jammy') + self.assertEqual(ubuntu_image['urnAlias'], 'Ubuntu2204') parts = ubuntu_image['urn'].split(':') self.assertEqual(parts[0], ubuntu_image['publisher']) self.assertEqual(parts[1], ubuntu_image['offer']) From fcae5ffe07bc5981c2b91ff9124dba9f587d9fce Mon Sep 17 00:00:00 2001 From: Zeng Taoxu Date: Tue, 17 Oct 2023 11:38:11 +0800 Subject: [PATCH 5/7] update --- .../azure/cli/command_modules/vm/_alias.py | 12 +- .../recordings/test_vm_boot_diagnostics.yaml | 1103 ++-- ...vm_create_by_attach_os_and_data_disks.yaml | 1106 ++-- .../test_vm_create_none_options.yaml | 261 +- .../recordings/test_vm_extension.yaml | 479 +- .../test_vmss_create_with_app_gateway.yaml | 1265 ++--- .../recordings/test_vmss_existing_lb.yaml | 326 +- .../hybrid_2018_03_01/test_vm_commands.py | 12 +- ...vm_create_by_attach_os_and_data_disks.yaml | 1040 ++-- .../recordings/test_vm_extension.yaml | 501 +- .../recordings/test_vmss_create_auth.yaml | 412 +- .../recordings/test_vmss_existing_lb.yaml | 322 +- .../test_vmss_update_instance_disks.yaml | 796 +-- .../hybrid_2019_03_01/test_vm_commands.py | 10 +- ...vm_create_by_attach_os_and_data_disks.yaml | 1236 +++-- .../recordings/test_vm_extension.yaml | 495 +- .../recordings/test_vmss_create_auth.yaml | 416 +- .../recordings/test_vmss_existing_lb.yaml | 348 +- .../test_vmss_update_instance_disks.yaml | 862 ++-- .../hybrid_2020_09_01/test_vm_commands.py | 12 +- .../test_copy_vm_restore_point.yaml | 4517 ++++++++++++++++- .../latest/recordings/test_vm_reimage.yaml | 742 +-- .../recordings/test_vm_secret_e2e_test.yaml | 1116 ++-- .../test_vmss_update_custom_data.yaml | 450 +- .../vm/tests/latest/test_vm_commands.py | 8 +- 25 files changed, 11149 insertions(+), 6698 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_alias.py b/src/azure-cli/azure/cli/command_modules/vm/_alias.py index 49368dab5d3..2a9247eb0e2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_alias.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_alias.py @@ -27,16 +27,16 @@ }, "Debian11": { "publisher": "Debian", - "offer": "debian-11", - "sku": "11-backports-gen2", - "version": "latest", + "offer": "debian-11", + "sku": "11-backports-gen2", + "version": "latest", "architecture": "x64" }, "FlatcarLinuxFreeGen2": { "publisher": "kinvolk", - "offer": "flatcar-container-linux-free", - "sku": "stable-gen2", - "version": "latest", + "offer": "flatcar-container-linux-free", + "sku": "stable-gen2", + "version": "latest", "architecture": "x64" }, "OpenSuseLeap154Gen2": { diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_boot_diagnostics.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_boot_diagnostics.yaml index 864f063b511..182e4f573de 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_boot_diagnostics.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_boot_diagnostics.yaml @@ -18,12 +18,12 @@ interactions: ParameterSetName: - -g -n --sku -l User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:44:51.4772693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:44:51.3679248Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:06.6777576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:05.6464633Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -32,7 +32,7 @@ interactions: content-type: - application/json date: - - Thu, 23 Jun 2022 14:45:16 GMT + - Tue, 17 Oct 2023 02:49:34 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -66,21 +66,21 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001","name":"cli_test_vm_diagnostics000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:44:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001","name":"cli_test_vm_diagnostics000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_boot_diagnostics","date":"2023-10-17T02:48:56Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '292' + - '340' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:45:16 GMT + - Tue, 17 Oct 2023 02:49:35 GMT expires: - '-1' pragma: @@ -94,117 +94,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json - response: - body: - string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n - \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": - {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" - headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' - cache-control: - - max-age=300 - connection: - - keep-alive - content-length: - - '3463' - content-security-policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:45:17 GMT - etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" - expires: - - Thu, 23 Jun 2022 14:50:17 GMT - source-age: - - '57' - strict-transport-security: - - max-age=31536000 - vary: - - Authorization,Accept-Encoding,Origin - via: - - 1.1 varnish - x-cache: - - HIT - x-cache-hits: - - '1' - x-content-type-options: - - nosniff - x-fastly-request-id: - - 13b6eaf6b585e39c654251bb3f40916cd66c0d7a - x-frame-options: - - deny - x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 - x-served-by: - - cache-qpg1281-QPG - x-timer: - - S1655995518.781952,VS0,VE1 - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK - request: body: null headers: @@ -219,13 +108,13 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n \ }\r\n]" headers: cache-control: @@ -235,7 +124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:45:19 GMT + - Tue, 17 Oct 2023 02:49:36 GMT expires: - '-1' pragma: @@ -252,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991 status: code: 200 message: OK @@ -270,9 +159,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202206150?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2017-03-30 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -282,21 +171,20 @@ interactions: {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n - \ \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" headers: cache-control: - no-cache content-length: - - '1043' + - '1025' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:45:20 GMT + - Tue, 17 Oct 2023 02:49:38 GMT expires: - '-1' pragma: @@ -313,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73981 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73993 status: code: 200 message: OK @@ -331,12 +219,12 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts?api-version=2016-01-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:44:51.4772693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:44:51.3679248Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:06.6777576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:05.6464633Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache @@ -345,7 +233,7 @@ interactions: content-type: - application/json date: - - Thu, 23 Jun 2022 14:45:21 GMT + - Tue, 17 Oct 2023 02:49:39 GMT expires: - '-1' pragma: @@ -367,7 +255,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -377,7 +265,7 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -391,7 +279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:45:22 GMT + - Tue, 17 Oct 2023 02:49:40 GMT expires: - '-1' pragma: @@ -409,7 +297,7 @@ interactions: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage870bed83482aff", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage43430ef5f5ee00", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "myvmVNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", @@ -430,13 +318,13 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"}}}, {"apiVersion": "2017-03-30", "type": "Microsoft.Compute/virtualMachines", "name": - "myvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff", + "myvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00", "Microsoft.Network/networkInterfaces/myvmVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": "osdisk_870bed8348", "caching": "ReadWrite", "vhd": {"uri": - "https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd"}}, + "fromImage", "name": "osdisk_43430ef5f5", "caching": "ReadWrite", "vhd": {"uri": + "https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "myvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": @@ -457,23 +345,23 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_a6je0RuXgTQhryTIrxXAElCltVP0bIpI","name":"vm_deploy_a6je0RuXgTQhryTIrxXAElCltVP0bIpI","properties":{"templateHash":"12646440246290895289","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:45:29.3904752Z","duration":"PT0.0002239S","correlationId":"eef3296d-eed4-4862-b7dc-2c7067cf6c5b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage870bed83482aff"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_AETu1etfUTPBITyM5917IFnOavkq2pui","name":"vm_deploy_AETu1etfUTPBITyM5917IFnOavkq2pui","properties":{"templateHash":"9576811288897094266","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:49:45.1651479Z","duration":"PT0.0004306S","correlationId":"a1b74049-a41a-47a2-9ced-4e34270766b2","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage43430ef5f5ee00"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_a6je0RuXgTQhryTIrxXAElCltVP0bIpI/operationStatuses/08585456113592235428?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_AETu1etfUTPBITyM5917IFnOavkq2pui/operationStatuses/08585040959020848214?api-version=2018-02-01 cache-control: - no-cache content-length: - - '2809' + - '2808' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:45:30 GMT + - Tue, 17 Oct 2023 02:49:45 GMT expires: - '-1' pragma: @@ -483,7 +371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -501,9 +389,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456113592235428?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959020848214?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -515,7 +403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:46:00 GMT + - Tue, 17 Oct 2023 02:49:46 GMT expires: - '-1' pragma: @@ -543,9 +431,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456113592235428?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959020848214?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -557,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:46:30 GMT + - Tue, 17 Oct 2023 02:50:16 GMT expires: - '-1' pragma: @@ -585,9 +473,51 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456113592235428?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959020848214?api-version=2018-02-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:50:46 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: + - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959020848214?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -599,7 +529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:01 GMT + - Tue, 17 Oct 2023 02:51:17 GMT expires: - '-1' pragma: @@ -627,21 +557,23 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_a6je0RuXgTQhryTIrxXAElCltVP0bIpI","name":"vm_deploy_a6je0RuXgTQhryTIrxXAElCltVP0bIpI","properties":{"templateHash":"12646440246290895289","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T14:46:35.1428063Z","duration":"PT1M5.752555S","correlationId":"eef3296d-eed4-4862-b7dc-2c7067cf6c5b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage870bed83482aff"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_AETu1etfUTPBITyM5917IFnOavkq2pui","name":"vm_deploy_AETu1etfUTPBITyM5917IFnOavkq2pui","properties":{"templateHash":"9576811288897094266","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:51:00.9097971Z","duration":"PT1M15.7450798S","correlationId":"a1b74049-a41a-47a2-9ced-4e34270766b2","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage43430ef5f5ee00"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00"}]}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '3824' + - '3825' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:02 GMT + - Tue, 17 Oct 2023 02:51:18 GMT expires: - '-1' pragma: @@ -669,41 +601,40 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.8.0.6\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:46:44+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_870bed8348\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:51:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:46:02.4272956+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:50:21.3250002+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:46:32.5992693+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:50:54.9192084+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}" @@ -715,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:03 GMT + - Tue, 17 Oct 2023 02:51:19 GMT expires: - '-1' pragma: @@ -732,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3862,Microsoft.Compute/LowCostGet30Min;30905 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -740,7 +671,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -750,18 +681,17 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\",\r\n - \ \"etag\": \"W/\\\"be64abc8-d4f2-4641-bfab-4d6d98afb38b\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"253f75cc-e732-44cc-a8d7-e326e05a80c2\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigmyvm\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\",\r\n - \ \"etag\": \"W/\\\"be64abc8-d4f2-4641-bfab-4d6d98afb38b\\\"\",\r\n + \ \"etag\": \"W/\\\"21501b60-c461-4925-95af-eea9631103f2\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"4c4983a7-8162-4bbd-ba7f-df00a4f61807\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigmyvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\",\r\n + \ \"etag\": \"W/\\\"21501b60-c461-4925-95af-eea9631103f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -770,12 +700,13 @@ 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\": - \"a3ikfeb0hecuhm535s2o0uxnif.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-79-34\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"og3myqjl0ede1jkuttapfd2cxg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-02-B4-0D\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -784,9 +715,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:03 GMT + - Tue, 17 Oct 2023 02:51:21 GMT etag: - - W/"be64abc8-d4f2-4641-bfab-4d6d98afb38b" + - W/"21501b60-c461-4925-95af-eea9631103f2" expires: - '-1' pragma: @@ -803,7 +734,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac7c43d0-a04d-4c8e-9390-101696cd6021 + - f4eb4097-86eb-4ca9-996b-545ba843dc4c status: code: 200 message: OK @@ -811,7 +742,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -821,17 +752,17 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password --use-unmanaged-disk User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP\",\r\n - \ \"etag\": \"W/\\\"b511d641-be4a-4df4-9c17-703812557c3e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7be2c537-b582-4809-80f0-8099be65fb57\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2481507c-3b35-4e0d-9825-56c2c51da233\",\r\n - \ \"ipAddress\": \"20.245.49.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"834f63bb-0f6c-46c2-bcb9-d5fdb2c74128\",\r\n + \ \"ipAddress\": \"20.245.194.192\",\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_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -839,13 +770,13 @@ interactions: cache-control: - no-cache content-length: - - '909' + - '910' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:04 GMT + - Tue, 17 Oct 2023 02:51:22 GMT etag: - - W/"b511d641-be4a-4df4-9c17-703812557c3e" + - W/"7be2c537-b582-4809-80f0-8099be65fb57" expires: - '-1' pragma: @@ -862,7 +793,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be6ceb2c-cfb6-4dd7-9d39-342b78d0c205 + - 7ae1a0d2-12a8-4e0b-b6fc-7d0537e94159 status: code: 200 message: OK @@ -880,41 +811,40 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.8.0.6\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:46:44+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_870bed8348\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:51:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:46:02.4272956+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:50:21.3250002+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:46:32.5992693+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:50:54.9192084+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}" @@ -926,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:05 GMT + - Tue, 17 Oct 2023 02:51:23 GMT expires: - '-1' pragma: @@ -943,7 +873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3858,Microsoft.Compute/LowCostGet30Min;30901 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -961,21 +891,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2016-01-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zb_test/providers/Microsoft.Storage/storageAccounts/azblab12646","name":"azblab12646","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"hidden-DevTestLabs-LabUId":"3610e867-afa2-4bf9-90b7-2d85919815b3"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-01T11:15:37.8054635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-01T11:15:37.6335769Z","primaryEndpoints":{"blob":"https://azblab12646.blob.core.windows.net/","queue":"https://azblab12646.queue.core.windows.net/","table":"https://azblab12646.table.core.windows.net/","file":"https://azblab12646.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zb_test/providers/Microsoft.Storage/storageAccounts/azblab188","name":"azblab188","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"hidden-DevTestLabs-LabUId":"301109ba-f89e-4ba1-8c0c-be6e91e47840"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-25T04:33:05.5087868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-25T04:33:05.3525020Z","primaryEndpoints":{"blob":"https://azblab188.blob.core.windows.net/","queue":"https://azblab188.queue.core.windows.net/","table":"https://azblab188.table.core.windows.net/","file":"https://azblab188.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/bezstorage0518","name":"bezstorage0518","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-18T02:30:49.9265492Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-18T02:30:49.7703017Z","primaryEndpoints":{"blob":"https://bezstorage0518.blob.core.windows.net/","queue":"https://bezstorage0518.queue.core.windows.net/","table":"https://bezstorage0518.table.core.windows.net/","file":"https://bezstorage0518.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://bezstorage0518-secondary.blob.core.windows.net/","queue":"https://bezstorage0518-secondary.queue.core.windows.net/","table":"https://bezstorage0518-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageaccountsynapse1","name":"storageaccountsynapse1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T06:18:46.4134367Z","primaryEndpoints":{"blob":"https://storageaccountsynapse1.blob.core.windows.net/","queue":"https://storageaccountsynapse1.queue.core.windows.net/","table":"https://storageaccountsynapse1.table.core.windows.net/","file":"https://storageaccountsynapse1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storageaccountsynapse1-secondary.blob.core.windows.net/","queue":"https://storageaccountsynapse1-secondary.queue.core.windows.net/","table":"https://storageaccountsynapse1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufan1","name":"yufan1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-10T08:41:43.1979384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-10T08:41:43.0729495Z","primaryEndpoints":{"blob":"https://yufan1.blob.core.windows.net/","queue":"https://yufan1.queue.core.windows.net/","table":"https://yufan1.table.core.windows.net/","file":"https://yufan1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yufan1-secondary.blob.core.windows.net/","queue":"https://yufan1-secondary.queue.core.windows.net/","table":"https://yufan1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufanaccount","name":"yufanaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-19T13:30:24.7505500Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-19T13:30:24.6099071Z","primaryEndpoints":{"blob":"https://yufanaccount.blob.core.windows.net/","queue":"https://yufanaccount.queue.core.windows.net/","table":"https://yufanaccount.table.core.windows.net/","file":"https://yufanaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yufanaccount-secondary.blob.core.windows.net/","queue":"https://yufanaccount-secondary.queue.core.windows.net/","table":"https://yufanaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yuzhi123","name":"yuzhi123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-21T07:39:07.9936963Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-21T07:39:07.8530689Z","primaryEndpoints":{"blob":"https://yuzhi123.blob.core.windows.net/","queue":"https://yuzhi123.queue.core.windows.net/","table":"https://yuzhi123.table.core.windows.net/","file":"https://yuzhi123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yuzhi123-secondary.blob.core.windows.net/","queue":"https://yuzhi123-secondary.queue.core.windows.net/","table":"https://yuzhi123-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest","name":"zhoxingtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-14T10:11:50.7998998Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-14T10:11:50.5186500Z","primaryEndpoints":{"blob":"https://zhoxingtest.blob.core.windows.net/","queue":"https://zhoxingtest.queue.core.windows.net/","table":"https://zhoxingtest.table.core.windows.net/","file":"https://zhoxingtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhoxingtest-secondary.blob.core.windows.net/","queue":"https://zhoxingtest-secondary.queue.core.windows.net/","table":"https://zhoxingtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_existingivzgmwaii3ze2emx6ka7756redxd45qvflj43vs2ayoi7ukq/providers/Microsoft.Storage/storageAccounts/clitest2sw6uuukcphvj4ced","name":"clitest2sw6uuukcphvj4ced","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:42:58.9915240Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:42:58.8665361Z","primaryEndpoints":{"blob":"https://clitest2sw6uuukcphvj4ced.blob.core.windows.net/","queue":"https://clitest2sw6uuukcphvj4ced.queue.core.windows.net/","table":"https://clitest2sw6uuukcphvj4ced.table.core.windows.net/","file":"https://clitest2sw6uuukcphvj4ced.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:44:51.4772693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:44:51.3679248Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgndqcnhtzbgfvywayllmropscysoonfvdiqt3yy2f2owek56fmxotp4xkaed4ctlml/providers/Microsoft.Storage/storageAccounts/clitesthbyb7yke3ybao3eon","name":"clitesthbyb7yke3ybao3eon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-07T04:18:12.9818218Z","primaryEndpoints":{"blob":"https://clitesthbyb7yke3ybao3eon.blob.core.windows.net/","queue":"https://clitesthbyb7yke3ybao3eon.queue.core.windows.net/","table":"https://clitesthbyb7yke3ybao3eon.table.core.windows.net/","file":"https://clitesthbyb7yke3ybao3eon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nyy02/providers/Microsoft.Storage/storageAccounts/msaccount","name":"msaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-07T07:21:37.0469540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-07T07:21:36.9219448Z","primaryEndpoints":{"blob":"https://msaccount.blob.core.windows.net/","table":"https://msaccount.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://msaccount-secondary.blob.core.windows.net/","table":"https://msaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff","name":"vhdstorage870bed83482aff","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:45:35.7434429Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:45:35.6184357Z","primaryEndpoints":{"blob":"https://vhdstorage870bed83482aff.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-diskvx7hkvgcj5qub3zpqu2i5hxd3ajwk5k55jg3j3bh3yakj6ycjmjsdjj4yy5wgc/providers/Microsoft.Storage/storageAccounts/vhdstorageb2ffbc7fdfb264","name":"vhdstorageb2ffbc7fdfb264","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:43:32.5231905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:43:32.4137923Z","primaryEndpoints":{"blob":"https://vhdstorageb2ffbc7fdfb264.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrli6qx2bll/providers/Microsoft.Storage/storageAccounts/clitest2kskuzyfvkqd7xx4y","name":"clitest2kskuzyfvkqd7xx4y","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-16T23:34:07.9430240Z","primaryEndpoints":{"blob":"https://clitest2kskuzyfvkqd7xx4y.blob.core.windows.net/","queue":"https://clitest2kskuzyfvkqd7xx4y.queue.core.windows.net/","table":"https://clitest2kskuzyfvkqd7xx4y.table.core.windows.net/","file":"https://clitest2kskuzyfvkqd7xx4y.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6swh3vebl/providers/Microsoft.Storage/storageAccounts/clitestaxq4uhxp4axa3uagg","name":"clitestaxq4uhxp4axa3uagg","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-10T05:18:34.8238281Z","primaryEndpoints":{"blob":"https://clitestaxq4uhxp4axa3uagg.blob.core.windows.net/","queue":"https://clitestaxq4uhxp4axa3uagg.queue.core.windows.net/","table":"https://clitestaxq4uhxp4axa3uagg.table.core.windows.net/","file":"https://clitestaxq4uhxp4axa3uagg.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaz5eufnx7d/providers/Microsoft.Storage/storageAccounts/clitestkj3e2bodztqdfqsa2","name":"clitestkj3e2bodztqdfqsa2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T09:02:59.0267650Z","primaryEndpoints":{"blob":"https://clitestkj3e2bodztqdfqsa2.blob.core.windows.net/","queue":"https://clitestkj3e2bodztqdfqsa2.queue.core.windows.net/","table":"https://clitestkj3e2bodztqdfqsa2.table.core.windows.net/","file":"https://clitestkj3e2bodztqdfqsa2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeghfcmpfiw/providers/Microsoft.Storage/storageAccounts/clitestkoxtfkf67yodgckyb","name":"clitestkoxtfkf67yodgckyb","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-02-28T10:04:35.1410179Z","primaryEndpoints":{"blob":"https://clitestkoxtfkf67yodgckyb.blob.core.windows.net/","queue":"https://clitestkoxtfkf67yodgckyb.queue.core.windows.net/","table":"https://clitestkoxtfkf67yodgckyb.table.core.windows.net/","file":"https://clitestkoxtfkf67yodgckyb.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawbqkye7l4/providers/Microsoft.Storage/storageAccounts/clitestlsjx67ujuhjr7zkah","name":"clitestlsjx67ujuhjr7zkah","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-09T04:30:22.9172929Z","primaryEndpoints":{"blob":"https://clitestlsjx67ujuhjr7zkah.blob.core.windows.net/","queue":"https://clitestlsjx67ujuhjr7zkah.queue.core.windows.net/","table":"https://clitestlsjx67ujuhjr7zkah.table.core.windows.net/","file":"https://clitestlsjx67ujuhjr7zkah.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4chnkoo7ql/providers/Microsoft.Storage/storageAccounts/clitestmevgvn7p2e7ydqz44","name":"clitestmevgvn7p2e7ydqz44","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T03:32:22.2778291Z","primaryEndpoints":{"blob":"https://clitestmevgvn7p2e7ydqz44.blob.core.windows.net/","queue":"https://clitestmevgvn7p2e7ydqz44.queue.core.windows.net/","table":"https://clitestmevgvn7p2e7ydqz44.table.core.windows.net/","file":"https://clitestmevgvn7p2e7ydqz44.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ywcjwwkyqro7r54bzsggg3efujfc54tpvg3pmzto2wg3ifd5i2omb2oqz4ru44b3/providers/Microsoft.Storage/storageAccounts/clitest42lr3sjjyceqm2dsa","name":"clitest42lr3sjjyceqm2dsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:04:08.5153865Z","primaryEndpoints":{"blob":"https://clitest42lr3sjjyceqm2dsa.blob.core.windows.net/","queue":"https://clitest42lr3sjjyceqm2dsa.queue.core.windows.net/","table":"https://clitest42lr3sjjyceqm2dsa.table.core.windows.net/","file":"https://clitest42lr3sjjyceqm2dsa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgt6nin66or5swlkcbzuqqqvuatsme4t5spkwkygh4sziqlamyxv2fckdajclbire/providers/Microsoft.Storage/storageAccounts/clitest4hsuf3zwslxuux46y","name":"clitest4hsuf3zwslxuux46y","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:03.8948335Z","primaryEndpoints":{"blob":"https://clitest4hsuf3zwslxuux46y.blob.core.windows.net/","queue":"https://clitest4hsuf3zwslxuux46y.queue.core.windows.net/","table":"https://clitest4hsuf3zwslxuux46y.table.core.windows.net/","file":"https://clitest4hsuf3zwslxuux46y.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rbhj2siyn33fb3buqv4nfrpbtszdqvkeyymdjvwdzj2tgg6z5ig5v4fsnlngl6zy/providers/Microsoft.Storage/storageAccounts/clitest4k6c57bhb3fbeaeb2","name":"clitest4k6c57bhb3fbeaeb2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:47.2247436Z","primaryEndpoints":{"blob":"https://clitest4k6c57bhb3fbeaeb2.blob.core.windows.net/","queue":"https://clitest4k6c57bhb3fbeaeb2.queue.core.windows.net/","table":"https://clitest4k6c57bhb3fbeaeb2.table.core.windows.net/","file":"https://clitest4k6c57bhb3fbeaeb2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdug325lrcvzanqv3lzbjf3is3c3nkte77zapxydbwac3gjkwncn6mb4f7ac5quodl/providers/Microsoft.Storage/storageAccounts/clitest52hhfb76nrue6ykoz","name":"clitest52hhfb76nrue6ykoz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:18:06.5317315Z","primaryEndpoints":{"blob":"https://clitest52hhfb76nrue6ykoz.blob.core.windows.net/","queue":"https://clitest52hhfb76nrue6ykoz.queue.core.windows.net/","table":"https://clitest52hhfb76nrue6ykoz.table.core.windows.net/","file":"https://clitest52hhfb76nrue6ykoz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglsqzig6e5xb6f6yy7vcn6ga3cecladn475k3busnwddg7bekcbznawxwrs2fzwqsg/providers/Microsoft.Storage/storageAccounts/clitest5em3dvci6rx26joqq","name":"clitest5em3dvci6rx26joqq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:13:15.2330713Z","primaryEndpoints":{"blob":"https://clitest5em3dvci6rx26joqq.blob.core.windows.net/","queue":"https://clitest5em3dvci6rx26joqq.queue.core.windows.net/","table":"https://clitest5em3dvci6rx26joqq.table.core.windows.net/","file":"https://clitest5em3dvci6rx26joqq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xn5tbw5suxir4uuvhka5v4zfg5rmj4em2c6jceeadoa4nzc7b3bdydqwfyqiobus/providers/Microsoft.Storage/storageAccounts/clitest6pwsagzih7oocrr4x","name":"clitest6pwsagzih7oocrr4x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:37.2332988Z","primaryEndpoints":{"blob":"https://clitest6pwsagzih7oocrr4x.blob.core.windows.net/","queue":"https://clitest6pwsagzih7oocrr4x.queue.core.windows.net/","table":"https://clitest6pwsagzih7oocrr4x.table.core.windows.net/","file":"https://clitest6pwsagzih7oocrr4x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq5owppg4dci2qdrj7vzc5jfe2wkpqdndt73aoulpqbpqyme4ys6qp5yegc6x72nfg/providers/Microsoft.Storage/storageAccounts/clitest6xc3bnyzkpbv277hw","name":"clitest6xc3bnyzkpbv277hw","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:21:13.2640292Z","primaryEndpoints":{"blob":"https://clitest6xc3bnyzkpbv277hw.blob.core.windows.net/","queue":"https://clitest6xc3bnyzkpbv277hw.queue.core.windows.net/","table":"https://clitest6xc3bnyzkpbv277hw.table.core.windows.net/","file":"https://clitest6xc3bnyzkpbv277hw.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtzqrijjsdzepstlqsrzx5v3fvkbknlbvid5icevijobsupjxfzvc6jmmkkew4d6gc/providers/Microsoft.Storage/storageAccounts/clitest7v3uutjhsjcjiiqjk","name":"clitest7v3uutjhsjcjiiqjk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:54.1612401Z","primaryEndpoints":{"blob":"https://clitest7v3uutjhsjcjiiqjk.blob.core.windows.net/","queue":"https://clitest7v3uutjhsjcjiiqjk.queue.core.windows.net/","table":"https://clitest7v3uutjhsjcjiiqjk.table.core.windows.net/","file":"https://clitest7v3uutjhsjcjiiqjk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvricmqr6tftghdb2orhfvwwflb5yrmjlbbxfre27xo56m3yaowwocmuew3mkp6dch/providers/Microsoft.Storage/storageAccounts/clitesta6vvdbwzccmdhnmh7","name":"clitesta6vvdbwzccmdhnmh7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:40.9331185Z","primaryEndpoints":{"blob":"https://clitesta6vvdbwzccmdhnmh7.blob.core.windows.net/","queue":"https://clitesta6vvdbwzccmdhnmh7.queue.core.windows.net/","table":"https://clitesta6vvdbwzccmdhnmh7.table.core.windows.net/","file":"https://clitesta6vvdbwzccmdhnmh7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdj7xp7djs6mthgx5vg7frkzob6fa4r4ee6jyrvgncvnjvn36lppo6bqbxzdz75tll/providers/Microsoft.Storage/storageAccounts/clitestb3umzlekxb2476otp","name":"clitestb3umzlekxb2476otp","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:50.1379870Z","primaryEndpoints":{"blob":"https://clitestb3umzlekxb2476otp.blob.core.windows.net/","queue":"https://clitestb3umzlekxb2476otp.queue.core.windows.net/","table":"https://clitestb3umzlekxb2476otp.table.core.windows.net/","file":"https://clitestb3umzlekxb2476otp.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaw64vj3it6oap22mn6a3srkbit3tpoizzmhlztahj2iiulsdnnv6awcybcv6ewogj/providers/Microsoft.Storage/storageAccounts/clitestbiuu3kqzs7c4mqban","name":"clitestbiuu3kqzs7c4mqban","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T22:48:31.8286102Z","primaryEndpoints":{"blob":"https://clitestbiuu3kqzs7c4mqban.blob.core.windows.net/","queue":"https://clitestbiuu3kqzs7c4mqban.queue.core.windows.net/","table":"https://clitestbiuu3kqzs7c4mqban.table.core.windows.net/","file":"https://clitestbiuu3kqzs7c4mqban.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtspw4qvairmgdzy7n5rmnqkgvofttquawuj4gqd2vfu4vovezcfc7sf547caizzrh/providers/Microsoft.Storage/storageAccounts/clitestbsembxlqwsnj2fgge","name":"clitestbsembxlqwsnj2fgge","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:55:33.0930101Z","primaryEndpoints":{"blob":"https://clitestbsembxlqwsnj2fgge.blob.core.windows.net/","queue":"https://clitestbsembxlqwsnj2fgge.queue.core.windows.net/","table":"https://clitestbsembxlqwsnj2fgge.table.core.windows.net/","file":"https://clitestbsembxlqwsnj2fgge.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslmenloyni5hf6ungu5xnok6xazrqmqukr6gorcq64rq2u7hadght6uvzpmpbpg3u/providers/Microsoft.Storage/storageAccounts/clitestcw54yeqtizanybuwo","name":"clitestcw54yeqtizanybuwo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.8923715Z","primaryEndpoints":{"blob":"https://clitestcw54yeqtizanybuwo.blob.core.windows.net/","queue":"https://clitestcw54yeqtizanybuwo.queue.core.windows.net/","table":"https://clitestcw54yeqtizanybuwo.table.core.windows.net/","file":"https://clitestcw54yeqtizanybuwo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgastf744wty5rbe3b42dtbtj6m3u4njqshp3uezxwhayjl4gumhvlnx4umngpnd37j/providers/Microsoft.Storage/storageAccounts/clitestfoxs5cndjzuwfbysg","name":"clitestfoxs5cndjzuwfbysg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:29:08.3076366Z","primaryEndpoints":{"blob":"https://clitestfoxs5cndjzuwfbysg.blob.core.windows.net/","queue":"https://clitestfoxs5cndjzuwfbysg.queue.core.windows.net/","table":"https://clitestfoxs5cndjzuwfbysg.table.core.windows.net/","file":"https://clitestfoxs5cndjzuwfbysg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgjamsip45eiod37k5ava3icxn6g65gkuyffmj7fd2ipic36deyjqhzs5f5amepjw/providers/Microsoft.Storage/storageAccounts/clitestfseuqgiqhdcp3ufhh","name":"clitestfseuqgiqhdcp3ufhh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:43:04.6461064Z","primaryEndpoints":{"blob":"https://clitestfseuqgiqhdcp3ufhh.blob.core.windows.net/","queue":"https://clitestfseuqgiqhdcp3ufhh.queue.core.windows.net/","table":"https://clitestfseuqgiqhdcp3ufhh.table.core.windows.net/","file":"https://clitestfseuqgiqhdcp3ufhh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiojjcuhfzayzrer4xt3xelo5irqyhos7zzodnkr36kccmj3tkike4hj2z333kq54w/providers/Microsoft.Storage/storageAccounts/clitestgzh5gtd7dvvavu4r7","name":"clitestgzh5gtd7dvvavu4r7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:39.2057201Z","primaryEndpoints":{"blob":"https://clitestgzh5gtd7dvvavu4r7.blob.core.windows.net/","queue":"https://clitestgzh5gtd7dvvavu4r7.queue.core.windows.net/","table":"https://clitestgzh5gtd7dvvavu4r7.table.core.windows.net/","file":"https://clitestgzh5gtd7dvvavu4r7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3uh3ecchugblssjzzurmbz3fwz3si25txvdhbc3t7jo6zlnbitco2s4mnnjpqst2v/providers/Microsoft.Storage/storageAccounts/clitestif7zaqb3uji3nhacq","name":"clitestif7zaqb3uji3nhacq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:48:10.0998779Z","primaryEndpoints":{"blob":"https://clitestif7zaqb3uji3nhacq.blob.core.windows.net/","queue":"https://clitestif7zaqb3uji3nhacq.queue.core.windows.net/","table":"https://clitestif7zaqb3uji3nhacq.table.core.windows.net/","file":"https://clitestif7zaqb3uji3nhacq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddpmpp3buqip4f3ztkpw2okh4vd5lblxcs36olwlxmrn6hqzkgms3jgye5t72fahh/providers/Microsoft.Storage/storageAccounts/clitestlp7xyjhqdanlvdk7l","name":"clitestlp7xyjhqdanlvdk7l","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:32:05.2244193Z","primaryEndpoints":{"blob":"https://clitestlp7xyjhqdanlvdk7l.blob.core.windows.net/","queue":"https://clitestlp7xyjhqdanlvdk7l.queue.core.windows.net/","table":"https://clitestlp7xyjhqdanlvdk7l.table.core.windows.net/","file":"https://clitestlp7xyjhqdanlvdk7l.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiqgpdt6kvdporvteyacy5t5zw43gekna5gephtplex4buchsqnucjh24ke6ian63g/providers/Microsoft.Storage/storageAccounts/clitestlpnuh5cbq4gzlb4mt","name":"clitestlpnuh5cbq4gzlb4mt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:40:23.0669136Z","primaryEndpoints":{"blob":"https://clitestlpnuh5cbq4gzlb4mt.blob.core.windows.net/","queue":"https://clitestlpnuh5cbq4gzlb4mt.queue.core.windows.net/","table":"https://clitestlpnuh5cbq4gzlb4mt.table.core.windows.net/","file":"https://clitestlpnuh5cbq4gzlb4mt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wjfol23jdbl2gkdoeiou4nae4tnyxkvqazscvbwkazi5dbugwnwlcr7gn2nvblbz/providers/Microsoft.Storage/storageAccounts/clitestlvmg3eu2v3vfviots","name":"clitestlvmg3eu2v3vfviots","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:19:23.4055624Z","primaryEndpoints":{"blob":"https://clitestlvmg3eu2v3vfviots.blob.core.windows.net/","queue":"https://clitestlvmg3eu2v3vfviots.queue.core.windows.net/","table":"https://clitestlvmg3eu2v3vfviots.table.core.windows.net/","file":"https://clitestlvmg3eu2v3vfviots.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgod6ukvpdyodfbumzqyctb3mizfldmw7m4kczmcvtiwdw7eknpoq2uxsr3gc5qs6ia/providers/Microsoft.Storage/storageAccounts/clitestmekftj553567izfaa","name":"clitestmekftj553567izfaa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:40:57.8912800Z","primaryEndpoints":{"blob":"https://clitestmekftj553567izfaa.blob.core.windows.net/","queue":"https://clitestmekftj553567izfaa.queue.core.windows.net/","table":"https://clitestmekftj553567izfaa.table.core.windows.net/","file":"https://clitestmekftj553567izfaa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5gexz53gwezjaj2k73fecuuc4yqlddops5ntbekppouzb4x7h6bpbyvfme5nlourk/providers/Microsoft.Storage/storageAccounts/clitestmjpad5ax6f4npu3mz","name":"clitestmjpad5ax6f4npu3mz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:55:42.0602013Z","primaryEndpoints":{"blob":"https://clitestmjpad5ax6f4npu3mz.blob.core.windows.net/","queue":"https://clitestmjpad5ax6f4npu3mz.queue.core.windows.net/","table":"https://clitestmjpad5ax6f4npu3mz.table.core.windows.net/","file":"https://clitestmjpad5ax6f4npu3mz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2abywok236kysqgqh6yyxw5hjsmd2oiv7fmmzca4bdkfvsyhup2g3flygvn45gbtp/providers/Microsoft.Storage/storageAccounts/clitestnwqabo3kuhvx6svgt","name":"clitestnwqabo3kuhvx6svgt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:42:52.4883542Z","primaryEndpoints":{"blob":"https://clitestnwqabo3kuhvx6svgt.blob.core.windows.net/","queue":"https://clitestnwqabo3kuhvx6svgt.queue.core.windows.net/","table":"https://clitestnwqabo3kuhvx6svgt.table.core.windows.net/","file":"https://clitestnwqabo3kuhvx6svgt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4ewrfpsmwsfbapbb7k3cslbr34yplftoedawvzwr66vnki7qslc7yxcjg74xcdt4/providers/Microsoft.Storage/storageAccounts/clitestobi4eotlnsa6zh3bq","name":"clitestobi4eotlnsa6zh3bq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.4262587Z","primaryEndpoints":{"blob":"https://clitestobi4eotlnsa6zh3bq.blob.core.windows.net/","queue":"https://clitestobi4eotlnsa6zh3bq.queue.core.windows.net/","table":"https://clitestobi4eotlnsa6zh3bq.table.core.windows.net/","file":"https://clitestobi4eotlnsa6zh3bq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzvfnrnbiodivv7py3ttijdf62ufwz3obvcpzey36zr4h56myn3sajeenb67t2vufx/providers/Microsoft.Storage/storageAccounts/clitestokj67zonpbcy4h3ut","name":"clitestokj67zonpbcy4h3ut","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:51:42.3127731Z","primaryEndpoints":{"blob":"https://clitestokj67zonpbcy4h3ut.blob.core.windows.net/","queue":"https://clitestokj67zonpbcy4h3ut.queue.core.windows.net/","table":"https://clitestokj67zonpbcy4h3ut.table.core.windows.net/","file":"https://clitestokj67zonpbcy4h3ut.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg27eecv3qlcw6ol3xvlbfxfoasylnf4kby2jp2xlzkuk3skinkbsynd7fskj5fpsy3/providers/Microsoft.Storage/storageAccounts/clitestonivdoendik6ud5xu","name":"clitestonivdoendik6ud5xu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:25:23.1693829Z","primaryEndpoints":{"blob":"https://clitestonivdoendik6ud5xu.blob.core.windows.net/","queue":"https://clitestonivdoendik6ud5xu.queue.core.windows.net/","table":"https://clitestonivdoendik6ud5xu.table.core.windows.net/","file":"https://clitestonivdoendik6ud5xu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4g3f5lihvl5ymspqef7wlq3ougtwcl5cysr5hf26ft6qecpqygvuavvpaffm4jp2z/providers/Microsoft.Storage/storageAccounts/clitestppyuah3f63vji25wh","name":"clitestppyuah3f63vji25wh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:35:14.7210571Z","primaryEndpoints":{"blob":"https://clitestppyuah3f63vji25wh.blob.core.windows.net/","queue":"https://clitestppyuah3f63vji25wh.queue.core.windows.net/","table":"https://clitestppyuah3f63vji25wh.table.core.windows.net/","file":"https://clitestppyuah3f63vji25wh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxbcxx4ank64f2iixhvgd2jaf76ixz7z6ehcg4wgtoikus5rrg53sdli6a5acuxg7/providers/Microsoft.Storage/storageAccounts/clitestqltbsnaacri7pnm66","name":"clitestqltbsnaacri7pnm66","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:02:56.9375574Z","primaryEndpoints":{"blob":"https://clitestqltbsnaacri7pnm66.blob.core.windows.net/","queue":"https://clitestqltbsnaacri7pnm66.queue.core.windows.net/","table":"https://clitestqltbsnaacri7pnm66.table.core.windows.net/","file":"https://clitestqltbsnaacri7pnm66.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4euz2qks4a65suw4yg7q66oyuhws64hd3parve3zm7c7l5i636my5smbzk6cbvis/providers/Microsoft.Storage/storageAccounts/cliteststxx2rebwsjj4m7ev","name":"cliteststxx2rebwsjj4m7ev","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:28:46.2419469Z","primaryEndpoints":{"blob":"https://cliteststxx2rebwsjj4m7ev.blob.core.windows.net/","queue":"https://cliteststxx2rebwsjj4m7ev.queue.core.windows.net/","table":"https://cliteststxx2rebwsjj4m7ev.table.core.windows.net/","file":"https://cliteststxx2rebwsjj4m7ev.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7wjguctbigk256arnwsy5cikne5rtgxsungotn3y3cp7nofxioeys2x7dtiknym2a/providers/Microsoft.Storage/storageAccounts/clitesttayxcfhxj5auoke5a","name":"clitesttayxcfhxj5auoke5a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:16:25.1841497Z","primaryEndpoints":{"blob":"https://clitesttayxcfhxj5auoke5a.blob.core.windows.net/","queue":"https://clitesttayxcfhxj5auoke5a.queue.core.windows.net/","table":"https://clitesttayxcfhxj5auoke5a.table.core.windows.net/","file":"https://clitesttayxcfhxj5auoke5a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7tywk7mx4oyp34pr4jo76jp54xi6rrmofingxkdmix2bxupdaavsgm5bscdon7hb/providers/Microsoft.Storage/storageAccounts/clitestupama2samndokm3jd","name":"clitestupama2samndokm3jd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:48:18.6864732Z","primaryEndpoints":{"blob":"https://clitestupama2samndokm3jd.blob.core.windows.net/","queue":"https://clitestupama2samndokm3jd.queue.core.windows.net/","table":"https://clitestupama2samndokm3jd.table.core.windows.net/","file":"https://clitestupama2samndokm3jd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb6aglzjbgktmouuijj6dzlic4zxyiyz3rvpkaagcnysqv5336hn4e4fogwqavf53q/providers/Microsoft.Storage/storageAccounts/clitestvlciwxue3ibitylva","name":"clitestvlciwxue3ibitylva","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:03.3195568Z","primaryEndpoints":{"blob":"https://clitestvlciwxue3ibitylva.blob.core.windows.net/","queue":"https://clitestvlciwxue3ibitylva.queue.core.windows.net/","table":"https://clitestvlciwxue3ibitylva.table.core.windows.net/","file":"https://clitestvlciwxue3ibitylva.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg742gmmbkzphoscnqkjjro5gelzqfg4eicwtcz7tydc6xcgjtt72ilsthdw4u2ujmd/providers/Microsoft.Storage/storageAccounts/clitestvqpk5j3bnpinywycx","name":"clitestvqpk5j3bnpinywycx","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:51.5462900Z","primaryEndpoints":{"blob":"https://clitestvqpk5j3bnpinywycx.blob.core.windows.net/","queue":"https://clitestvqpk5j3bnpinywycx.queue.core.windows.net/","table":"https://clitestvqpk5j3bnpinywycx.table.core.windows.net/","file":"https://clitestvqpk5j3bnpinywycx.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmdksg3tnpfj5ikmkrjg42qofreubpsr5cdqs5zhcezqj7v5kgrmpx525kvdqm57ya/providers/Microsoft.Storage/storageAccounts/clitesty7sgxo5udzywq7e2x","name":"clitesty7sgxo5udzywq7e2x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:58:46.9231863Z","primaryEndpoints":{"blob":"https://clitesty7sgxo5udzywq7e2x.blob.core.windows.net/","queue":"https://clitesty7sgxo5udzywq7e2x.queue.core.windows.net/","table":"https://clitesty7sgxo5udzywq7e2x.table.core.windows.net/","file":"https://clitesty7sgxo5udzywq7e2x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2s77glmcoemgtgmlcgi7repejuetyjuabg2vruyc3ayj4u66cvgdpdofhcxrql5h5/providers/Microsoft.Storage/storageAccounts/clitestycqidlsdiibjyb3t4","name":"clitestycqidlsdiibjyb3t4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:39:28.1472265Z","primaryEndpoints":{"blob":"https://clitestycqidlsdiibjyb3t4.blob.core.windows.net/","queue":"https://clitestycqidlsdiibjyb3t4.queue.core.windows.net/","table":"https://clitestycqidlsdiibjyb3t4.table.core.windows.net/","file":"https://clitestycqidlsdiibjyb3t4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrq7ijqostqq5aahlpjr7formy46bcwnloyvgqqn3ztsmo4rfypznsbm6x6wq7m4f/providers/Microsoft.Storage/storageAccounts/clitestyx33svgzm5sxgbbwr","name":"clitestyx33svgzm5sxgbbwr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:49.4827371Z","primaryEndpoints":{"blob":"https://clitestyx33svgzm5sxgbbwr.blob.core.windows.net/","queue":"https://clitestyx33svgzm5sxgbbwr.queue.core.windows.net/","table":"https://clitestyx33svgzm5sxgbbwr.table.core.windows.net/","file":"https://clitestyx33svgzm5sxgbbwr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaars34if2f6awhrzr5vwtr2ocprv723xlflz2zxxqut3f6tqiv2hjy2l5zaj6kutqvbq/providers/Microsoft.Storage/storageAccounts/clitest3r7bin53shduexe6n","name":"clitest3r7bin53shduexe6n","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:36:46.7845261Z","primaryEndpoints":{"blob":"https://clitest3r7bin53shduexe6n.blob.core.windows.net/","queue":"https://clitest3r7bin53shduexe6n.queue.core.windows.net/","table":"https://clitest3r7bin53shduexe6n.table.core.windows.net/","file":"https://clitest3r7bin53shduexe6n.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestra7ouuwajkupsos3f6xg6pbwkbxdaearft7d4e35uecoopx7yzgnelmfuetvhvn4jle6/providers/Microsoft.Storage/storageAccounts/clitest55eq4q3yibnqxk2lk","name":"clitest55eq4q3yibnqxk2lk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T23:09:45.7143786Z","primaryEndpoints":{"blob":"https://clitest55eq4q3yibnqxk2lk.blob.core.windows.net/","queue":"https://clitest55eq4q3yibnqxk2lk.queue.core.windows.net/","table":"https://clitest55eq4q3yibnqxk2lk.table.core.windows.net/","file":"https://clitest55eq4q3yibnqxk2lk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaocausrs3iu33bd7z3atmvd3kphc6acu73ifeyvogvdgdktef736y3qrmxkdwrnraj4o/providers/Microsoft.Storage/storageAccounts/clitest5fich3ydeobhd23w2","name":"clitest5fich3ydeobhd23w2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:24.9948735Z","primaryEndpoints":{"blob":"https://clitest5fich3ydeobhd23w2.blob.core.windows.net/","queue":"https://clitest5fich3ydeobhd23w2.queue.core.windows.net/","table":"https://clitest5fich3ydeobhd23w2.table.core.windows.net/","file":"https://clitest5fich3ydeobhd23w2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttt33kr36k27jzupqzyvmwoyxnhhkzd57gzdkiruhhj7hmr7wi5gh32ofdsa4cm2cbigi/providers/Microsoft.Storage/storageAccounts/clitest5nfub4nyp5igwlueb","name":"clitest5nfub4nyp5igwlueb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:51:11.8477455Z","primaryEndpoints":{"blob":"https://clitest5nfub4nyp5igwlueb.blob.core.windows.net/","queue":"https://clitest5nfub4nyp5igwlueb.queue.core.windows.net/","table":"https://clitest5nfub4nyp5igwlueb.table.core.windows.net/","file":"https://clitest5nfub4nyp5igwlueb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestml55iowweb6q7xe2wje5hizd4cfs53eijje47bsf7qy5xru2fegf2adfotoitfvq7b34/providers/Microsoft.Storage/storageAccounts/clitest6tnfqsy73mo2qi6ov","name":"clitest6tnfqsy73mo2qi6ov","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-11T01:42:00.1391781Z","primaryEndpoints":{"blob":"https://clitest6tnfqsy73mo2qi6ov.blob.core.windows.net/","queue":"https://clitest6tnfqsy73mo2qi6ov.queue.core.windows.net/","table":"https://clitest6tnfqsy73mo2qi6ov.table.core.windows.net/","file":"https://clitest6tnfqsy73mo2qi6ov.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5pxpr64tqxefi4kgvuh5z3cmr3srlor6oj3om2ehpxbkm7orzvfbgqagtooojquptagq/providers/Microsoft.Storage/storageAccounts/clitesta23vfo64epdjcu3ot","name":"clitesta23vfo64epdjcu3ot","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:20:46.7656986Z","primaryEndpoints":{"blob":"https://clitesta23vfo64epdjcu3ot.blob.core.windows.net/","queue":"https://clitesta23vfo64epdjcu3ot.queue.core.windows.net/","table":"https://clitesta23vfo64epdjcu3ot.table.core.windows.net/","file":"https://clitesta23vfo64epdjcu3ot.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkcuipcz3pt2cibpgeifzrgfyzqdvsmwkw55s6of5em2ayvaozqx7seepqe3qotzz66dq/providers/Microsoft.Storage/storageAccounts/clitestapjrxhw5tbshhpa5r","name":"clitestapjrxhw5tbshhpa5r","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:04:56.0558227Z","primaryEndpoints":{"blob":"https://clitestapjrxhw5tbshhpa5r.blob.core.windows.net/","queue":"https://clitestapjrxhw5tbshhpa5r.queue.core.windows.net/","table":"https://clitestapjrxhw5tbshhpa5r.table.core.windows.net/","file":"https://clitestapjrxhw5tbshhpa5r.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpyyrggpop6t2eifpvaicw2npacscf5smrsegi7gjeb6arklcmy2poh32b757t4k7eyxm/providers/Microsoft.Storage/storageAccounts/clitestb5yxhpa3shv5y6e6y","name":"clitestb5yxhpa3shv5y6e6y","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:36:56.0894550Z","primaryEndpoints":{"blob":"https://clitestb5yxhpa3shv5y6e6y.blob.core.windows.net/","queue":"https://clitestb5yxhpa3shv5y6e6y.queue.core.windows.net/","table":"https://clitestb5yxhpa3shv5y6e6y.table.core.windows.net/","file":"https://clitestb5yxhpa3shv5y6e6y.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcioaekrdcac3gfopptjaajefdj423bny2ijiohhlstguyjbz7ey5yopzt3glfk3wu22c/providers/Microsoft.Storage/storageAccounts/clitestbajwfvucqjul4yvoq","name":"clitestbajwfvucqjul4yvoq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:43:59.3143640Z","primaryEndpoints":{"blob":"https://clitestbajwfvucqjul4yvoq.blob.core.windows.net/","queue":"https://clitestbajwfvucqjul4yvoq.queue.core.windows.net/","table":"https://clitestbajwfvucqjul4yvoq.table.core.windows.net/","file":"https://clitestbajwfvucqjul4yvoq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestef6eejui2ry622mc6zf2nvoemmdy7t3minir53pkvaii6ftsyufmbwzcwdomdg4ybrb6/providers/Microsoft.Storage/storageAccounts/clitestcnrkbgnvxvtoswnwk","name":"clitestcnrkbgnvxvtoswnwk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:54:10.7204974Z","primaryEndpoints":{"blob":"https://clitestcnrkbgnvxvtoswnwk.blob.core.windows.net/","queue":"https://clitestcnrkbgnvxvtoswnwk.queue.core.windows.net/","table":"https://clitestcnrkbgnvxvtoswnwk.table.core.windows.net/","file":"https://clitestcnrkbgnvxvtoswnwk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestem5kabxlxhdb6zfxdhtqgoaa4f5fgadqcvzwbxjv4i3tpl7cazs3yx46oidsxdy77cy2/providers/Microsoft.Storage/storageAccounts/clitestdu2ev4t4zoit7bvqi","name":"clitestdu2ev4t4zoit7bvqi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:41:00.0743945Z","primaryEndpoints":{"blob":"https://clitestdu2ev4t4zoit7bvqi.blob.core.windows.net/","queue":"https://clitestdu2ev4t4zoit7bvqi.queue.core.windows.net/","table":"https://clitestdu2ev4t4zoit7bvqi.table.core.windows.net/","file":"https://clitestdu2ev4t4zoit7bvqi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnxak6zvgtto64ihvpqeb6k6axceeskjnygs6kmirhy7t3ea2fixecjhr7i4qckpqpso/providers/Microsoft.Storage/storageAccounts/clitesteabyzaucegm7asmdy","name":"clitesteabyzaucegm7asmdy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:56:30.4416480Z","primaryEndpoints":{"blob":"https://clitesteabyzaucegm7asmdy.blob.core.windows.net/","queue":"https://clitesteabyzaucegm7asmdy.queue.core.windows.net/","table":"https://clitesteabyzaucegm7asmdy.table.core.windows.net/","file":"https://clitesteabyzaucegm7asmdy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestitvqgal52p4psfil24fzt3bed3ggoi6homqb65uwqtwqytvatpymshlg6xdxbb2y2xun/providers/Microsoft.Storage/storageAccounts/clitesteg772nlczvaz5acxj","name":"clitesteg772nlczvaz5acxj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T23:25:35.2172397Z","primaryEndpoints":{"blob":"https://clitesteg772nlczvaz5acxj.blob.core.windows.net/","queue":"https://clitesteg772nlczvaz5acxj.queue.core.windows.net/","table":"https://clitesteg772nlczvaz5acxj.table.core.windows.net/","file":"https://clitesteg772nlczvaz5acxj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhxadwesuwxcw3oci5pchhqwqwmcqiriqymhru2exjji6ax7focfxa2wpmd3xbxtaq3t/providers/Microsoft.Storage/storageAccounts/clitestftms76siovw6xle6l","name":"clitestftms76siovw6xle6l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:54:59.9351597Z","primaryEndpoints":{"blob":"https://clitestftms76siovw6xle6l.blob.core.windows.net/","queue":"https://clitestftms76siovw6xle6l.queue.core.windows.net/","table":"https://clitestftms76siovw6xle6l.table.core.windows.net/","file":"https://clitestftms76siovw6xle6l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7yubzobtgqqoviarcco22mlfkafuvu32s3o4dfts54zzanzbsl5ip7rzaxzgigg7ijta/providers/Microsoft.Storage/storageAccounts/clitestg6yfm7cgxhb4ewrdd","name":"clitestg6yfm7cgxhb4ewrdd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:50.0553084Z","primaryEndpoints":{"blob":"https://clitestg6yfm7cgxhb4ewrdd.blob.core.windows.net/","queue":"https://clitestg6yfm7cgxhb4ewrdd.queue.core.windows.net/","table":"https://clitestg6yfm7cgxhb4ewrdd.table.core.windows.net/","file":"https://clitestg6yfm7cgxhb4ewrdd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmf7nhc2b7xj4ixozvacoyhu5txvmpbvnechdktpac6dpdx3ckv6jt6vebrkl24rzui4n/providers/Microsoft.Storage/storageAccounts/clitestgqwqxremngb73a7d4","name":"clitestgqwqxremngb73a7d4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:54.9900949Z","primaryEndpoints":{"blob":"https://clitestgqwqxremngb73a7d4.blob.core.windows.net/","queue":"https://clitestgqwqxremngb73a7d4.queue.core.windows.net/","table":"https://clitestgqwqxremngb73a7d4.table.core.windows.net/","file":"https://clitestgqwqxremngb73a7d4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestumpqlcfhjrqokmcud3ilwtvxyfowdjypjqgyymcf4whtgbq2gzzq6f2rqs66ll4mjgzm/providers/Microsoft.Storage/storageAccounts/clitestgu6cs7lus5a567u57","name":"clitestgu6cs7lus5a567u57","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:14:06.4894945Z","primaryEndpoints":{"blob":"https://clitestgu6cs7lus5a567u57.blob.core.windows.net/","queue":"https://clitestgu6cs7lus5a567u57.queue.core.windows.net/","table":"https://clitestgu6cs7lus5a567u57.table.core.windows.net/","file":"https://clitestgu6cs7lus5a567u57.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestn4htsp3pg7ss7lmzhcljejgtykexcvsnpgv6agwecgmuu6ckzau64qsjr7huw7yjt7xp/providers/Microsoft.Storage/storageAccounts/clitestixj25nsrxwuhditis","name":"clitestixj25nsrxwuhditis","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:34:17.0626105Z","primaryEndpoints":{"blob":"https://clitestixj25nsrxwuhditis.blob.core.windows.net/","queue":"https://clitestixj25nsrxwuhditis.queue.core.windows.net/","table":"https://clitestixj25nsrxwuhditis.table.core.windows.net/","file":"https://clitestixj25nsrxwuhditis.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgq2rbt5t5uv3qy2hasu5gvqrlzozx6vzerszimnby4ybqtp5fmecaxj3to5iemnt7zxi/providers/Microsoft.Storage/storageAccounts/clitestl3yjfwd43tngr3lc3","name":"clitestl3yjfwd43tngr3lc3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.9204650Z","primaryEndpoints":{"blob":"https://clitestl3yjfwd43tngr3lc3.blob.core.windows.net/","queue":"https://clitestl3yjfwd43tngr3lc3.queue.core.windows.net/","table":"https://clitestl3yjfwd43tngr3lc3.table.core.windows.net/","file":"https://clitestl3yjfwd43tngr3lc3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestepy64dgrtly4yjibvcoccnejqyhiq4x7o6p7agna5wsmlycai7yxgi3cq3r2y6obgwfd/providers/Microsoft.Storage/storageAccounts/clitestld7574jebhj62dtvt","name":"clitestld7574jebhj62dtvt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:25:44.5717202Z","primaryEndpoints":{"blob":"https://clitestld7574jebhj62dtvt.blob.core.windows.net/","queue":"https://clitestld7574jebhj62dtvt.queue.core.windows.net/","table":"https://clitestld7574jebhj62dtvt.table.core.windows.net/","file":"https://clitestld7574jebhj62dtvt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestp5tcxahtvl6aa72hi7stjq5jf52e6pomwtrblva65dei2ftuqpruyn4w4twv7rqj3idw/providers/Microsoft.Storage/storageAccounts/clitestljawlm4h73ws6xqet","name":"clitestljawlm4h73ws6xqet","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:47:48.9404345Z","primaryEndpoints":{"blob":"https://clitestljawlm4h73ws6xqet.blob.core.windows.net/","queue":"https://clitestljawlm4h73ws6xqet.queue.core.windows.net/","table":"https://clitestljawlm4h73ws6xqet.table.core.windows.net/","file":"https://clitestljawlm4h73ws6xqet.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4uclirqb3ls66vfea6dckw3hj5kaextm324ugnbkquibcn2rck7b7gmrmql55g3zknff/providers/Microsoft.Storage/storageAccounts/clitestm4jcw64slbkeds52p","name":"clitestm4jcw64slbkeds52p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:20.7413381Z","primaryEndpoints":{"blob":"https://clitestm4jcw64slbkeds52p.blob.core.windows.net/","queue":"https://clitestm4jcw64slbkeds52p.queue.core.windows.net/","table":"https://clitestm4jcw64slbkeds52p.table.core.windows.net/","file":"https://clitestm4jcw64slbkeds52p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6q54l25xpde6kfnauzzkpfgepjiio73onycgbulqkawkv5wcigbnnhzv7uao7abedoer/providers/Microsoft.Storage/storageAccounts/clitestm5bj2p5ajecznrca6","name":"clitestm5bj2p5ajecznrca6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:35:33.2545964Z","primaryEndpoints":{"blob":"https://clitestm5bj2p5ajecznrca6.blob.core.windows.net/","queue":"https://clitestm5bj2p5ajecznrca6.queue.core.windows.net/","table":"https://clitestm5bj2p5ajecznrca6.table.core.windows.net/","file":"https://clitestm5bj2p5ajecznrca6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlasgl5zx6ikvcbociiykbocsytte2lohfxvpwhwimcc3vbrjjyw6bfbdr2vnimlyhqqi/providers/Microsoft.Storage/storageAccounts/clitestmmrdf65b6iyccd46o","name":"clitestmmrdf65b6iyccd46o","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:31:23.2526784Z","primaryEndpoints":{"blob":"https://clitestmmrdf65b6iyccd46o.blob.core.windows.net/","queue":"https://clitestmmrdf65b6iyccd46o.queue.core.windows.net/","table":"https://clitestmmrdf65b6iyccd46o.table.core.windows.net/","file":"https://clitestmmrdf65b6iyccd46o.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvilxen5dzbyerye5umdunqblbkglgcffizxusyzmgifnuy5xzu67t3fokkh6osaqqyyj/providers/Microsoft.Storage/storageAccounts/clitestoueypfkdm2ub7n246","name":"clitestoueypfkdm2ub7n246","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:57:05.7597303Z","primaryEndpoints":{"blob":"https://clitestoueypfkdm2ub7n246.blob.core.windows.net/","queue":"https://clitestoueypfkdm2ub7n246.queue.core.windows.net/","table":"https://clitestoueypfkdm2ub7n246.table.core.windows.net/","file":"https://clitestoueypfkdm2ub7n246.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcnbbt3dvwtzd7t2de25yso3n2gs6i7mqnfloe5myghvfjc5hddzlwkxbotwgt5utz23p/providers/Microsoft.Storage/storageAccounts/clitestoyv4k5wezlz5652m7","name":"clitestoyv4k5wezlz5652m7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:53:25.6154142Z","primaryEndpoints":{"blob":"https://clitestoyv4k5wezlz5652m7.blob.core.windows.net/","queue":"https://clitestoyv4k5wezlz5652m7.queue.core.windows.net/","table":"https://clitestoyv4k5wezlz5652m7.table.core.windows.net/","file":"https://clitestoyv4k5wezlz5652m7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestixw7rtta5a356httmdosgg7qubvcaouftsvknfhvqqhqwftebu7jy5r27pprk7ctdnwp/providers/Microsoft.Storage/storageAccounts/clitestri5mezafhuqqzpn5f","name":"clitestri5mezafhuqqzpn5f","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:35:27.3868241Z","primaryEndpoints":{"blob":"https://clitestri5mezafhuqqzpn5f.blob.core.windows.net/","queue":"https://clitestri5mezafhuqqzpn5f.queue.core.windows.net/","table":"https://clitestri5mezafhuqqzpn5f.table.core.windows.net/","file":"https://clitestri5mezafhuqqzpn5f.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestevsaicktnjgl5cxsdgqxunvrpbz3b5kiwem5aupvcn666xqibcydgkcmqom7wfe3dapu/providers/Microsoft.Storage/storageAccounts/clitestrjmnbaleto4rtnerx","name":"clitestrjmnbaleto4rtnerx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T14:10:11.2769522Z","primaryEndpoints":{"blob":"https://clitestrjmnbaleto4rtnerx.blob.core.windows.net/","queue":"https://clitestrjmnbaleto4rtnerx.queue.core.windows.net/","table":"https://clitestrjmnbaleto4rtnerx.table.core.windows.net/","file":"https://clitestrjmnbaleto4rtnerx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4r6levc5rrhybrqdpa7ji574v5syh473mkechmyeuub52k5ppe6jpwdn4ummj5zz4dls/providers/Microsoft.Storage/storageAccounts/clitestrloxav4ddvzysochv","name":"clitestrloxav4ddvzysochv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T17:02:12.3756824Z","primaryEndpoints":{"blob":"https://clitestrloxav4ddvzysochv.blob.core.windows.net/","queue":"https://clitestrloxav4ddvzysochv.queue.core.windows.net/","table":"https://clitestrloxav4ddvzysochv.table.core.windows.net/","file":"https://clitestrloxav4ddvzysochv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvjv33kuh5emihpapvtmm2rvht3tzrvzj3l7pygfh2yfwrlsqrgth2qfth6eylgrcnc2v/providers/Microsoft.Storage/storageAccounts/clitestrynzkqk7indncjb6c","name":"clitestrynzkqk7indncjb6c","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:37:22.4111374Z","primaryEndpoints":{"blob":"https://clitestrynzkqk7indncjb6c.blob.core.windows.net/","queue":"https://clitestrynzkqk7indncjb6c.queue.core.windows.net/","table":"https://clitestrynzkqk7indncjb6c.table.core.windows.net/","file":"https://clitestrynzkqk7indncjb6c.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3dson3a62z7n3t273by34bdkoa3bdosbrwqb6iwpygxslz6qc3jfeirp57b7zgufmnqk/providers/Microsoft.Storage/storageAccounts/clitests4scvwk2agr6ufpu3","name":"clitests4scvwk2agr6ufpu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:55:14.8791923Z","primaryEndpoints":{"blob":"https://clitests4scvwk2agr6ufpu3.blob.core.windows.net/","queue":"https://clitests4scvwk2agr6ufpu3.queue.core.windows.net/","table":"https://clitests4scvwk2agr6ufpu3.table.core.windows.net/","file":"https://clitests4scvwk2agr6ufpu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlmm4hekch44v2jjs6g7whi3qbgamfmevxrpjihfokewye7h3suswarq4mw5gdmosfj2y/providers/Microsoft.Storage/storageAccounts/clitests6o6rszcmwmsvtcwx","name":"clitests6o6rszcmwmsvtcwx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:15:04.0385481Z","primaryEndpoints":{"blob":"https://clitests6o6rszcmwmsvtcwx.blob.core.windows.net/","queue":"https://clitests6o6rszcmwmsvtcwx.queue.core.windows.net/","table":"https://clitests6o6rszcmwmsvtcwx.table.core.windows.net/","file":"https://clitests6o6rszcmwmsvtcwx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwbzchpbjgcxxskmdhphtbzptfkqdlzhapbqla2v27iw54pevob7yanyz7ppmmigrhtkk/providers/Microsoft.Storage/storageAccounts/clitestvuslwcarkk3sdmgga","name":"clitestvuslwcarkk3sdmgga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T23:14:55.3892927Z","primaryEndpoints":{"blob":"https://clitestvuslwcarkk3sdmgga.blob.core.windows.net/","queue":"https://clitestvuslwcarkk3sdmgga.queue.core.windows.net/","table":"https://clitestvuslwcarkk3sdmgga.table.core.windows.net/","file":"https://clitestvuslwcarkk3sdmgga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestreufd5cqee3zivebxym7cxi57izubkyszpgf3xlnt4bsit2x6ptggeuh6qiwu4jvwhd5/providers/Microsoft.Storage/storageAccounts/clitestwbzje3s6lhe5qaq5l","name":"clitestwbzje3s6lhe5qaq5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:28:23.5884630Z","primaryEndpoints":{"blob":"https://clitestwbzje3s6lhe5qaq5l.blob.core.windows.net/","queue":"https://clitestwbzje3s6lhe5qaq5l.queue.core.windows.net/","table":"https://clitestwbzje3s6lhe5qaq5l.table.core.windows.net/","file":"https://clitestwbzje3s6lhe5qaq5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsfkcdnkd2xngtxma6yip2hrfxcljs3dtv4p6teg457mlhyruamnayv7ejk3e264tbsue/providers/Microsoft.Storage/storageAccounts/clitestxc5fs7nomr2dnwv5h","name":"clitestxc5fs7nomr2dnwv5h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:57:25.4227819Z","primaryEndpoints":{"blob":"https://clitestxc5fs7nomr2dnwv5h.blob.core.windows.net/","queue":"https://clitestxc5fs7nomr2dnwv5h.queue.core.windows.net/","table":"https://clitestxc5fs7nomr2dnwv5h.table.core.windows.net/","file":"https://clitestxc5fs7nomr2dnwv5h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuapcrhybuggyatduocbydgd2xgdyuaj26awe5rksptnbf2uz7rbjt5trh6gj3q3jv23u/providers/Microsoft.Storage/storageAccounts/clitestxueoehnvkkqr6h434","name":"clitestxueoehnvkkqr6h434","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T22:09:26.3282727Z","primaryEndpoints":{"blob":"https://clitestxueoehnvkkqr6h434.blob.core.windows.net/","queue":"https://clitestxueoehnvkkqr6h434.queue.core.windows.net/","table":"https://clitestxueoehnvkkqr6h434.table.core.windows.net/","file":"https://clitestxueoehnvkkqr6h434.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbyccq72r2rnjfc6e7ma7xklipq5yxdec7xzgp3rqdiqvagffurpfcagi7dv3kjixsp7k/providers/Microsoft.Storage/storageAccounts/version25b4mikldc2rugmv6","name":"version25b4mikldc2rugmv6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:57.6990367Z","primaryEndpoints":{"blob":"https://version25b4mikldc2rugmv6.blob.core.windows.net/","queue":"https://version25b4mikldc2rugmv6.queue.core.windows.net/","table":"https://version25b4mikldc2rugmv6.table.core.windows.net/","file":"https://version25b4mikldc2rugmv6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitests76ucvib4b5fgppqu5ciu6pknaatlexv4uk736sdtnk6osbv4idvaj7rh5ojgrjomo2z/providers/Microsoft.Storage/storageAccounts/version2unrg7v6iwv7y5m5l","name":"version2unrg7v6iwv7y5m5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:39:50.0281735Z","primaryEndpoints":{"blob":"https://version2unrg7v6iwv7y5m5l.blob.core.windows.net/","queue":"https://version2unrg7v6iwv7y5m5l.queue.core.windows.net/","table":"https://version2unrg7v6iwv7y5m5l.table.core.windows.net/","file":"https://version2unrg7v6iwv7y5m5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3tibadds5lu5w2l7eglv3fx6fle6tcdlmpnjyebby5bb5xfopqkxdqumpgyd2feunb2d/providers/Microsoft.Storage/storageAccounts/version4dicc6l6ho3regfk6","name":"version4dicc6l6ho3regfk6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:00:21.6584988Z","primaryEndpoints":{"blob":"https://version4dicc6l6ho3regfk6.blob.core.windows.net/","queue":"https://version4dicc6l6ho3regfk6.queue.core.windows.net/","table":"https://version4dicc6l6ho3regfk6.table.core.windows.net/","file":"https://version4dicc6l6ho3regfk6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestousee7s5ti3bvgsldu3tad76cdv45lzvkwlnece46ufo4hjl22dj6kmqdpkbeba6i7wa/providers/Microsoft.Storage/storageAccounts/version5s35huoclfr4t2omd","name":"version5s35huoclfr4t2omd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.6036637Z","primaryEndpoints":{"blob":"https://version5s35huoclfr4t2omd.blob.core.windows.net/","queue":"https://version5s35huoclfr4t2omd.queue.core.windows.net/","table":"https://version5s35huoclfr4t2omd.table.core.windows.net/","file":"https://version5s35huoclfr4t2omd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdr6bri6cqc4uqm7ggpwj34csapsvbmlicxdcovjzsxlkc5ph2xyxnjlxzboseuegw5q2/providers/Microsoft.Storage/storageAccounts/versionagcwr45mfhwqkazte","name":"versionagcwr45mfhwqkazte","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:06:05.7750830Z","primaryEndpoints":{"blob":"https://versionagcwr45mfhwqkazte.blob.core.windows.net/","queue":"https://versionagcwr45mfhwqkazte.queue.core.windows.net/","table":"https://versionagcwr45mfhwqkazte.table.core.windows.net/","file":"https://versionagcwr45mfhwqkazte.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrbeoeyuczwyiitagnjquifkcu7l7pbiofoqpq5dvnyw6t2g23cidvmrfpsiitzgvvltc/providers/Microsoft.Storage/storageAccounts/versionbxfkluj64kluccc4m","name":"versionbxfkluj64kluccc4m","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:38:23.6299381Z","primaryEndpoints":{"blob":"https://versionbxfkluj64kluccc4m.blob.core.windows.net/","queue":"https://versionbxfkluj64kluccc4m.queue.core.windows.net/","table":"https://versionbxfkluj64kluccc4m.table.core.windows.net/","file":"https://versionbxfkluj64kluccc4m.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5feodovurwzsilp6pwlmafeektwxlwijkstn52zi6kxelzeryrhtj3dykralburkfbe2/providers/Microsoft.Storage/storageAccounts/versionc4lto7lppswuwqswn","name":"versionc4lto7lppswuwqswn","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:02.5920986Z","primaryEndpoints":{"blob":"https://versionc4lto7lppswuwqswn.blob.core.windows.net/","queue":"https://versionc4lto7lppswuwqswn.queue.core.windows.net/","table":"https://versionc4lto7lppswuwqswn.table.core.windows.net/","file":"https://versionc4lto7lppswuwqswn.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2zdiilm3ugwy2dlv37bhlyvyf6wpljit7d6o3zepyw6fkroztx53ouqjyhwp4dkp4jzv/providers/Microsoft.Storage/storageAccounts/versioncal7ire65zyi6zhnx","name":"versioncal7ire65zyi6zhnx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:20:37.3728352Z","primaryEndpoints":{"blob":"https://versioncal7ire65zyi6zhnx.blob.core.windows.net/","queue":"https://versioncal7ire65zyi6zhnx.queue.core.windows.net/","table":"https://versioncal7ire65zyi6zhnx.table.core.windows.net/","file":"https://versioncal7ire65zyi6zhnx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest24txadv4waeoqfrbzw4q3e333id45y7nnpuv5vvovws7fhrkesqbuul5chzpu6flgvfk/providers/Microsoft.Storage/storageAccounts/versionclxgou4idgatxjr77","name":"versionclxgou4idgatxjr77","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:37.6627583Z","primaryEndpoints":{"blob":"https://versionclxgou4idgatxjr77.blob.core.windows.net/","queue":"https://versionclxgou4idgatxjr77.queue.core.windows.net/","table":"https://versionclxgou4idgatxjr77.table.core.windows.net/","file":"https://versionclxgou4idgatxjr77.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdrnnmqa4sgcpa7frydav5ijhdtawsxmmdwnh5rj7r5xhveix5ns7wms6wesgxwc5pu3o/providers/Microsoft.Storage/storageAccounts/versioncq5cycygofi7d6pri","name":"versioncq5cycygofi7d6pri","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:43.3650110Z","primaryEndpoints":{"blob":"https://versioncq5cycygofi7d6pri.blob.core.windows.net/","queue":"https://versioncq5cycygofi7d6pri.queue.core.windows.net/","table":"https://versioncq5cycygofi7d6pri.table.core.windows.net/","file":"https://versioncq5cycygofi7d6pri.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsk4lc6dssbjjgkmxuk6phvsahow4dkmxkix2enlwuhhplj3lgqof5kr6leepjdyea3pl/providers/Microsoft.Storage/storageAccounts/versioncuioqcwvj2iwjmldg","name":"versioncuioqcwvj2iwjmldg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:54:58.9114548Z","primaryEndpoints":{"blob":"https://versioncuioqcwvj2iwjmldg.blob.core.windows.net/","queue":"https://versioncuioqcwvj2iwjmldg.queue.core.windows.net/","table":"https://versioncuioqcwvj2iwjmldg.table.core.windows.net/","file":"https://versioncuioqcwvj2iwjmldg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsgar4qjt34qhsuj6hez7kimz6mfle7eczvq5bfsh7xpilagusjstjetu65f2u6vh5qeb/providers/Microsoft.Storage/storageAccounts/versiond3oz7jhpapoxnxxci","name":"versiond3oz7jhpapoxnxxci","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:21.4301251Z","primaryEndpoints":{"blob":"https://versiond3oz7jhpapoxnxxci.blob.core.windows.net/","queue":"https://versiond3oz7jhpapoxnxxci.queue.core.windows.net/","table":"https://versiond3oz7jhpapoxnxxci.table.core.windows.net/","file":"https://versiond3oz7jhpapoxnxxci.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth6t5wqiulzt7vmszohprfrvkph7c226cgihbujtdvljcbvc4d4zwjbhwjscbts34c7up/providers/Microsoft.Storage/storageAccounts/versiondj27wf2pbuqyzilmd","name":"versiondj27wf2pbuqyzilmd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T13:45:18.8834129Z","primaryEndpoints":{"blob":"https://versiondj27wf2pbuqyzilmd.blob.core.windows.net/","queue":"https://versiondj27wf2pbuqyzilmd.queue.core.windows.net/","table":"https://versiondj27wf2pbuqyzilmd.table.core.windows.net/","file":"https://versiondj27wf2pbuqyzilmd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfyxdmvu32prroldn2p24a3iyr2phi7o22i26szwv2kuwh6zaj4rdet7ms5gdjnam2egt/providers/Microsoft.Storage/storageAccounts/versiondjhixg3cqipgjsmx4","name":"versiondjhixg3cqipgjsmx4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:23.9213706Z","primaryEndpoints":{"blob":"https://versiondjhixg3cqipgjsmx4.blob.core.windows.net/","queue":"https://versiondjhixg3cqipgjsmx4.queue.core.windows.net/","table":"https://versiondjhixg3cqipgjsmx4.table.core.windows.net/","file":"https://versiondjhixg3cqipgjsmx4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestchwod5nqxyebiyl6j4s2afrqmitcdhgmxhxszsf4wv6qwws7hvhvget5u2i2cua63cxc/providers/Microsoft.Storage/storageAccounts/versiondo3arjclzct3ahufa","name":"versiondo3arjclzct3ahufa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:34:36.8510092Z","primaryEndpoints":{"blob":"https://versiondo3arjclzct3ahufa.blob.core.windows.net/","queue":"https://versiondo3arjclzct3ahufa.queue.core.windows.net/","table":"https://versiondo3arjclzct3ahufa.table.core.windows.net/","file":"https://versiondo3arjclzct3ahufa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwmea2y23rvqprapww6ikfm6jk7abomcuhzngx3bltkme33xh2xkdgmn4n2fwcljqw3wv/providers/Microsoft.Storage/storageAccounts/versiondufx3et3bnjtg4xch","name":"versiondufx3et3bnjtg4xch","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T09:15:36.7127958Z","primaryEndpoints":{"blob":"https://versiondufx3et3bnjtg4xch.blob.core.windows.net/","queue":"https://versiondufx3et3bnjtg4xch.queue.core.windows.net/","table":"https://versiondufx3et3bnjtg4xch.table.core.windows.net/","file":"https://versiondufx3et3bnjtg4xch.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestakpkuxez73vyn36t4gn7rzxofnqwgm72bcmj4cdcadyalqklc2kyfx3qcfe3x2botivf/providers/Microsoft.Storage/storageAccounts/versionehqwmpnsaeybdcd4s","name":"versionehqwmpnsaeybdcd4s","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:59:30.2768393Z","primaryEndpoints":{"blob":"https://versionehqwmpnsaeybdcd4s.blob.core.windows.net/","queue":"https://versionehqwmpnsaeybdcd4s.queue.core.windows.net/","table":"https://versionehqwmpnsaeybdcd4s.table.core.windows.net/","file":"https://versionehqwmpnsaeybdcd4s.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesterdlb62puqdedjbhf3za3vxsu7igmsj447yliowotbxtokfcxj6geys4tgngzk5iuppn/providers/Microsoft.Storage/storageAccounts/versionen7upolksoryxwxnb","name":"versionen7upolksoryxwxnb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:42:25.7069810Z","primaryEndpoints":{"blob":"https://versionen7upolksoryxwxnb.blob.core.windows.net/","queue":"https://versionen7upolksoryxwxnb.queue.core.windows.net/","table":"https://versionen7upolksoryxwxnb.table.core.windows.net/","file":"https://versionen7upolksoryxwxnb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestylszwk3tqxigxfm3ongkbbgoelhfjiyrqqybpleivk3e7qa7gylocnj7rkod4jivp33h/providers/Microsoft.Storage/storageAccounts/versionha6yygjfdivfeud5k","name":"versionha6yygjfdivfeud5k","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:02:51.0535636Z","primaryEndpoints":{"blob":"https://versionha6yygjfdivfeud5k.blob.core.windows.net/","queue":"https://versionha6yygjfdivfeud5k.queue.core.windows.net/","table":"https://versionha6yygjfdivfeud5k.table.core.windows.net/","file":"https://versionha6yygjfdivfeud5k.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2d5fjdmfhy7kkhkwbqo7gngf6a2wlnvvaku7gxkwitz7vnnppvgothckppdsxhv3nem2/providers/Microsoft.Storage/storageAccounts/versionhh4uq45sysgx6awnt","name":"versionhh4uq45sysgx6awnt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:26:38.3576837Z","primaryEndpoints":{"blob":"https://versionhh4uq45sysgx6awnt.blob.core.windows.net/","queue":"https://versionhh4uq45sysgx6awnt.queue.core.windows.net/","table":"https://versionhh4uq45sysgx6awnt.table.core.windows.net/","file":"https://versionhh4uq45sysgx6awnt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliteste6lnfkdei2mzinyplhajo2t5ly327gwrwmuf5mrj74avle2b2kf4ulu4u3zlxxwts4ab/providers/Microsoft.Storage/storageAccounts/versionib6wdvsaxftddhtmh","name":"versionib6wdvsaxftddhtmh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:01.1041285Z","primaryEndpoints":{"blob":"https://versionib6wdvsaxftddhtmh.blob.core.windows.net/","queue":"https://versionib6wdvsaxftddhtmh.queue.core.windows.net/","table":"https://versionib6wdvsaxftddhtmh.table.core.windows.net/","file":"https://versionib6wdvsaxftddhtmh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti5twtev4nt7cel7ygxhupx6tvfowykbyxvq7aqclx76mlvsomt6fradfz3xbl2qkuo77/providers/Microsoft.Storage/storageAccounts/versionijonp732sqkyptdxv","name":"versionijonp732sqkyptdxv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:06.5115315Z","primaryEndpoints":{"blob":"https://versionijonp732sqkyptdxv.blob.core.windows.net/","queue":"https://versionijonp732sqkyptdxv.queue.core.windows.net/","table":"https://versionijonp732sqkyptdxv.table.core.windows.net/","file":"https://versionijonp732sqkyptdxv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest74lh5dcwdivjzpbyoqvafkpvnfg3tregvqtf456g3udapzlfl4jyqlh3sde26d2jh3x6/providers/Microsoft.Storage/storageAccounts/versioniuezathg3v5v754k7","name":"versioniuezathg3v5v754k7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-18T05:42:37.8743443Z","primaryEndpoints":{"blob":"https://versioniuezathg3v5v754k7.blob.core.windows.net/","queue":"https://versioniuezathg3v5v754k7.queue.core.windows.net/","table":"https://versioniuezathg3v5v754k7.table.core.windows.net/","file":"https://versioniuezathg3v5v754k7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcdvjnuor7heyx55wxz6h4jdaxblpvnyfdk47a7ameycswklee6pxoev7idm4m644qisg/providers/Microsoft.Storage/storageAccounts/versionizwzijfbdy5w6mvbu","name":"versionizwzijfbdy5w6mvbu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:18:06.2828372Z","primaryEndpoints":{"blob":"https://versionizwzijfbdy5w6mvbu.blob.core.windows.net/","queue":"https://versionizwzijfbdy5w6mvbu.queue.core.windows.net/","table":"https://versionizwzijfbdy5w6mvbu.table.core.windows.net/","file":"https://versionizwzijfbdy5w6mvbu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfjg3rxzubogi6qrblsgw3mmesxhn3pxjg27a5ktf7gnrxrnhwlrylljjshcwyyghqxbu/providers/Microsoft.Storage/storageAccounts/versionko6ksgiyhw5bzflr7","name":"versionko6ksgiyhw5bzflr7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T09:44:43.2547236Z","primaryEndpoints":{"blob":"https://versionko6ksgiyhw5bzflr7.blob.core.windows.net/","queue":"https://versionko6ksgiyhw5bzflr7.queue.core.windows.net/","table":"https://versionko6ksgiyhw5bzflr7.table.core.windows.net/","file":"https://versionko6ksgiyhw5bzflr7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkzfdhprmzadvpjklrd7656pshnk33mbj6omwyff2jzqjatbmhegyprcfs7wbi4ypmvef/providers/Microsoft.Storage/storageAccounts/versionm5vzvntn2srqhkssx","name":"versionm5vzvntn2srqhkssx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:15:38.7025605Z","primaryEndpoints":{"blob":"https://versionm5vzvntn2srqhkssx.blob.core.windows.net/","queue":"https://versionm5vzvntn2srqhkssx.queue.core.windows.net/","table":"https://versionm5vzvntn2srqhkssx.table.core.windows.net/","file":"https://versionm5vzvntn2srqhkssx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4ynxfhry5dpkuo3xwssvdbe3iwcxt5ewlnx3lz332nsyd3piqlooviiegb2uplmxnctu/providers/Microsoft.Storage/storageAccounts/versionnaeshhylx7ri7rvhk","name":"versionnaeshhylx7ri7rvhk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:17:46.0698030Z","primaryEndpoints":{"blob":"https://versionnaeshhylx7ri7rvhk.blob.core.windows.net/","queue":"https://versionnaeshhylx7ri7rvhk.queue.core.windows.net/","table":"https://versionnaeshhylx7ri7rvhk.table.core.windows.net/","file":"https://versionnaeshhylx7ri7rvhk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqtov5khibmli5l5qnqxx7sqsiomitv4dy6e7v2p6g6baxo5k7gybvzol2mludvvlt3hk/providers/Microsoft.Storage/storageAccounts/versionncglaxef3bncte6ug","name":"versionncglaxef3bncte6ug","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:01:00.4007471Z","primaryEndpoints":{"blob":"https://versionncglaxef3bncte6ug.blob.core.windows.net/","queue":"https://versionncglaxef3bncte6ug.queue.core.windows.net/","table":"https://versionncglaxef3bncte6ug.table.core.windows.net/","file":"https://versionncglaxef3bncte6ug.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvexlopurtffpw44qelwzhnrj4hrri453i57dssogm2nrq3tgb4gdctqnh22two36b4r4/providers/Microsoft.Storage/storageAccounts/versiono3puxbh7aoleprgrj","name":"versiono3puxbh7aoleprgrj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:54:30.3834786Z","primaryEndpoints":{"blob":"https://versiono3puxbh7aoleprgrj.blob.core.windows.net/","queue":"https://versiono3puxbh7aoleprgrj.queue.core.windows.net/","table":"https://versiono3puxbh7aoleprgrj.table.core.windows.net/","file":"https://versiono3puxbh7aoleprgrj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4hjjelhodbnxnyv3gpitmvqm2g57s4osl4jrt3fa5jtsrwbqbikwerf5tiwwmmekgcsp/providers/Microsoft.Storage/storageAccounts/versiono5slm5nxi3gl5ndil","name":"versiono5slm5nxi3gl5ndil","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:21.4686030Z","primaryEndpoints":{"blob":"https://versiono5slm5nxi3gl5ndil.blob.core.windows.net/","queue":"https://versiono5slm5nxi3gl5ndil.queue.core.windows.net/","table":"https://versiono5slm5nxi3gl5ndil.table.core.windows.net/","file":"https://versiono5slm5nxi3gl5ndil.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5qgbjmgp4dbfryqs33skw2pkptk2sdmoqsw6nqonzmeekbq3ovley42itnpj4yfej5yi/providers/Microsoft.Storage/storageAccounts/versionoojtzpigw27c2rlwi","name":"versionoojtzpigw27c2rlwi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:31:21.4483344Z","primaryEndpoints":{"blob":"https://versionoojtzpigw27c2rlwi.blob.core.windows.net/","queue":"https://versionoojtzpigw27c2rlwi.queue.core.windows.net/","table":"https://versionoojtzpigw27c2rlwi.table.core.windows.net/","file":"https://versionoojtzpigw27c2rlwi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestz4bcht3lymqfffkatndjcle4qf567sbk5b3hfcoqhkrfgghei6jeqgan2zr2i2j5fbtq/providers/Microsoft.Storage/storageAccounts/versions3jowsvxiiqegyrbr","name":"versions3jowsvxiiqegyrbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:12:49.9157469Z","primaryEndpoints":{"blob":"https://versions3jowsvxiiqegyrbr.blob.core.windows.net/","queue":"https://versions3jowsvxiiqegyrbr.queue.core.windows.net/","table":"https://versions3jowsvxiiqegyrbr.table.core.windows.net/","file":"https://versions3jowsvxiiqegyrbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestd5q64bqhg7etouaunbpihutfyklxtsq6th5x27ddcpkn5ddwaj7yeth7w6vabib2jk36/providers/Microsoft.Storage/storageAccounts/versionsl4dpowre7blcmtnv","name":"versionsl4dpowre7blcmtnv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:52:33.0430992Z","primaryEndpoints":{"blob":"https://versionsl4dpowre7blcmtnv.blob.core.windows.net/","queue":"https://versionsl4dpowre7blcmtnv.queue.core.windows.net/","table":"https://versionsl4dpowre7blcmtnv.table.core.windows.net/","file":"https://versionsl4dpowre7blcmtnv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttfwerdemnnqhnkhq7pesq4g3fy2ms2qei6yjrfucueeqhy74fu5kdcxkbap7znlruizn/providers/Microsoft.Storage/storageAccounts/versionsnhg3s55m22flnaim","name":"versionsnhg3s55m22flnaim","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:47:35.1773825Z","primaryEndpoints":{"blob":"https://versionsnhg3s55m22flnaim.blob.core.windows.net/","queue":"https://versionsnhg3s55m22flnaim.queue.core.windows.net/","table":"https://versionsnhg3s55m22flnaim.table.core.windows.net/","file":"https://versionsnhg3s55m22flnaim.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6j4p5hu3qwk67zq467rtwcd2a7paxiwrgpvjuqvw3drzvoz3clyu22h7l3gmkbn2c4oa/providers/Microsoft.Storage/storageAccounts/versionu6gh46ckmtwb2izub","name":"versionu6gh46ckmtwb2izub","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:28:58.0654507Z","primaryEndpoints":{"blob":"https://versionu6gh46ckmtwb2izub.blob.core.windows.net/","queue":"https://versionu6gh46ckmtwb2izub.queue.core.windows.net/","table":"https://versionu6gh46ckmtwb2izub.table.core.windows.net/","file":"https://versionu6gh46ckmtwb2izub.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthjubmr2gcxl7wowm2yz4jtlqknroqoldmrrdz7ijr7kzs3intstr2ag5cuwovsdyfscc/providers/Microsoft.Storage/storageAccounts/versionvndhff7czdxs3e4zs","name":"versionvndhff7czdxs3e4zs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:53:55.2284931Z","primaryEndpoints":{"blob":"https://versionvndhff7czdxs3e4zs.blob.core.windows.net/","queue":"https://versionvndhff7czdxs3e4zs.queue.core.windows.net/","table":"https://versionvndhff7czdxs3e4zs.table.core.windows.net/","file":"https://versionvndhff7czdxs3e4zs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc37roadc7h7ibpejg25elnx5c7th3cjwkmdjmraqd7x4d6afafd67xtrdeammre4vvwz/providers/Microsoft.Storage/storageAccounts/versionvs7l3fj37x7r3omla","name":"versionvs7l3fj37x7r3omla","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:41.4928817Z","primaryEndpoints":{"blob":"https://versionvs7l3fj37x7r3omla.blob.core.windows.net/","queue":"https://versionvs7l3fj37x7r3omla.queue.core.windows.net/","table":"https://versionvs7l3fj37x7r3omla.table.core.windows.net/","file":"https://versionvs7l3fj37x7r3omla.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestu2dumyf3mk7jyirvjmsg3w5s3sa7ke6ujncoaf3eo7bowo2bmxpjufa3ww5q66p2u2gb/providers/Microsoft.Storage/storageAccounts/versionwlfh4xbessj73brlz","name":"versionwlfh4xbessj73brlz","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:16.4803444Z","primaryEndpoints":{"blob":"https://versionwlfh4xbessj73brlz.blob.core.windows.net/","queue":"https://versionwlfh4xbessj73brlz.queue.core.windows.net/","table":"https://versionwlfh4xbessj73brlz.table.core.windows.net/","file":"https://versionwlfh4xbessj73brlz.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsknognisu5ofc5kqx2s7pkyd44ypiqggvewtlb44ikbkje77zh4vo2y5c6alllygemol/providers/Microsoft.Storage/storageAccounts/versionwrfq6nydu5kpiyses","name":"versionwrfq6nydu5kpiyses","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:13.1837898Z","primaryEndpoints":{"blob":"https://versionwrfq6nydu5kpiyses.blob.core.windows.net/","queue":"https://versionwrfq6nydu5kpiyses.queue.core.windows.net/","table":"https://versionwrfq6nydu5kpiyses.table.core.windows.net/","file":"https://versionwrfq6nydu5kpiyses.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyuxvuaieuwauapmgpekzsx2djnxw7imdd44j7ye2q2bsscuowdlungp4mvqma3k4zdi3/providers/Microsoft.Storage/storageAccounts/versionzlxq5fbnucauv5vo7","name":"versionzlxq5fbnucauv5vo7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-25T03:40:01.1169169Z","primaryEndpoints":{"blob":"https://versionzlxq5fbnucauv5vo7.blob.core.windows.net/","queue":"https://versionzlxq5fbnucauv5vo7.queue.core.windows.net/","table":"https://versionzlxq5fbnucauv5vo7.table.core.windows.net/","file":"https://versionzlxq5fbnucauv5vo7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestglnitz57vqvc6itqwridomid64tyuijykukioisnaiyykplrweeehtxiwezec62slafz/providers/Microsoft.Storage/storageAccounts/versionztiuttcba4r3zu4ux","name":"versionztiuttcba4r3zu4ux","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:39:18.9781248Z","primaryEndpoints":{"blob":"https://versionztiuttcba4r3zu4ux.blob.core.windows.net/","queue":"https://versionztiuttcba4r3zu4ux.queue.core.windows.net/","table":"https://versionztiuttcba4r3zu4ux.table.core.windows.net/","file":"https://versionztiuttcba4r3zu4ux.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutoTagFunctionAppRG/providers/Microsoft.Storage/storageAccounts/autotagfunctionappr9a08","name":"autotagfunctionappr9a08","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-05T09:25:55.2339685Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-09-05T09:25:55.0465004Z","primaryEndpoints":{"blob":"https://autotagfunctionappr9a08.blob.core.windows.net/","queue":"https://autotagfunctionappr9a08.queue.core.windows.net/","table":"https://autotagfunctionappr9a08.table.core.windows.net/","file":"https://autotagfunctionappr9a08.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD/providers/Microsoft.Storage/storageAccounts/clicmdmeta","name":"clicmdmeta","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-29T08:18:02.5833710Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-29T08:18:02.3489928Z","primaryEndpoints":{"blob":"https://clicmdmeta.blob.core.windows.net/","queue":"https://clicmdmeta.queue.core.windows.net/","table":"https://clicmdmeta.table.core.windows.net/","file":"https://clicmdmeta.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clicmdmeta-secondary.blob.core.windows.net/","queue":"https://clicmdmeta-secondary.queue.core.windows.net/","table":"https://clicmdmeta-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-live-test/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-27T02:49:14.3221918Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-27T02:49:14.1346872Z","primaryEndpoints":{"blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"version":"1.240.16"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageentity/providers/Microsoft.Storage/storageAccounts/satestentity","name":"satestentity","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-21T05:16:48.4326955Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-21T05:16:48.2608242Z","primaryEndpoints":{"blob":"https://satestentity.blob.core.windows.net/","queue":"https://satestentity.queue.core.windows.net/","table":"https://satestentity.table.core.windows.net/","file":"https://satestentity.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestentity-secondary.blob.core.windows.net/","queue":"https://satestentity-secondary.queue.core.windows.net/","table":"https://satestentity-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestvmcopydisk2/providers/Microsoft.Storage/storageAccounts/satestvmcopydisk","name":"satestvmcopydisk","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-18T11:43:32.0641208Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-18T11:43:31.8922192Z","primaryEndpoints":{"blob":"https://satestvmcopydisk.blob.core.windows.net/","queue":"https://satestvmcopydisk.queue.core.windows.net/","table":"https://satestvmcopydisk.table.core.windows.net/","file":"https://satestvmcopydisk.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestvmcopydisk-secondary.blob.core.windows.net/","queue":"https://satestvmcopydisk-secondary.queue.core.windows.net/","table":"https://satestvmcopydisk-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shiying-rg/providers/Microsoft.Storage/storageAccounts/shiyingsa","name":"shiyingsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-31T02:04:31.3662209Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-31T02:04:31.1786494Z","primaryEndpoints":{"blob":"https://shiyingsa.blob.core.windows.net/","queue":"https://shiyingsa.queue.core.windows.net/","table":"https://shiyingsa.table.core.windows.net/","file":"https://shiyingsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shiyingsa-secondary.blob.core.windows.net/","queue":"https://shiyingsa-secondary.queue.core.windows.net/","table":"https://shiyingsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD/providers/Microsoft.Storage/storageAccounts/versionmeta","name":"versionmeta","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-22T07:02:19.8526288Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-22T07:02:19.6651543Z","primaryEndpoints":{"blob":"https://versionmeta.blob.core.windows.net/","queue":"https://versionmeta.queue.core.windows.net/","table":"https://versionmeta.table.core.windows.net/","file":"https://versionmeta.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://versionmeta-secondary.blob.core.windows.net/","queue":"https://versionmeta-secondary.queue.core.windows.net/","table":"https://versionmeta-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/zhuyan","name":"zhuyan","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-29T07:49:14.7086254Z","primaryEndpoints":{"blob":"https://zhuyan.blob.core.windows.net/","queue":"https://zhuyan.queue.core.windows.net/","table":"https://zhuyan.table.core.windows.net/","file":"https://zhuyan.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhuyan-secondary.blob.core.windows.net/","queue":"https://zhuyan-secondary.queue.core.windows.net/","table":"https://zhuyan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestazcopy/providers/Microsoft.Storage/storageAccounts/satestazcopyfixversion","name":"satestazcopyfixversion","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T01:43:14.3065609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-10-17T01:43:14.1346778Z","primaryEndpoints":{"blob":"https://satestazcopyfixversion.blob.core.windows.net/","queue":"https://satestazcopyfixversion.queue.core.windows.net/","table":"https://satestazcopyfixversion.table.core.windows.net/","file":"https://satestazcopyfixversion.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestazcopyfixversion-secondary.blob.core.windows.net/","queue":"https://satestazcopyfixversion-secondary.queue.core.windows.net/","table":"https://satestazcopyfixversion-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestsasencode/providers/Microsoft.Storage/storageAccounts/satestsasencode","name":"satestsasencode","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-21T03:10:30.1371661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-09-21T03:10:29.9496519Z","primaryEndpoints":{"blob":"https://satestsasencode.blob.core.windows.net/","queue":"https://satestsasencode.queue.core.windows.net/","table":"https://satestsasencode.table.core.windows.net/","file":"https://satestsasencode.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestsasencode-secondary.blob.core.windows.net/","queue":"https://satestsasencode-secondary.queue.core.windows.net/","table":"https://satestsasencode-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/sauserassignedidentity2","name":"sauserassignedidentity2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-06-06T08:49:14.8688109Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-06-06T08:49:14.7282063Z","primaryEndpoints":{"blob":"https://sauserassignedidentity2.blob.core.windows.net/","queue":"https://sauserassignedidentity2.queue.core.windows.net/","table":"https://sauserassignedidentity2.table.core.windows.net/","file":"https://sauserassignedidentity2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/similar8010979611","name":"similar8010979611","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-14T07:27:28.5673994Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-14T07:27:28.1299252Z","primaryEndpoints":{"blob":"https://similar8010979611.blob.core.windows.net/","queue":"https://similar8010979611.queue.core.windows.net/","table":"https://similar8010979611.table.core.windows.net/","file":"https://similar8010979611.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:06.6777576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:05.6464633Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00","name":"vhdstorage43430ef5f5ee00","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:50.1626883Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:49.9283666Z","primaryEndpoints":{"blob":"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092c7f510","name":"cs11003200092c7f510","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-23T01:08:37.4517613Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-23T01:08:37.3111734Z","primaryEndpoints":{"blob":"https://cs11003200092c7f510.blob.core.windows.net/","queue":"https://cs11003200092c7f510.queue.core.windows.net/","table":"https://cs11003200092c7f510.table.core.windows.net/","file":"https://cs11003200092c7f510.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000d5b642af","name":"cs110032000d5b642af","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T04:59:52.0820281Z","primaryEndpoints":{"blob":"https://cs110032000d5b642af.blob.core.windows.net/","queue":"https://cs110032000d5b642af.queue.core.windows.net/","table":"https://cs110032000d5b642af.table.core.windows.net/","file":"https://cs110032000d5b642af.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c03a0927","name":"cs110032001c03a0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-09T03:33:21.4711071Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-09T03:33:20.4399045Z","primaryEndpoints":{"blob":"https://cs110032001c03a0927.blob.core.windows.net/","queue":"https://cs110032001c03a0927.queue.core.windows.net/","table":"https://cs110032001c03a0927.table.core.windows.net/","file":"https://cs110032001c03a0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d9298600","name":"cs110032001d9298600","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-17T07:01:02.4191975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-17T07:01:01.2316914Z","primaryEndpoints":{"blob":"https://cs110032001d9298600.blob.core.windows.net/","queue":"https://cs110032001d9298600.queue.core.windows.net/","table":"https://cs110032001d9298600.table.core.windows.net/","file":"https://cs110032001d9298600.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001eb0eb551","name":"cs110032001eb0eb551","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-12T06:11:11.7405204Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-12T06:11:10.4592363Z","primaryEndpoints":{"blob":"https://cs110032001eb0eb551.blob.core.windows.net/","queue":"https://cs110032001eb0eb551.queue.core.windows.net/","table":"https://cs110032001eb0eb551.table.core.windows.net/","file":"https://cs110032001eb0eb551.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001fc5cae23","name":"cs110032001fc5cae23","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-29T12:20:49.5928874Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-29T12:20:49.4835194Z","primaryEndpoints":{"blob":"https://cs110032001fc5cae23.blob.core.windows.net/","queue":"https://cs110032001fc5cae23.queue.core.windows.net/","table":"https://cs110032001fc5cae23.table.core.windows.net/","file":"https://cs110032001fc5cae23.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320020231acc7","name":"cs1100320020231acc7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-02T05:46:36.5596404Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-02T05:46:36.4658704Z","primaryEndpoints":{"blob":"https://cs1100320020231acc7.blob.core.windows.net/","queue":"https://cs1100320020231acc7.queue.core.windows.net/","table":"https://cs1100320020231acc7.table.core.windows.net/","file":"https://cs1100320020231acc7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320021bf852a7","name":"cs1100320021bf852a7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-11T03:14:46.7901340Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-11T03:14:46.6807523Z","primaryEndpoints":{"blob":"https://cs1100320021bf852a7.blob.core.windows.net/","queue":"https://cs1100320021bf852a7.queue.core.windows.net/","table":"https://cs1100320021bf852a7.table.core.windows.net/","file":"https://cs1100320021bf852a7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320023613967b","name":"cs1100320023613967b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-10T02:03:46.3159450Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-10T02:03:45.5971844Z","primaryEndpoints":{"blob":"https://cs1100320023613967b.blob.core.windows.net/","queue":"https://cs1100320023613967b.queue.core.windows.net/","table":"https://cs1100320023613967b.table.core.windows.net/","file":"https://cs1100320023613967b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320025316bd42","name":"cs1100320025316bd42","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-20T08:07:13.6290377Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-20T08:07:13.4884106Z","primaryEndpoints":{"blob":"https://cs1100320025316bd42.blob.core.windows.net/","queue":"https://cs1100320025316bd42.queue.core.windows.net/","table":"https://cs1100320025316bd42.table.core.windows.net/","file":"https://cs1100320025316bd42.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032002659dd63b","name":"cs110032002659dd63b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-01-12T09:06:12.0956006Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-01-12T09:06:11.9549543Z","primaryEndpoints":{"blob":"https://cs110032002659dd63b.blob.core.windows.net/","queue":"https://cs110032002659dd63b.queue.core.windows.net/","table":"https://cs110032002659dd63b.table.core.windows.net/","file":"https://cs110032002659dd63b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320026f5d426c","name":"cs1100320026f5d426c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-02-04T07:50:15.8556226Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-02-04T07:50:15.6995628Z","primaryEndpoints":{"blob":"https://cs1100320026f5d426c.blob.core.windows.net/","queue":"https://cs1100320026f5d426c.queue.core.windows.net/","table":"https://cs1100320026f5d426c.table.core.windows.net/","file":"https://cs1100320026f5d426c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200276a5db68","name":"cs11003200276a5db68","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-02-17T03:55:44.6212229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-02-17T03:55:44.4805786Z","primaryEndpoints":{"blob":"https://cs11003200276a5db68.blob.core.windows.net/","queue":"https://cs11003200276a5db68.queue.core.windows.net/","table":"https://cs11003200276a5db68.table.core.windows.net/","file":"https://cs11003200276a5db68.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320029b4982f7","name":"cs1100320029b4982f7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-22T08:21:49.5919951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-22T08:21:49.4669976Z","primaryEndpoints":{"blob":"https://cs1100320029b4982f7.blob.core.windows.net/","queue":"https://cs1100320029b4982f7.queue.core.windows.net/","table":"https://cs1100320029b4982f7.table.core.windows.net/","file":"https://cs1100320029b4982f7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032002bffa30b5","name":"cs110032002bffa30b5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-04T09:27:45.5068146Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-09-04T09:27:45.3817744Z","primaryEndpoints":{"blob":"https://cs110032002bffa30b5.blob.core.windows.net/","queue":"https://cs110032002bffa30b5.queue.core.windows.net/","table":"https://cs110032002bffa30b5.table.core.windows.net/","file":"https://cs110032002bffa30b5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646/providers/Microsoft.Storage/storageAccounts/dbstorageiuxa4gtv5zxki","name":"dbstorageiuxa4gtv5zxki","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-11T10:52:46.5192203Z","primaryEndpoints":{"blob":"https://dbstorageiuxa4gtv5zxki.blob.core.windows.net/","table":"https://dbstorageiuxa4gtv5zxki.table.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangtest","name":"hangtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-09-08T08:40:46.7905248Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-08T08:40:46.1498764Z","primaryEndpoints":{"blob":"https://hangtest.blob.microsoftrrdclab1.edgestorage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeuapeast","name":"saeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-08T07:14:48.9997460Z","primaryEndpoints":{"blob":"https://saeuapeast.blob.core.windows.net/","queue":"https://saeuapeast.queue.core.windows.net/","table":"https://saeuapeast.table.core.windows.net/","file":"https://saeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://saeuapeast-secondary.blob.core.windows.net/","queue":"https://saeuapeast-secondary.queue.core.windows.net/","table":"https://saeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_ZRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsapremiumpage","name":"zhiyihuangsapremiumpage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-20T06:32:05.6245467Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-20T06:32:05.1557874Z","primaryEndpoints":{"blob":"https://zhiyihuangsapremiumpage.blob.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '291076' + - '92832' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:07 GMT + - Tue, 17 Oct 2023 02:51:25 GMT expires: - '-1' pragma: @@ -987,22 +917,23 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 43140047-2d30-4375-8352-016c656a15ad - - 2b4e056e-6a89-43e1-88b9-36c200c960ca - - 7acc4e54-7e28-472b-bc5b-efa8408318d8 - - 0ce2a46a-0296-48c2-8e94-7bc080a6af75 - - 35908b6f-ce45-4143-8eac-d570b3634fae - - 24dae14d-744b-4f27-8627-a7969e7d998e - - fd8aba49-9cdb-4f2e-ac3b-88a22bcd2cd7 - - 96783eab-f9a8-43c1-94bf-3459be6b2deb - - 6d2030ff-75c8-47de-a8b1-94edd514ecd1 + - 2d0d9d48-89ff-4a1f-bb06-93c63cf3d1e1 + - 39f22488-82c3-4d39-8563-50c0c5fda9af + - 25bf8e12-17a1-494d-b8e8-32e20d6d9ffc + - 1ea2f0b0-5e88-4f32-a83e-54a9efd5c1d4 + - d16294f2-e5f1-41ea-b5af-a5105c7384af + - 32127bc7-1c9b-4eb9-98be-2b40e2170c31 + - 80df429e-a720-4809-beba-10f50d2d23c7 + - 40f806bc-35cb-4c73-a122-df13acad7d53 + - bf861375-44e1-4097-b3ea-a4ff216a8ffc + - fbc93b66-fa0e-4337-8f2f-3eae0bf4cb36 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "osdisk_870bed8348", "vhd": {"uri": "https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd"}, + "osdisk_43430ef5f5", "vhd": {"uri": "https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd"}, "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30}, "dataDisks": []}, "osProfile": {"computerName": "myvm", "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": false}, "secrets": []}, "networkProfile": @@ -1024,21 +955,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1047,12 +978,12 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/13c6f905-1409-4a27-99e3-51d6e01d133d?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f3ec95bb-dcb3-40e2-a33e-34b9c59782fd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 cache-control: - no-cache content-length: @@ -1060,7 +991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:10 GMT + - Tue, 17 Oct 2023 02:51:30 GMT expires: - '-1' pragma: @@ -1077,9 +1008,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1150 + - Microsoft.Compute/PutVMSubscriptionMaximum;1499,Microsoft.Compute/PutVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 200 message: OK @@ -1097,23 +1028,73 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/13c6f905-1409-4a27-99e3-51d6e01d133d?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f3ec95bb-dcb3-40e2-a33e-34b9c59782fd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:47:09.6462157+00:00\",\r\n \"endTime\": - \"2022-06-23T14:47:16.2712227+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"13c6f905-1409-4a27-99e3-51d6e01d133d\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:51:27.466541+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f3ec95bb-dcb3-40e2-a33e-34b9c59782fd\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:51:31 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm boot-diagnostics enable + Connection: + - keep-alive + ParameterSetName: + - -g -n --storage + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f3ec95bb-dcb3-40e2-a33e-34b9c59782fd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:51:27.466541+00:00\",\r\n \"endTime\": + \"2023-10-17T02:51:34.4822609+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f3ec95bb-dcb3-40e2-a33e-34b9c59782fd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:40 GMT + - Tue, 17 Oct 2023 02:52:01 GMT expires: - '-1' pragma: @@ -1130,7 +1111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29751 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 status: code: 200 message: OK @@ -1148,21 +1129,21 @@ interactions: ParameterSetName: - -g -n --storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1171,7 +1152,7 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -1180,7 +1161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:41 GMT + - Tue, 17 Oct 2023 02:52:02 GMT expires: - '-1' pragma: @@ -1197,7 +1178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3848,Microsoft.Compute/LowCostGet30Min;30872 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1215,21 +1196,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1238,7 +1219,7 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -1247,7 +1228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:43 GMT + - Tue, 17 Oct 2023 02:52:05 GMT expires: - '-1' pragma: @@ -1264,7 +1245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3847,Microsoft.Compute/LowCostGet30Min;30871 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34 status: code: 200 message: OK @@ -1282,21 +1263,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1305,22 +1286,21 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.6\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:47:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_870bed8348\",\r\n + \ }\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:51:36+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:47:09.8961967+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:51:27.7946706+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm-8bd43f02-d806-4e41-b8f7-244b588d2c9d/myvm.8bd43f02-d806-4e41-b8f7-244b588d2c9d.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm-8bd43f02-d806-4e41-b8f7-244b588d2c9d/myvm.8bd43f02-d806-4e41-b8f7-244b588d2c9d.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm-cd9346b1-7768-41cf-b7df-1fa5b9275a7a/myvm.cd9346b1-7768-41cf-b7df-1fa5b9275a7a.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm-cd9346b1-7768-41cf-b7df-1fa5b9275a7a/myvm.cd9346b1-7768-41cf-b7df-1fa5b9275a7a.serialconsole.log\"\r\n \ },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:47:16.2555965+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:51:34.3572607+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}" @@ -1332,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:44 GMT + - Tue, 17 Oct 2023 02:52:06 GMT expires: - '-1' pragma: @@ -1349,14 +1329,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3846,Microsoft.Compute/LowCostGet30Min;30870 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "osdisk_870bed8348", "vhd": {"uri": "https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd"}, + "osdisk_43430ef5f5", "vhd": {"uri": "https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd"}, "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30}, "dataDisks": []}, "osProfile": {"computerName": "myvm", "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": false}, "secrets": []}, "networkProfile": @@ -1378,21 +1358,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1401,12 +1381,12 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/04b1fc17-4f65-45fa-957e-c6096276b95b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cac7de6e-ca9c-466a-a4bd-71d3e5ae5573?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 cache-control: - no-cache content-length: @@ -1414,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:47:48 GMT + - Tue, 17 Oct 2023 02:52:11 GMT expires: - '-1' pragma: @@ -1431,9 +1411,59 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1147 + - Microsoft.Compute/PutVMSubscriptionMaximum;1498,Microsoft.Compute/PutVMResource;10 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm boot-diagnostics disable + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cac7de6e-ca9c-466a-a4bd-71d3e5ae5573?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:52:08.9515193+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"cac7de6e-ca9c-466a-a4bd-71d3e5ae5573\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:52: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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1451,14 +1481,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/04b1fc17-4f65-45fa-957e-c6096276b95b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cac7de6e-ca9c-466a-a4bd-71d3e5ae5573?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:47:46.0212893+00:00\",\r\n \"endTime\": - \"2022-06-23T14:47:49.8494004+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"04b1fc17-4f65-45fa-957e-c6096276b95b\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:52:08.9515193+00:00\",\r\n \"endTime\": + \"2023-10-17T02:52:15.1234805+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cac7de6e-ca9c-466a-a4bd-71d3e5ae5573\"\r\n}" headers: cache-control: - no-cache @@ -1467,7 +1497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:18 GMT + - Tue, 17 Oct 2023 02:52:42 GMT expires: - '-1' pragma: @@ -1484,7 +1514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29745 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14986 status: code: 200 message: OK @@ -1502,21 +1532,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1525,7 +1555,7 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -1534,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:18 GMT + - Tue, 17 Oct 2023 02:52:42 GMT expires: - '-1' pragma: @@ -1551,7 +1581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3846,Microsoft.Compute/LowCostGet30Min;30851 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK @@ -1569,21 +1599,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8bd43f02-d806-4e41-b8f7-244b588d2c9d\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_870bed8348\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": - \"https://vhdstorage870bed83482aff.blob.core.windows.net/vhds/osdisk_870bed8348.vhd\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"cd9346b1-7768-41cf-b7df-1fa5b9275a7a\",\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 },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"osdisk_43430ef5f5\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/vhds/osdisk_43430ef5f5.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \"adminUsername\": \"user11\",\r\n @@ -1592,7 +1622,7 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -1601,7 +1631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:20 GMT + - Tue, 17 Oct 2023 02:52:44 GMT expires: - '-1' pragma: @@ -1618,7 +1648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3844,Microsoft.Compute/LowCostGet30Min;30849 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;29 status: code: 200 message: OK @@ -1636,21 +1666,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001","name":"cli_test_vm_diagnostics000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:44:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001","name":"cli_test_vm_diagnostics000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_boot_diagnostics","date":"2023-10-17T02:48:56Z","module":"vm","Creator":"v-taoxuzeng@microsoft.com","DateCreated":"2023-10-17T02:50:47Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '292' + - '415' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:20 GMT + - Tue, 17 Oct 2023 02:52:45 GMT expires: - '-1' pragma: @@ -1674,7 +1704,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -1682,26 +1712,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -1724,7 +1755,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -1735,19 +1766,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 14:48:22 GMT + - Tue, 17 Oct 2023 02:52:46 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 14:53:22 GMT + - Tue, 17 Oct 2023 02:57:46 GMT source-age: - - '241' + - '224' strict-transport-security: - max-age=31536000 vary: @@ -1761,15 +1794,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 5a4e2b5843391e671b34d947fef8279a792bc43d + - 07da2800009e028ffde4d6e0a6b814cadc23e460 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1263-QPG + - cache-qpg1224-QPG x-timer: - - S1655995702.202180,VS0,VE1 + - S1697511166.470346,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -1789,23 +1822,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:23 GMT + - Tue, 17 Oct 2023 02:52:47 GMT expires: - '-1' pragma: @@ -1822,7 +1855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 status: code: 200 message: OK @@ -1840,30 +1873,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:24 GMT + - Tue, 17 Oct 2023 02:52:48 GMT expires: - '-1' pragma: @@ -1880,7 +1917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73994 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73991 status: code: 200 message: OK @@ -1888,7 +1925,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1898,24 +1935,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"myvmVNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET\",\r\n - \ \"etag\": \"W/\\\"0040f129-b3e1-421a-b3a0-323a40aefd68\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7af98589-5f4c-4a8e-9235-83a671492318\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"90a25007-393a-4305-b3fd-fcb8ed52ed45\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"41ccba71-d12b-4d06-a554-9cc0f28f82be\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"myvmSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/virtualNetworks/myvmVNET/subnets/myvmSubnet\",\r\n - \ \"etag\": \"W/\\\"0040f129-b3e1-421a-b3a0-323a40aefd68\\\"\",\r\n + \ \"etag\": \"W/\\\"7af98589-5f4c-4a8e-9235-83a671492318\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_DIAGNOSTICSLI263NFMA4XBTOXCZHN27WWODWWQB6JDTE6QHHYLFLPPZZASDSZ6/providers/Microsoft.Network/networkInterfaces/MYVMVMNIC/ipConfigurations/IPCONFIGMYVM\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1924,11 +1961,11 @@ interactions: cache-control: - no-cache content-length: - - '1581' + - '1627' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:25 GMT + - Tue, 17 Oct 2023 02:52:50 GMT expires: - '-1' pragma: @@ -1945,7 +1982,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a94a4a4d-26d2-4ebe-b905-54ff61508334 + - a4e6ac38-8fb1-4157-ab02-6124bfdeb0e3 status: code: 200 message: OK @@ -1963,21 +2000,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2016-01-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zb_test/providers/Microsoft.Storage/storageAccounts/azblab12646","name":"azblab12646","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"hidden-DevTestLabs-LabUId":"3610e867-afa2-4bf9-90b7-2d85919815b3"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-01T11:15:37.8054635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-01T11:15:37.6335769Z","primaryEndpoints":{"blob":"https://azblab12646.blob.core.windows.net/","queue":"https://azblab12646.queue.core.windows.net/","table":"https://azblab12646.table.core.windows.net/","file":"https://azblab12646.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zb_test/providers/Microsoft.Storage/storageAccounts/azblab188","name":"azblab188","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"hidden-DevTestLabs-LabUId":"301109ba-f89e-4ba1-8c0c-be6e91e47840"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-25T04:33:05.5087868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-25T04:33:05.3525020Z","primaryEndpoints":{"blob":"https://azblab188.blob.core.windows.net/","queue":"https://azblab188.queue.core.windows.net/","table":"https://azblab188.table.core.windows.net/","file":"https://azblab188.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/bezstorage0518","name":"bezstorage0518","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-18T02:30:49.9265492Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-18T02:30:49.7703017Z","primaryEndpoints":{"blob":"https://bezstorage0518.blob.core.windows.net/","queue":"https://bezstorage0518.queue.core.windows.net/","table":"https://bezstorage0518.table.core.windows.net/","file":"https://bezstorage0518.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://bezstorage0518-secondary.blob.core.windows.net/","queue":"https://bezstorage0518-secondary.queue.core.windows.net/","table":"https://bezstorage0518-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageaccountsynapse1","name":"storageaccountsynapse1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T06:18:46.4134367Z","primaryEndpoints":{"blob":"https://storageaccountsynapse1.blob.core.windows.net/","queue":"https://storageaccountsynapse1.queue.core.windows.net/","table":"https://storageaccountsynapse1.table.core.windows.net/","file":"https://storageaccountsynapse1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storageaccountsynapse1-secondary.blob.core.windows.net/","queue":"https://storageaccountsynapse1-secondary.queue.core.windows.net/","table":"https://storageaccountsynapse1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufan1","name":"yufan1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-10T08:41:43.1979384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-10T08:41:43.0729495Z","primaryEndpoints":{"blob":"https://yufan1.blob.core.windows.net/","queue":"https://yufan1.queue.core.windows.net/","table":"https://yufan1.table.core.windows.net/","file":"https://yufan1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yufan1-secondary.blob.core.windows.net/","queue":"https://yufan1-secondary.queue.core.windows.net/","table":"https://yufan1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufanaccount","name":"yufanaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-19T13:30:24.7505500Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-19T13:30:24.6099071Z","primaryEndpoints":{"blob":"https://yufanaccount.blob.core.windows.net/","queue":"https://yufanaccount.queue.core.windows.net/","table":"https://yufanaccount.table.core.windows.net/","file":"https://yufanaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yufanaccount-secondary.blob.core.windows.net/","queue":"https://yufanaccount-secondary.queue.core.windows.net/","table":"https://yufanaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yuzhi123","name":"yuzhi123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-21T07:39:07.9936963Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-21T07:39:07.8530689Z","primaryEndpoints":{"blob":"https://yuzhi123.blob.core.windows.net/","queue":"https://yuzhi123.queue.core.windows.net/","table":"https://yuzhi123.table.core.windows.net/","file":"https://yuzhi123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yuzhi123-secondary.blob.core.windows.net/","queue":"https://yuzhi123-secondary.queue.core.windows.net/","table":"https://yuzhi123-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest","name":"zhoxingtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-14T10:11:50.7998998Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-14T10:11:50.5186500Z","primaryEndpoints":{"blob":"https://zhoxingtest.blob.core.windows.net/","queue":"https://zhoxingtest.queue.core.windows.net/","table":"https://zhoxingtest.table.core.windows.net/","file":"https://zhoxingtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhoxingtest-secondary.blob.core.windows.net/","queue":"https://zhoxingtest-secondary.queue.core.windows.net/","table":"https://zhoxingtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:44:51.4772693Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:44:51.3679248Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgndqcnhtzbgfvywayllmropscysoonfvdiqt3yy2f2owek56fmxotp4xkaed4ctlml/providers/Microsoft.Storage/storageAccounts/clitesthbyb7yke3ybao3eon","name":"clitesthbyb7yke3ybao3eon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-07T04:18:12.9818218Z","primaryEndpoints":{"blob":"https://clitesthbyb7yke3ybao3eon.blob.core.windows.net/","queue":"https://clitesthbyb7yke3ybao3eon.queue.core.windows.net/","table":"https://clitesthbyb7yke3ybao3eon.table.core.windows.net/","file":"https://clitesthbyb7yke3ybao3eon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nyy02/providers/Microsoft.Storage/storageAccounts/msaccount","name":"msaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-07T07:21:37.0469540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-07T07:21:36.9219448Z","primaryEndpoints":{"blob":"https://msaccount.blob.core.windows.net/","table":"https://msaccount.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://msaccount-secondary.blob.core.windows.net/","table":"https://msaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage870bed83482aff","name":"vhdstorage870bed83482aff","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:45:35.7434429Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:45:35.6184357Z","primaryEndpoints":{"blob":"https://vhdstorage870bed83482aff.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-diskvx7hkvgcj5qub3zpqu2i5hxd3ajwk5k55jg3j3bh3yakj6ycjmjsdjj4yy5wgc/providers/Microsoft.Storage/storageAccounts/vhdstorageb2ffbc7fdfb264","name":"vhdstorageb2ffbc7fdfb264","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-23T14:43:32.5231905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-23T14:43:32.4137923Z","primaryEndpoints":{"blob":"https://vhdstorageb2ffbc7fdfb264.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrli6qx2bll/providers/Microsoft.Storage/storageAccounts/clitest2kskuzyfvkqd7xx4y","name":"clitest2kskuzyfvkqd7xx4y","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-16T23:34:07.9430240Z","primaryEndpoints":{"blob":"https://clitest2kskuzyfvkqd7xx4y.blob.core.windows.net/","queue":"https://clitest2kskuzyfvkqd7xx4y.queue.core.windows.net/","table":"https://clitest2kskuzyfvkqd7xx4y.table.core.windows.net/","file":"https://clitest2kskuzyfvkqd7xx4y.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6swh3vebl/providers/Microsoft.Storage/storageAccounts/clitestaxq4uhxp4axa3uagg","name":"clitestaxq4uhxp4axa3uagg","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-10T05:18:34.8238281Z","primaryEndpoints":{"blob":"https://clitestaxq4uhxp4axa3uagg.blob.core.windows.net/","queue":"https://clitestaxq4uhxp4axa3uagg.queue.core.windows.net/","table":"https://clitestaxq4uhxp4axa3uagg.table.core.windows.net/","file":"https://clitestaxq4uhxp4axa3uagg.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaz5eufnx7d/providers/Microsoft.Storage/storageAccounts/clitestkj3e2bodztqdfqsa2","name":"clitestkj3e2bodztqdfqsa2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T09:02:59.0267650Z","primaryEndpoints":{"blob":"https://clitestkj3e2bodztqdfqsa2.blob.core.windows.net/","queue":"https://clitestkj3e2bodztqdfqsa2.queue.core.windows.net/","table":"https://clitestkj3e2bodztqdfqsa2.table.core.windows.net/","file":"https://clitestkj3e2bodztqdfqsa2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeghfcmpfiw/providers/Microsoft.Storage/storageAccounts/clitestkoxtfkf67yodgckyb","name":"clitestkoxtfkf67yodgckyb","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-02-28T10:04:35.1410179Z","primaryEndpoints":{"blob":"https://clitestkoxtfkf67yodgckyb.blob.core.windows.net/","queue":"https://clitestkoxtfkf67yodgckyb.queue.core.windows.net/","table":"https://clitestkoxtfkf67yodgckyb.table.core.windows.net/","file":"https://clitestkoxtfkf67yodgckyb.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawbqkye7l4/providers/Microsoft.Storage/storageAccounts/clitestlsjx67ujuhjr7zkah","name":"clitestlsjx67ujuhjr7zkah","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-09T04:30:22.9172929Z","primaryEndpoints":{"blob":"https://clitestlsjx67ujuhjr7zkah.blob.core.windows.net/","queue":"https://clitestlsjx67ujuhjr7zkah.queue.core.windows.net/","table":"https://clitestlsjx67ujuhjr7zkah.table.core.windows.net/","file":"https://clitestlsjx67ujuhjr7zkah.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4chnkoo7ql/providers/Microsoft.Storage/storageAccounts/clitestmevgvn7p2e7ydqz44","name":"clitestmevgvn7p2e7ydqz44","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T03:32:22.2778291Z","primaryEndpoints":{"blob":"https://clitestmevgvn7p2e7ydqz44.blob.core.windows.net/","queue":"https://clitestmevgvn7p2e7ydqz44.queue.core.windows.net/","table":"https://clitestmevgvn7p2e7ydqz44.table.core.windows.net/","file":"https://clitestmevgvn7p2e7ydqz44.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ywcjwwkyqro7r54bzsggg3efujfc54tpvg3pmzto2wg3ifd5i2omb2oqz4ru44b3/providers/Microsoft.Storage/storageAccounts/clitest42lr3sjjyceqm2dsa","name":"clitest42lr3sjjyceqm2dsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:04:08.5153865Z","primaryEndpoints":{"blob":"https://clitest42lr3sjjyceqm2dsa.blob.core.windows.net/","queue":"https://clitest42lr3sjjyceqm2dsa.queue.core.windows.net/","table":"https://clitest42lr3sjjyceqm2dsa.table.core.windows.net/","file":"https://clitest42lr3sjjyceqm2dsa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgt6nin66or5swlkcbzuqqqvuatsme4t5spkwkygh4sziqlamyxv2fckdajclbire/providers/Microsoft.Storage/storageAccounts/clitest4hsuf3zwslxuux46y","name":"clitest4hsuf3zwslxuux46y","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:03.8948335Z","primaryEndpoints":{"blob":"https://clitest4hsuf3zwslxuux46y.blob.core.windows.net/","queue":"https://clitest4hsuf3zwslxuux46y.queue.core.windows.net/","table":"https://clitest4hsuf3zwslxuux46y.table.core.windows.net/","file":"https://clitest4hsuf3zwslxuux46y.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rbhj2siyn33fb3buqv4nfrpbtszdqvkeyymdjvwdzj2tgg6z5ig5v4fsnlngl6zy/providers/Microsoft.Storage/storageAccounts/clitest4k6c57bhb3fbeaeb2","name":"clitest4k6c57bhb3fbeaeb2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:47.2247436Z","primaryEndpoints":{"blob":"https://clitest4k6c57bhb3fbeaeb2.blob.core.windows.net/","queue":"https://clitest4k6c57bhb3fbeaeb2.queue.core.windows.net/","table":"https://clitest4k6c57bhb3fbeaeb2.table.core.windows.net/","file":"https://clitest4k6c57bhb3fbeaeb2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdug325lrcvzanqv3lzbjf3is3c3nkte77zapxydbwac3gjkwncn6mb4f7ac5quodl/providers/Microsoft.Storage/storageAccounts/clitest52hhfb76nrue6ykoz","name":"clitest52hhfb76nrue6ykoz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:18:06.5317315Z","primaryEndpoints":{"blob":"https://clitest52hhfb76nrue6ykoz.blob.core.windows.net/","queue":"https://clitest52hhfb76nrue6ykoz.queue.core.windows.net/","table":"https://clitest52hhfb76nrue6ykoz.table.core.windows.net/","file":"https://clitest52hhfb76nrue6ykoz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglsqzig6e5xb6f6yy7vcn6ga3cecladn475k3busnwddg7bekcbznawxwrs2fzwqsg/providers/Microsoft.Storage/storageAccounts/clitest5em3dvci6rx26joqq","name":"clitest5em3dvci6rx26joqq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:13:15.2330713Z","primaryEndpoints":{"blob":"https://clitest5em3dvci6rx26joqq.blob.core.windows.net/","queue":"https://clitest5em3dvci6rx26joqq.queue.core.windows.net/","table":"https://clitest5em3dvci6rx26joqq.table.core.windows.net/","file":"https://clitest5em3dvci6rx26joqq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xn5tbw5suxir4uuvhka5v4zfg5rmj4em2c6jceeadoa4nzc7b3bdydqwfyqiobus/providers/Microsoft.Storage/storageAccounts/clitest6pwsagzih7oocrr4x","name":"clitest6pwsagzih7oocrr4x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:37.2332988Z","primaryEndpoints":{"blob":"https://clitest6pwsagzih7oocrr4x.blob.core.windows.net/","queue":"https://clitest6pwsagzih7oocrr4x.queue.core.windows.net/","table":"https://clitest6pwsagzih7oocrr4x.table.core.windows.net/","file":"https://clitest6pwsagzih7oocrr4x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq5owppg4dci2qdrj7vzc5jfe2wkpqdndt73aoulpqbpqyme4ys6qp5yegc6x72nfg/providers/Microsoft.Storage/storageAccounts/clitest6xc3bnyzkpbv277hw","name":"clitest6xc3bnyzkpbv277hw","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:21:13.2640292Z","primaryEndpoints":{"blob":"https://clitest6xc3bnyzkpbv277hw.blob.core.windows.net/","queue":"https://clitest6xc3bnyzkpbv277hw.queue.core.windows.net/","table":"https://clitest6xc3bnyzkpbv277hw.table.core.windows.net/","file":"https://clitest6xc3bnyzkpbv277hw.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtzqrijjsdzepstlqsrzx5v3fvkbknlbvid5icevijobsupjxfzvc6jmmkkew4d6gc/providers/Microsoft.Storage/storageAccounts/clitest7v3uutjhsjcjiiqjk","name":"clitest7v3uutjhsjcjiiqjk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:54.1612401Z","primaryEndpoints":{"blob":"https://clitest7v3uutjhsjcjiiqjk.blob.core.windows.net/","queue":"https://clitest7v3uutjhsjcjiiqjk.queue.core.windows.net/","table":"https://clitest7v3uutjhsjcjiiqjk.table.core.windows.net/","file":"https://clitest7v3uutjhsjcjiiqjk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvricmqr6tftghdb2orhfvwwflb5yrmjlbbxfre27xo56m3yaowwocmuew3mkp6dch/providers/Microsoft.Storage/storageAccounts/clitesta6vvdbwzccmdhnmh7","name":"clitesta6vvdbwzccmdhnmh7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:40.9331185Z","primaryEndpoints":{"blob":"https://clitesta6vvdbwzccmdhnmh7.blob.core.windows.net/","queue":"https://clitesta6vvdbwzccmdhnmh7.queue.core.windows.net/","table":"https://clitesta6vvdbwzccmdhnmh7.table.core.windows.net/","file":"https://clitesta6vvdbwzccmdhnmh7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdj7xp7djs6mthgx5vg7frkzob6fa4r4ee6jyrvgncvnjvn36lppo6bqbxzdz75tll/providers/Microsoft.Storage/storageAccounts/clitestb3umzlekxb2476otp","name":"clitestb3umzlekxb2476otp","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:50.1379870Z","primaryEndpoints":{"blob":"https://clitestb3umzlekxb2476otp.blob.core.windows.net/","queue":"https://clitestb3umzlekxb2476otp.queue.core.windows.net/","table":"https://clitestb3umzlekxb2476otp.table.core.windows.net/","file":"https://clitestb3umzlekxb2476otp.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaw64vj3it6oap22mn6a3srkbit3tpoizzmhlztahj2iiulsdnnv6awcybcv6ewogj/providers/Microsoft.Storage/storageAccounts/clitestbiuu3kqzs7c4mqban","name":"clitestbiuu3kqzs7c4mqban","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T22:48:31.8286102Z","primaryEndpoints":{"blob":"https://clitestbiuu3kqzs7c4mqban.blob.core.windows.net/","queue":"https://clitestbiuu3kqzs7c4mqban.queue.core.windows.net/","table":"https://clitestbiuu3kqzs7c4mqban.table.core.windows.net/","file":"https://clitestbiuu3kqzs7c4mqban.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtspw4qvairmgdzy7n5rmnqkgvofttquawuj4gqd2vfu4vovezcfc7sf547caizzrh/providers/Microsoft.Storage/storageAccounts/clitestbsembxlqwsnj2fgge","name":"clitestbsembxlqwsnj2fgge","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:55:33.0930101Z","primaryEndpoints":{"blob":"https://clitestbsembxlqwsnj2fgge.blob.core.windows.net/","queue":"https://clitestbsembxlqwsnj2fgge.queue.core.windows.net/","table":"https://clitestbsembxlqwsnj2fgge.table.core.windows.net/","file":"https://clitestbsembxlqwsnj2fgge.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslmenloyni5hf6ungu5xnok6xazrqmqukr6gorcq64rq2u7hadght6uvzpmpbpg3u/providers/Microsoft.Storage/storageAccounts/clitestcw54yeqtizanybuwo","name":"clitestcw54yeqtizanybuwo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.8923715Z","primaryEndpoints":{"blob":"https://clitestcw54yeqtizanybuwo.blob.core.windows.net/","queue":"https://clitestcw54yeqtizanybuwo.queue.core.windows.net/","table":"https://clitestcw54yeqtizanybuwo.table.core.windows.net/","file":"https://clitestcw54yeqtizanybuwo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgastf744wty5rbe3b42dtbtj6m3u4njqshp3uezxwhayjl4gumhvlnx4umngpnd37j/providers/Microsoft.Storage/storageAccounts/clitestfoxs5cndjzuwfbysg","name":"clitestfoxs5cndjzuwfbysg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:29:08.3076366Z","primaryEndpoints":{"blob":"https://clitestfoxs5cndjzuwfbysg.blob.core.windows.net/","queue":"https://clitestfoxs5cndjzuwfbysg.queue.core.windows.net/","table":"https://clitestfoxs5cndjzuwfbysg.table.core.windows.net/","file":"https://clitestfoxs5cndjzuwfbysg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgjamsip45eiod37k5ava3icxn6g65gkuyffmj7fd2ipic36deyjqhzs5f5amepjw/providers/Microsoft.Storage/storageAccounts/clitestfseuqgiqhdcp3ufhh","name":"clitestfseuqgiqhdcp3ufhh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:43:04.6461064Z","primaryEndpoints":{"blob":"https://clitestfseuqgiqhdcp3ufhh.blob.core.windows.net/","queue":"https://clitestfseuqgiqhdcp3ufhh.queue.core.windows.net/","table":"https://clitestfseuqgiqhdcp3ufhh.table.core.windows.net/","file":"https://clitestfseuqgiqhdcp3ufhh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiojjcuhfzayzrer4xt3xelo5irqyhos7zzodnkr36kccmj3tkike4hj2z333kq54w/providers/Microsoft.Storage/storageAccounts/clitestgzh5gtd7dvvavu4r7","name":"clitestgzh5gtd7dvvavu4r7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:39.2057201Z","primaryEndpoints":{"blob":"https://clitestgzh5gtd7dvvavu4r7.blob.core.windows.net/","queue":"https://clitestgzh5gtd7dvvavu4r7.queue.core.windows.net/","table":"https://clitestgzh5gtd7dvvavu4r7.table.core.windows.net/","file":"https://clitestgzh5gtd7dvvavu4r7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3uh3ecchugblssjzzurmbz3fwz3si25txvdhbc3t7jo6zlnbitco2s4mnnjpqst2v/providers/Microsoft.Storage/storageAccounts/clitestif7zaqb3uji3nhacq","name":"clitestif7zaqb3uji3nhacq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:48:10.0998779Z","primaryEndpoints":{"blob":"https://clitestif7zaqb3uji3nhacq.blob.core.windows.net/","queue":"https://clitestif7zaqb3uji3nhacq.queue.core.windows.net/","table":"https://clitestif7zaqb3uji3nhacq.table.core.windows.net/","file":"https://clitestif7zaqb3uji3nhacq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddpmpp3buqip4f3ztkpw2okh4vd5lblxcs36olwlxmrn6hqzkgms3jgye5t72fahh/providers/Microsoft.Storage/storageAccounts/clitestlp7xyjhqdanlvdk7l","name":"clitestlp7xyjhqdanlvdk7l","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:32:05.2244193Z","primaryEndpoints":{"blob":"https://clitestlp7xyjhqdanlvdk7l.blob.core.windows.net/","queue":"https://clitestlp7xyjhqdanlvdk7l.queue.core.windows.net/","table":"https://clitestlp7xyjhqdanlvdk7l.table.core.windows.net/","file":"https://clitestlp7xyjhqdanlvdk7l.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiqgpdt6kvdporvteyacy5t5zw43gekna5gephtplex4buchsqnucjh24ke6ian63g/providers/Microsoft.Storage/storageAccounts/clitestlpnuh5cbq4gzlb4mt","name":"clitestlpnuh5cbq4gzlb4mt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:40:23.0669136Z","primaryEndpoints":{"blob":"https://clitestlpnuh5cbq4gzlb4mt.blob.core.windows.net/","queue":"https://clitestlpnuh5cbq4gzlb4mt.queue.core.windows.net/","table":"https://clitestlpnuh5cbq4gzlb4mt.table.core.windows.net/","file":"https://clitestlpnuh5cbq4gzlb4mt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wjfol23jdbl2gkdoeiou4nae4tnyxkvqazscvbwkazi5dbugwnwlcr7gn2nvblbz/providers/Microsoft.Storage/storageAccounts/clitestlvmg3eu2v3vfviots","name":"clitestlvmg3eu2v3vfviots","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:19:23.4055624Z","primaryEndpoints":{"blob":"https://clitestlvmg3eu2v3vfviots.blob.core.windows.net/","queue":"https://clitestlvmg3eu2v3vfviots.queue.core.windows.net/","table":"https://clitestlvmg3eu2v3vfviots.table.core.windows.net/","file":"https://clitestlvmg3eu2v3vfviots.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgod6ukvpdyodfbumzqyctb3mizfldmw7m4kczmcvtiwdw7eknpoq2uxsr3gc5qs6ia/providers/Microsoft.Storage/storageAccounts/clitestmekftj553567izfaa","name":"clitestmekftj553567izfaa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:40:57.8912800Z","primaryEndpoints":{"blob":"https://clitestmekftj553567izfaa.blob.core.windows.net/","queue":"https://clitestmekftj553567izfaa.queue.core.windows.net/","table":"https://clitestmekftj553567izfaa.table.core.windows.net/","file":"https://clitestmekftj553567izfaa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5gexz53gwezjaj2k73fecuuc4yqlddops5ntbekppouzb4x7h6bpbyvfme5nlourk/providers/Microsoft.Storage/storageAccounts/clitestmjpad5ax6f4npu3mz","name":"clitestmjpad5ax6f4npu3mz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:55:42.0602013Z","primaryEndpoints":{"blob":"https://clitestmjpad5ax6f4npu3mz.blob.core.windows.net/","queue":"https://clitestmjpad5ax6f4npu3mz.queue.core.windows.net/","table":"https://clitestmjpad5ax6f4npu3mz.table.core.windows.net/","file":"https://clitestmjpad5ax6f4npu3mz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2abywok236kysqgqh6yyxw5hjsmd2oiv7fmmzca4bdkfvsyhup2g3flygvn45gbtp/providers/Microsoft.Storage/storageAccounts/clitestnwqabo3kuhvx6svgt","name":"clitestnwqabo3kuhvx6svgt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:42:52.4883542Z","primaryEndpoints":{"blob":"https://clitestnwqabo3kuhvx6svgt.blob.core.windows.net/","queue":"https://clitestnwqabo3kuhvx6svgt.queue.core.windows.net/","table":"https://clitestnwqabo3kuhvx6svgt.table.core.windows.net/","file":"https://clitestnwqabo3kuhvx6svgt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4ewrfpsmwsfbapbb7k3cslbr34yplftoedawvzwr66vnki7qslc7yxcjg74xcdt4/providers/Microsoft.Storage/storageAccounts/clitestobi4eotlnsa6zh3bq","name":"clitestobi4eotlnsa6zh3bq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.4262587Z","primaryEndpoints":{"blob":"https://clitestobi4eotlnsa6zh3bq.blob.core.windows.net/","queue":"https://clitestobi4eotlnsa6zh3bq.queue.core.windows.net/","table":"https://clitestobi4eotlnsa6zh3bq.table.core.windows.net/","file":"https://clitestobi4eotlnsa6zh3bq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzvfnrnbiodivv7py3ttijdf62ufwz3obvcpzey36zr4h56myn3sajeenb67t2vufx/providers/Microsoft.Storage/storageAccounts/clitestokj67zonpbcy4h3ut","name":"clitestokj67zonpbcy4h3ut","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:51:42.3127731Z","primaryEndpoints":{"blob":"https://clitestokj67zonpbcy4h3ut.blob.core.windows.net/","queue":"https://clitestokj67zonpbcy4h3ut.queue.core.windows.net/","table":"https://clitestokj67zonpbcy4h3ut.table.core.windows.net/","file":"https://clitestokj67zonpbcy4h3ut.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg27eecv3qlcw6ol3xvlbfxfoasylnf4kby2jp2xlzkuk3skinkbsynd7fskj5fpsy3/providers/Microsoft.Storage/storageAccounts/clitestonivdoendik6ud5xu","name":"clitestonivdoendik6ud5xu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:25:23.1693829Z","primaryEndpoints":{"blob":"https://clitestonivdoendik6ud5xu.blob.core.windows.net/","queue":"https://clitestonivdoendik6ud5xu.queue.core.windows.net/","table":"https://clitestonivdoendik6ud5xu.table.core.windows.net/","file":"https://clitestonivdoendik6ud5xu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4g3f5lihvl5ymspqef7wlq3ougtwcl5cysr5hf26ft6qecpqygvuavvpaffm4jp2z/providers/Microsoft.Storage/storageAccounts/clitestppyuah3f63vji25wh","name":"clitestppyuah3f63vji25wh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:35:14.7210571Z","primaryEndpoints":{"blob":"https://clitestppyuah3f63vji25wh.blob.core.windows.net/","queue":"https://clitestppyuah3f63vji25wh.queue.core.windows.net/","table":"https://clitestppyuah3f63vji25wh.table.core.windows.net/","file":"https://clitestppyuah3f63vji25wh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxbcxx4ank64f2iixhvgd2jaf76ixz7z6ehcg4wgtoikus5rrg53sdli6a5acuxg7/providers/Microsoft.Storage/storageAccounts/clitestqltbsnaacri7pnm66","name":"clitestqltbsnaacri7pnm66","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:02:56.9375574Z","primaryEndpoints":{"blob":"https://clitestqltbsnaacri7pnm66.blob.core.windows.net/","queue":"https://clitestqltbsnaacri7pnm66.queue.core.windows.net/","table":"https://clitestqltbsnaacri7pnm66.table.core.windows.net/","file":"https://clitestqltbsnaacri7pnm66.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4euz2qks4a65suw4yg7q66oyuhws64hd3parve3zm7c7l5i636my5smbzk6cbvis/providers/Microsoft.Storage/storageAccounts/cliteststxx2rebwsjj4m7ev","name":"cliteststxx2rebwsjj4m7ev","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:28:46.2419469Z","primaryEndpoints":{"blob":"https://cliteststxx2rebwsjj4m7ev.blob.core.windows.net/","queue":"https://cliteststxx2rebwsjj4m7ev.queue.core.windows.net/","table":"https://cliteststxx2rebwsjj4m7ev.table.core.windows.net/","file":"https://cliteststxx2rebwsjj4m7ev.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7wjguctbigk256arnwsy5cikne5rtgxsungotn3y3cp7nofxioeys2x7dtiknym2a/providers/Microsoft.Storage/storageAccounts/clitesttayxcfhxj5auoke5a","name":"clitesttayxcfhxj5auoke5a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:16:25.1841497Z","primaryEndpoints":{"blob":"https://clitesttayxcfhxj5auoke5a.blob.core.windows.net/","queue":"https://clitesttayxcfhxj5auoke5a.queue.core.windows.net/","table":"https://clitesttayxcfhxj5auoke5a.table.core.windows.net/","file":"https://clitesttayxcfhxj5auoke5a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7tywk7mx4oyp34pr4jo76jp54xi6rrmofingxkdmix2bxupdaavsgm5bscdon7hb/providers/Microsoft.Storage/storageAccounts/clitestupama2samndokm3jd","name":"clitestupama2samndokm3jd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:48:18.6864732Z","primaryEndpoints":{"blob":"https://clitestupama2samndokm3jd.blob.core.windows.net/","queue":"https://clitestupama2samndokm3jd.queue.core.windows.net/","table":"https://clitestupama2samndokm3jd.table.core.windows.net/","file":"https://clitestupama2samndokm3jd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb6aglzjbgktmouuijj6dzlic4zxyiyz3rvpkaagcnysqv5336hn4e4fogwqavf53q/providers/Microsoft.Storage/storageAccounts/clitestvlciwxue3ibitylva","name":"clitestvlciwxue3ibitylva","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:03.3195568Z","primaryEndpoints":{"blob":"https://clitestvlciwxue3ibitylva.blob.core.windows.net/","queue":"https://clitestvlciwxue3ibitylva.queue.core.windows.net/","table":"https://clitestvlciwxue3ibitylva.table.core.windows.net/","file":"https://clitestvlciwxue3ibitylva.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg742gmmbkzphoscnqkjjro5gelzqfg4eicwtcz7tydc6xcgjtt72ilsthdw4u2ujmd/providers/Microsoft.Storage/storageAccounts/clitestvqpk5j3bnpinywycx","name":"clitestvqpk5j3bnpinywycx","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:51.5462900Z","primaryEndpoints":{"blob":"https://clitestvqpk5j3bnpinywycx.blob.core.windows.net/","queue":"https://clitestvqpk5j3bnpinywycx.queue.core.windows.net/","table":"https://clitestvqpk5j3bnpinywycx.table.core.windows.net/","file":"https://clitestvqpk5j3bnpinywycx.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmdksg3tnpfj5ikmkrjg42qofreubpsr5cdqs5zhcezqj7v5kgrmpx525kvdqm57ya/providers/Microsoft.Storage/storageAccounts/clitesty7sgxo5udzywq7e2x","name":"clitesty7sgxo5udzywq7e2x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:58:46.9231863Z","primaryEndpoints":{"blob":"https://clitesty7sgxo5udzywq7e2x.blob.core.windows.net/","queue":"https://clitesty7sgxo5udzywq7e2x.queue.core.windows.net/","table":"https://clitesty7sgxo5udzywq7e2x.table.core.windows.net/","file":"https://clitesty7sgxo5udzywq7e2x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2s77glmcoemgtgmlcgi7repejuetyjuabg2vruyc3ayj4u66cvgdpdofhcxrql5h5/providers/Microsoft.Storage/storageAccounts/clitestycqidlsdiibjyb3t4","name":"clitestycqidlsdiibjyb3t4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:39:28.1472265Z","primaryEndpoints":{"blob":"https://clitestycqidlsdiibjyb3t4.blob.core.windows.net/","queue":"https://clitestycqidlsdiibjyb3t4.queue.core.windows.net/","table":"https://clitestycqidlsdiibjyb3t4.table.core.windows.net/","file":"https://clitestycqidlsdiibjyb3t4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrq7ijqostqq5aahlpjr7formy46bcwnloyvgqqn3ztsmo4rfypznsbm6x6wq7m4f/providers/Microsoft.Storage/storageAccounts/clitestyx33svgzm5sxgbbwr","name":"clitestyx33svgzm5sxgbbwr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:49.4827371Z","primaryEndpoints":{"blob":"https://clitestyx33svgzm5sxgbbwr.blob.core.windows.net/","queue":"https://clitestyx33svgzm5sxgbbwr.queue.core.windows.net/","table":"https://clitestyx33svgzm5sxgbbwr.table.core.windows.net/","file":"https://clitestyx33svgzm5sxgbbwr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaars34if2f6awhrzr5vwtr2ocprv723xlflz2zxxqut3f6tqiv2hjy2l5zaj6kutqvbq/providers/Microsoft.Storage/storageAccounts/clitest3r7bin53shduexe6n","name":"clitest3r7bin53shduexe6n","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:36:46.7845261Z","primaryEndpoints":{"blob":"https://clitest3r7bin53shduexe6n.blob.core.windows.net/","queue":"https://clitest3r7bin53shduexe6n.queue.core.windows.net/","table":"https://clitest3r7bin53shduexe6n.table.core.windows.net/","file":"https://clitest3r7bin53shduexe6n.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestra7ouuwajkupsos3f6xg6pbwkbxdaearft7d4e35uecoopx7yzgnelmfuetvhvn4jle6/providers/Microsoft.Storage/storageAccounts/clitest55eq4q3yibnqxk2lk","name":"clitest55eq4q3yibnqxk2lk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T23:09:45.7143786Z","primaryEndpoints":{"blob":"https://clitest55eq4q3yibnqxk2lk.blob.core.windows.net/","queue":"https://clitest55eq4q3yibnqxk2lk.queue.core.windows.net/","table":"https://clitest55eq4q3yibnqxk2lk.table.core.windows.net/","file":"https://clitest55eq4q3yibnqxk2lk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaocausrs3iu33bd7z3atmvd3kphc6acu73ifeyvogvdgdktef736y3qrmxkdwrnraj4o/providers/Microsoft.Storage/storageAccounts/clitest5fich3ydeobhd23w2","name":"clitest5fich3ydeobhd23w2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:24.9948735Z","primaryEndpoints":{"blob":"https://clitest5fich3ydeobhd23w2.blob.core.windows.net/","queue":"https://clitest5fich3ydeobhd23w2.queue.core.windows.net/","table":"https://clitest5fich3ydeobhd23w2.table.core.windows.net/","file":"https://clitest5fich3ydeobhd23w2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttt33kr36k27jzupqzyvmwoyxnhhkzd57gzdkiruhhj7hmr7wi5gh32ofdsa4cm2cbigi/providers/Microsoft.Storage/storageAccounts/clitest5nfub4nyp5igwlueb","name":"clitest5nfub4nyp5igwlueb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:51:11.8477455Z","primaryEndpoints":{"blob":"https://clitest5nfub4nyp5igwlueb.blob.core.windows.net/","queue":"https://clitest5nfub4nyp5igwlueb.queue.core.windows.net/","table":"https://clitest5nfub4nyp5igwlueb.table.core.windows.net/","file":"https://clitest5nfub4nyp5igwlueb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestml55iowweb6q7xe2wje5hizd4cfs53eijje47bsf7qy5xru2fegf2adfotoitfvq7b34/providers/Microsoft.Storage/storageAccounts/clitest6tnfqsy73mo2qi6ov","name":"clitest6tnfqsy73mo2qi6ov","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-11T01:42:00.1391781Z","primaryEndpoints":{"blob":"https://clitest6tnfqsy73mo2qi6ov.blob.core.windows.net/","queue":"https://clitest6tnfqsy73mo2qi6ov.queue.core.windows.net/","table":"https://clitest6tnfqsy73mo2qi6ov.table.core.windows.net/","file":"https://clitest6tnfqsy73mo2qi6ov.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5pxpr64tqxefi4kgvuh5z3cmr3srlor6oj3om2ehpxbkm7orzvfbgqagtooojquptagq/providers/Microsoft.Storage/storageAccounts/clitesta23vfo64epdjcu3ot","name":"clitesta23vfo64epdjcu3ot","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:20:46.7656986Z","primaryEndpoints":{"blob":"https://clitesta23vfo64epdjcu3ot.blob.core.windows.net/","queue":"https://clitesta23vfo64epdjcu3ot.queue.core.windows.net/","table":"https://clitesta23vfo64epdjcu3ot.table.core.windows.net/","file":"https://clitesta23vfo64epdjcu3ot.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkcuipcz3pt2cibpgeifzrgfyzqdvsmwkw55s6of5em2ayvaozqx7seepqe3qotzz66dq/providers/Microsoft.Storage/storageAccounts/clitestapjrxhw5tbshhpa5r","name":"clitestapjrxhw5tbshhpa5r","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:04:56.0558227Z","primaryEndpoints":{"blob":"https://clitestapjrxhw5tbshhpa5r.blob.core.windows.net/","queue":"https://clitestapjrxhw5tbshhpa5r.queue.core.windows.net/","table":"https://clitestapjrxhw5tbshhpa5r.table.core.windows.net/","file":"https://clitestapjrxhw5tbshhpa5r.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpyyrggpop6t2eifpvaicw2npacscf5smrsegi7gjeb6arklcmy2poh32b757t4k7eyxm/providers/Microsoft.Storage/storageAccounts/clitestb5yxhpa3shv5y6e6y","name":"clitestb5yxhpa3shv5y6e6y","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:36:56.0894550Z","primaryEndpoints":{"blob":"https://clitestb5yxhpa3shv5y6e6y.blob.core.windows.net/","queue":"https://clitestb5yxhpa3shv5y6e6y.queue.core.windows.net/","table":"https://clitestb5yxhpa3shv5y6e6y.table.core.windows.net/","file":"https://clitestb5yxhpa3shv5y6e6y.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcioaekrdcac3gfopptjaajefdj423bny2ijiohhlstguyjbz7ey5yopzt3glfk3wu22c/providers/Microsoft.Storage/storageAccounts/clitestbajwfvucqjul4yvoq","name":"clitestbajwfvucqjul4yvoq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:43:59.3143640Z","primaryEndpoints":{"blob":"https://clitestbajwfvucqjul4yvoq.blob.core.windows.net/","queue":"https://clitestbajwfvucqjul4yvoq.queue.core.windows.net/","table":"https://clitestbajwfvucqjul4yvoq.table.core.windows.net/","file":"https://clitestbajwfvucqjul4yvoq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestef6eejui2ry622mc6zf2nvoemmdy7t3minir53pkvaii6ftsyufmbwzcwdomdg4ybrb6/providers/Microsoft.Storage/storageAccounts/clitestcnrkbgnvxvtoswnwk","name":"clitestcnrkbgnvxvtoswnwk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:54:10.7204974Z","primaryEndpoints":{"blob":"https://clitestcnrkbgnvxvtoswnwk.blob.core.windows.net/","queue":"https://clitestcnrkbgnvxvtoswnwk.queue.core.windows.net/","table":"https://clitestcnrkbgnvxvtoswnwk.table.core.windows.net/","file":"https://clitestcnrkbgnvxvtoswnwk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestem5kabxlxhdb6zfxdhtqgoaa4f5fgadqcvzwbxjv4i3tpl7cazs3yx46oidsxdy77cy2/providers/Microsoft.Storage/storageAccounts/clitestdu2ev4t4zoit7bvqi","name":"clitestdu2ev4t4zoit7bvqi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:41:00.0743945Z","primaryEndpoints":{"blob":"https://clitestdu2ev4t4zoit7bvqi.blob.core.windows.net/","queue":"https://clitestdu2ev4t4zoit7bvqi.queue.core.windows.net/","table":"https://clitestdu2ev4t4zoit7bvqi.table.core.windows.net/","file":"https://clitestdu2ev4t4zoit7bvqi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnxak6zvgtto64ihvpqeb6k6axceeskjnygs6kmirhy7t3ea2fixecjhr7i4qckpqpso/providers/Microsoft.Storage/storageAccounts/clitesteabyzaucegm7asmdy","name":"clitesteabyzaucegm7asmdy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:56:30.4416480Z","primaryEndpoints":{"blob":"https://clitesteabyzaucegm7asmdy.blob.core.windows.net/","queue":"https://clitesteabyzaucegm7asmdy.queue.core.windows.net/","table":"https://clitesteabyzaucegm7asmdy.table.core.windows.net/","file":"https://clitesteabyzaucegm7asmdy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestitvqgal52p4psfil24fzt3bed3ggoi6homqb65uwqtwqytvatpymshlg6xdxbb2y2xun/providers/Microsoft.Storage/storageAccounts/clitesteg772nlczvaz5acxj","name":"clitesteg772nlczvaz5acxj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T23:25:35.2172397Z","primaryEndpoints":{"blob":"https://clitesteg772nlczvaz5acxj.blob.core.windows.net/","queue":"https://clitesteg772nlczvaz5acxj.queue.core.windows.net/","table":"https://clitesteg772nlczvaz5acxj.table.core.windows.net/","file":"https://clitesteg772nlczvaz5acxj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhxadwesuwxcw3oci5pchhqwqwmcqiriqymhru2exjji6ax7focfxa2wpmd3xbxtaq3t/providers/Microsoft.Storage/storageAccounts/clitestftms76siovw6xle6l","name":"clitestftms76siovw6xle6l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:54:59.9351597Z","primaryEndpoints":{"blob":"https://clitestftms76siovw6xle6l.blob.core.windows.net/","queue":"https://clitestftms76siovw6xle6l.queue.core.windows.net/","table":"https://clitestftms76siovw6xle6l.table.core.windows.net/","file":"https://clitestftms76siovw6xle6l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7yubzobtgqqoviarcco22mlfkafuvu32s3o4dfts54zzanzbsl5ip7rzaxzgigg7ijta/providers/Microsoft.Storage/storageAccounts/clitestg6yfm7cgxhb4ewrdd","name":"clitestg6yfm7cgxhb4ewrdd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:50.0553084Z","primaryEndpoints":{"blob":"https://clitestg6yfm7cgxhb4ewrdd.blob.core.windows.net/","queue":"https://clitestg6yfm7cgxhb4ewrdd.queue.core.windows.net/","table":"https://clitestg6yfm7cgxhb4ewrdd.table.core.windows.net/","file":"https://clitestg6yfm7cgxhb4ewrdd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmf7nhc2b7xj4ixozvacoyhu5txvmpbvnechdktpac6dpdx3ckv6jt6vebrkl24rzui4n/providers/Microsoft.Storage/storageAccounts/clitestgqwqxremngb73a7d4","name":"clitestgqwqxremngb73a7d4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:54.9900949Z","primaryEndpoints":{"blob":"https://clitestgqwqxremngb73a7d4.blob.core.windows.net/","queue":"https://clitestgqwqxremngb73a7d4.queue.core.windows.net/","table":"https://clitestgqwqxremngb73a7d4.table.core.windows.net/","file":"https://clitestgqwqxremngb73a7d4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestumpqlcfhjrqokmcud3ilwtvxyfowdjypjqgyymcf4whtgbq2gzzq6f2rqs66ll4mjgzm/providers/Microsoft.Storage/storageAccounts/clitestgu6cs7lus5a567u57","name":"clitestgu6cs7lus5a567u57","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:14:06.4894945Z","primaryEndpoints":{"blob":"https://clitestgu6cs7lus5a567u57.blob.core.windows.net/","queue":"https://clitestgu6cs7lus5a567u57.queue.core.windows.net/","table":"https://clitestgu6cs7lus5a567u57.table.core.windows.net/","file":"https://clitestgu6cs7lus5a567u57.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestn4htsp3pg7ss7lmzhcljejgtykexcvsnpgv6agwecgmuu6ckzau64qsjr7huw7yjt7xp/providers/Microsoft.Storage/storageAccounts/clitestixj25nsrxwuhditis","name":"clitestixj25nsrxwuhditis","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:34:17.0626105Z","primaryEndpoints":{"blob":"https://clitestixj25nsrxwuhditis.blob.core.windows.net/","queue":"https://clitestixj25nsrxwuhditis.queue.core.windows.net/","table":"https://clitestixj25nsrxwuhditis.table.core.windows.net/","file":"https://clitestixj25nsrxwuhditis.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgq2rbt5t5uv3qy2hasu5gvqrlzozx6vzerszimnby4ybqtp5fmecaxj3to5iemnt7zxi/providers/Microsoft.Storage/storageAccounts/clitestl3yjfwd43tngr3lc3","name":"clitestl3yjfwd43tngr3lc3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.9204650Z","primaryEndpoints":{"blob":"https://clitestl3yjfwd43tngr3lc3.blob.core.windows.net/","queue":"https://clitestl3yjfwd43tngr3lc3.queue.core.windows.net/","table":"https://clitestl3yjfwd43tngr3lc3.table.core.windows.net/","file":"https://clitestl3yjfwd43tngr3lc3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestepy64dgrtly4yjibvcoccnejqyhiq4x7o6p7agna5wsmlycai7yxgi3cq3r2y6obgwfd/providers/Microsoft.Storage/storageAccounts/clitestld7574jebhj62dtvt","name":"clitestld7574jebhj62dtvt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:25:44.5717202Z","primaryEndpoints":{"blob":"https://clitestld7574jebhj62dtvt.blob.core.windows.net/","queue":"https://clitestld7574jebhj62dtvt.queue.core.windows.net/","table":"https://clitestld7574jebhj62dtvt.table.core.windows.net/","file":"https://clitestld7574jebhj62dtvt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestp5tcxahtvl6aa72hi7stjq5jf52e6pomwtrblva65dei2ftuqpruyn4w4twv7rqj3idw/providers/Microsoft.Storage/storageAccounts/clitestljawlm4h73ws6xqet","name":"clitestljawlm4h73ws6xqet","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:47:48.9404345Z","primaryEndpoints":{"blob":"https://clitestljawlm4h73ws6xqet.blob.core.windows.net/","queue":"https://clitestljawlm4h73ws6xqet.queue.core.windows.net/","table":"https://clitestljawlm4h73ws6xqet.table.core.windows.net/","file":"https://clitestljawlm4h73ws6xqet.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4uclirqb3ls66vfea6dckw3hj5kaextm324ugnbkquibcn2rck7b7gmrmql55g3zknff/providers/Microsoft.Storage/storageAccounts/clitestm4jcw64slbkeds52p","name":"clitestm4jcw64slbkeds52p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:20.7413381Z","primaryEndpoints":{"blob":"https://clitestm4jcw64slbkeds52p.blob.core.windows.net/","queue":"https://clitestm4jcw64slbkeds52p.queue.core.windows.net/","table":"https://clitestm4jcw64slbkeds52p.table.core.windows.net/","file":"https://clitestm4jcw64slbkeds52p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6q54l25xpde6kfnauzzkpfgepjiio73onycgbulqkawkv5wcigbnnhzv7uao7abedoer/providers/Microsoft.Storage/storageAccounts/clitestm5bj2p5ajecznrca6","name":"clitestm5bj2p5ajecznrca6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:35:33.2545964Z","primaryEndpoints":{"blob":"https://clitestm5bj2p5ajecznrca6.blob.core.windows.net/","queue":"https://clitestm5bj2p5ajecznrca6.queue.core.windows.net/","table":"https://clitestm5bj2p5ajecznrca6.table.core.windows.net/","file":"https://clitestm5bj2p5ajecznrca6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlasgl5zx6ikvcbociiykbocsytte2lohfxvpwhwimcc3vbrjjyw6bfbdr2vnimlyhqqi/providers/Microsoft.Storage/storageAccounts/clitestmmrdf65b6iyccd46o","name":"clitestmmrdf65b6iyccd46o","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:31:23.2526784Z","primaryEndpoints":{"blob":"https://clitestmmrdf65b6iyccd46o.blob.core.windows.net/","queue":"https://clitestmmrdf65b6iyccd46o.queue.core.windows.net/","table":"https://clitestmmrdf65b6iyccd46o.table.core.windows.net/","file":"https://clitestmmrdf65b6iyccd46o.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvilxen5dzbyerye5umdunqblbkglgcffizxusyzmgifnuy5xzu67t3fokkh6osaqqyyj/providers/Microsoft.Storage/storageAccounts/clitestoueypfkdm2ub7n246","name":"clitestoueypfkdm2ub7n246","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:57:05.7597303Z","primaryEndpoints":{"blob":"https://clitestoueypfkdm2ub7n246.blob.core.windows.net/","queue":"https://clitestoueypfkdm2ub7n246.queue.core.windows.net/","table":"https://clitestoueypfkdm2ub7n246.table.core.windows.net/","file":"https://clitestoueypfkdm2ub7n246.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcnbbt3dvwtzd7t2de25yso3n2gs6i7mqnfloe5myghvfjc5hddzlwkxbotwgt5utz23p/providers/Microsoft.Storage/storageAccounts/clitestoyv4k5wezlz5652m7","name":"clitestoyv4k5wezlz5652m7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:53:25.6154142Z","primaryEndpoints":{"blob":"https://clitestoyv4k5wezlz5652m7.blob.core.windows.net/","queue":"https://clitestoyv4k5wezlz5652m7.queue.core.windows.net/","table":"https://clitestoyv4k5wezlz5652m7.table.core.windows.net/","file":"https://clitestoyv4k5wezlz5652m7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestixw7rtta5a356httmdosgg7qubvcaouftsvknfhvqqhqwftebu7jy5r27pprk7ctdnwp/providers/Microsoft.Storage/storageAccounts/clitestri5mezafhuqqzpn5f","name":"clitestri5mezafhuqqzpn5f","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:35:27.3868241Z","primaryEndpoints":{"blob":"https://clitestri5mezafhuqqzpn5f.blob.core.windows.net/","queue":"https://clitestri5mezafhuqqzpn5f.queue.core.windows.net/","table":"https://clitestri5mezafhuqqzpn5f.table.core.windows.net/","file":"https://clitestri5mezafhuqqzpn5f.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestevsaicktnjgl5cxsdgqxunvrpbz3b5kiwem5aupvcn666xqibcydgkcmqom7wfe3dapu/providers/Microsoft.Storage/storageAccounts/clitestrjmnbaleto4rtnerx","name":"clitestrjmnbaleto4rtnerx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T14:10:11.2769522Z","primaryEndpoints":{"blob":"https://clitestrjmnbaleto4rtnerx.blob.core.windows.net/","queue":"https://clitestrjmnbaleto4rtnerx.queue.core.windows.net/","table":"https://clitestrjmnbaleto4rtnerx.table.core.windows.net/","file":"https://clitestrjmnbaleto4rtnerx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4r6levc5rrhybrqdpa7ji574v5syh473mkechmyeuub52k5ppe6jpwdn4ummj5zz4dls/providers/Microsoft.Storage/storageAccounts/clitestrloxav4ddvzysochv","name":"clitestrloxav4ddvzysochv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T17:02:12.3756824Z","primaryEndpoints":{"blob":"https://clitestrloxav4ddvzysochv.blob.core.windows.net/","queue":"https://clitestrloxav4ddvzysochv.queue.core.windows.net/","table":"https://clitestrloxav4ddvzysochv.table.core.windows.net/","file":"https://clitestrloxav4ddvzysochv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvjv33kuh5emihpapvtmm2rvht3tzrvzj3l7pygfh2yfwrlsqrgth2qfth6eylgrcnc2v/providers/Microsoft.Storage/storageAccounts/clitestrynzkqk7indncjb6c","name":"clitestrynzkqk7indncjb6c","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:37:22.4111374Z","primaryEndpoints":{"blob":"https://clitestrynzkqk7indncjb6c.blob.core.windows.net/","queue":"https://clitestrynzkqk7indncjb6c.queue.core.windows.net/","table":"https://clitestrynzkqk7indncjb6c.table.core.windows.net/","file":"https://clitestrynzkqk7indncjb6c.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3dson3a62z7n3t273by34bdkoa3bdosbrwqb6iwpygxslz6qc3jfeirp57b7zgufmnqk/providers/Microsoft.Storage/storageAccounts/clitests4scvwk2agr6ufpu3","name":"clitests4scvwk2agr6ufpu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:55:14.8791923Z","primaryEndpoints":{"blob":"https://clitests4scvwk2agr6ufpu3.blob.core.windows.net/","queue":"https://clitests4scvwk2agr6ufpu3.queue.core.windows.net/","table":"https://clitests4scvwk2agr6ufpu3.table.core.windows.net/","file":"https://clitests4scvwk2agr6ufpu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlmm4hekch44v2jjs6g7whi3qbgamfmevxrpjihfokewye7h3suswarq4mw5gdmosfj2y/providers/Microsoft.Storage/storageAccounts/clitests6o6rszcmwmsvtcwx","name":"clitests6o6rszcmwmsvtcwx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:15:04.0385481Z","primaryEndpoints":{"blob":"https://clitests6o6rszcmwmsvtcwx.blob.core.windows.net/","queue":"https://clitests6o6rszcmwmsvtcwx.queue.core.windows.net/","table":"https://clitests6o6rszcmwmsvtcwx.table.core.windows.net/","file":"https://clitests6o6rszcmwmsvtcwx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwbzchpbjgcxxskmdhphtbzptfkqdlzhapbqla2v27iw54pevob7yanyz7ppmmigrhtkk/providers/Microsoft.Storage/storageAccounts/clitestvuslwcarkk3sdmgga","name":"clitestvuslwcarkk3sdmgga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T23:14:55.3892927Z","primaryEndpoints":{"blob":"https://clitestvuslwcarkk3sdmgga.blob.core.windows.net/","queue":"https://clitestvuslwcarkk3sdmgga.queue.core.windows.net/","table":"https://clitestvuslwcarkk3sdmgga.table.core.windows.net/","file":"https://clitestvuslwcarkk3sdmgga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestreufd5cqee3zivebxym7cxi57izubkyszpgf3xlnt4bsit2x6ptggeuh6qiwu4jvwhd5/providers/Microsoft.Storage/storageAccounts/clitestwbzje3s6lhe5qaq5l","name":"clitestwbzje3s6lhe5qaq5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:28:23.5884630Z","primaryEndpoints":{"blob":"https://clitestwbzje3s6lhe5qaq5l.blob.core.windows.net/","queue":"https://clitestwbzje3s6lhe5qaq5l.queue.core.windows.net/","table":"https://clitestwbzje3s6lhe5qaq5l.table.core.windows.net/","file":"https://clitestwbzje3s6lhe5qaq5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsfkcdnkd2xngtxma6yip2hrfxcljs3dtv4p6teg457mlhyruamnayv7ejk3e264tbsue/providers/Microsoft.Storage/storageAccounts/clitestxc5fs7nomr2dnwv5h","name":"clitestxc5fs7nomr2dnwv5h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:57:25.4227819Z","primaryEndpoints":{"blob":"https://clitestxc5fs7nomr2dnwv5h.blob.core.windows.net/","queue":"https://clitestxc5fs7nomr2dnwv5h.queue.core.windows.net/","table":"https://clitestxc5fs7nomr2dnwv5h.table.core.windows.net/","file":"https://clitestxc5fs7nomr2dnwv5h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuapcrhybuggyatduocbydgd2xgdyuaj26awe5rksptnbf2uz7rbjt5trh6gj3q3jv23u/providers/Microsoft.Storage/storageAccounts/clitestxueoehnvkkqr6h434","name":"clitestxueoehnvkkqr6h434","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T22:09:26.3282727Z","primaryEndpoints":{"blob":"https://clitestxueoehnvkkqr6h434.blob.core.windows.net/","queue":"https://clitestxueoehnvkkqr6h434.queue.core.windows.net/","table":"https://clitestxueoehnvkkqr6h434.table.core.windows.net/","file":"https://clitestxueoehnvkkqr6h434.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbyccq72r2rnjfc6e7ma7xklipq5yxdec7xzgp3rqdiqvagffurpfcagi7dv3kjixsp7k/providers/Microsoft.Storage/storageAccounts/version25b4mikldc2rugmv6","name":"version25b4mikldc2rugmv6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:57.6990367Z","primaryEndpoints":{"blob":"https://version25b4mikldc2rugmv6.blob.core.windows.net/","queue":"https://version25b4mikldc2rugmv6.queue.core.windows.net/","table":"https://version25b4mikldc2rugmv6.table.core.windows.net/","file":"https://version25b4mikldc2rugmv6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitests76ucvib4b5fgppqu5ciu6pknaatlexv4uk736sdtnk6osbv4idvaj7rh5ojgrjomo2z/providers/Microsoft.Storage/storageAccounts/version2unrg7v6iwv7y5m5l","name":"version2unrg7v6iwv7y5m5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:39:50.0281735Z","primaryEndpoints":{"blob":"https://version2unrg7v6iwv7y5m5l.blob.core.windows.net/","queue":"https://version2unrg7v6iwv7y5m5l.queue.core.windows.net/","table":"https://version2unrg7v6iwv7y5m5l.table.core.windows.net/","file":"https://version2unrg7v6iwv7y5m5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3tibadds5lu5w2l7eglv3fx6fle6tcdlmpnjyebby5bb5xfopqkxdqumpgyd2feunb2d/providers/Microsoft.Storage/storageAccounts/version4dicc6l6ho3regfk6","name":"version4dicc6l6ho3regfk6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:00:21.6584988Z","primaryEndpoints":{"blob":"https://version4dicc6l6ho3regfk6.blob.core.windows.net/","queue":"https://version4dicc6l6ho3regfk6.queue.core.windows.net/","table":"https://version4dicc6l6ho3regfk6.table.core.windows.net/","file":"https://version4dicc6l6ho3regfk6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestousee7s5ti3bvgsldu3tad76cdv45lzvkwlnece46ufo4hjl22dj6kmqdpkbeba6i7wa/providers/Microsoft.Storage/storageAccounts/version5s35huoclfr4t2omd","name":"version5s35huoclfr4t2omd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.6036637Z","primaryEndpoints":{"blob":"https://version5s35huoclfr4t2omd.blob.core.windows.net/","queue":"https://version5s35huoclfr4t2omd.queue.core.windows.net/","table":"https://version5s35huoclfr4t2omd.table.core.windows.net/","file":"https://version5s35huoclfr4t2omd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdr6bri6cqc4uqm7ggpwj34csapsvbmlicxdcovjzsxlkc5ph2xyxnjlxzboseuegw5q2/providers/Microsoft.Storage/storageAccounts/versionagcwr45mfhwqkazte","name":"versionagcwr45mfhwqkazte","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:06:05.7750830Z","primaryEndpoints":{"blob":"https://versionagcwr45mfhwqkazte.blob.core.windows.net/","queue":"https://versionagcwr45mfhwqkazte.queue.core.windows.net/","table":"https://versionagcwr45mfhwqkazte.table.core.windows.net/","file":"https://versionagcwr45mfhwqkazte.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrbeoeyuczwyiitagnjquifkcu7l7pbiofoqpq5dvnyw6t2g23cidvmrfpsiitzgvvltc/providers/Microsoft.Storage/storageAccounts/versionbxfkluj64kluccc4m","name":"versionbxfkluj64kluccc4m","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:38:23.6299381Z","primaryEndpoints":{"blob":"https://versionbxfkluj64kluccc4m.blob.core.windows.net/","queue":"https://versionbxfkluj64kluccc4m.queue.core.windows.net/","table":"https://versionbxfkluj64kluccc4m.table.core.windows.net/","file":"https://versionbxfkluj64kluccc4m.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5feodovurwzsilp6pwlmafeektwxlwijkstn52zi6kxelzeryrhtj3dykralburkfbe2/providers/Microsoft.Storage/storageAccounts/versionc4lto7lppswuwqswn","name":"versionc4lto7lppswuwqswn","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:02.5920986Z","primaryEndpoints":{"blob":"https://versionc4lto7lppswuwqswn.blob.core.windows.net/","queue":"https://versionc4lto7lppswuwqswn.queue.core.windows.net/","table":"https://versionc4lto7lppswuwqswn.table.core.windows.net/","file":"https://versionc4lto7lppswuwqswn.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2zdiilm3ugwy2dlv37bhlyvyf6wpljit7d6o3zepyw6fkroztx53ouqjyhwp4dkp4jzv/providers/Microsoft.Storage/storageAccounts/versioncal7ire65zyi6zhnx","name":"versioncal7ire65zyi6zhnx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:20:37.3728352Z","primaryEndpoints":{"blob":"https://versioncal7ire65zyi6zhnx.blob.core.windows.net/","queue":"https://versioncal7ire65zyi6zhnx.queue.core.windows.net/","table":"https://versioncal7ire65zyi6zhnx.table.core.windows.net/","file":"https://versioncal7ire65zyi6zhnx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest24txadv4waeoqfrbzw4q3e333id45y7nnpuv5vvovws7fhrkesqbuul5chzpu6flgvfk/providers/Microsoft.Storage/storageAccounts/versionclxgou4idgatxjr77","name":"versionclxgou4idgatxjr77","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:37.6627583Z","primaryEndpoints":{"blob":"https://versionclxgou4idgatxjr77.blob.core.windows.net/","queue":"https://versionclxgou4idgatxjr77.queue.core.windows.net/","table":"https://versionclxgou4idgatxjr77.table.core.windows.net/","file":"https://versionclxgou4idgatxjr77.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdrnnmqa4sgcpa7frydav5ijhdtawsxmmdwnh5rj7r5xhveix5ns7wms6wesgxwc5pu3o/providers/Microsoft.Storage/storageAccounts/versioncq5cycygofi7d6pri","name":"versioncq5cycygofi7d6pri","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:43.3650110Z","primaryEndpoints":{"blob":"https://versioncq5cycygofi7d6pri.blob.core.windows.net/","queue":"https://versioncq5cycygofi7d6pri.queue.core.windows.net/","table":"https://versioncq5cycygofi7d6pri.table.core.windows.net/","file":"https://versioncq5cycygofi7d6pri.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsk4lc6dssbjjgkmxuk6phvsahow4dkmxkix2enlwuhhplj3lgqof5kr6leepjdyea3pl/providers/Microsoft.Storage/storageAccounts/versioncuioqcwvj2iwjmldg","name":"versioncuioqcwvj2iwjmldg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:54:58.9114548Z","primaryEndpoints":{"blob":"https://versioncuioqcwvj2iwjmldg.blob.core.windows.net/","queue":"https://versioncuioqcwvj2iwjmldg.queue.core.windows.net/","table":"https://versioncuioqcwvj2iwjmldg.table.core.windows.net/","file":"https://versioncuioqcwvj2iwjmldg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsgar4qjt34qhsuj6hez7kimz6mfle7eczvq5bfsh7xpilagusjstjetu65f2u6vh5qeb/providers/Microsoft.Storage/storageAccounts/versiond3oz7jhpapoxnxxci","name":"versiond3oz7jhpapoxnxxci","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:21.4301251Z","primaryEndpoints":{"blob":"https://versiond3oz7jhpapoxnxxci.blob.core.windows.net/","queue":"https://versiond3oz7jhpapoxnxxci.queue.core.windows.net/","table":"https://versiond3oz7jhpapoxnxxci.table.core.windows.net/","file":"https://versiond3oz7jhpapoxnxxci.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth6t5wqiulzt7vmszohprfrvkph7c226cgihbujtdvljcbvc4d4zwjbhwjscbts34c7up/providers/Microsoft.Storage/storageAccounts/versiondj27wf2pbuqyzilmd","name":"versiondj27wf2pbuqyzilmd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T13:45:18.8834129Z","primaryEndpoints":{"blob":"https://versiondj27wf2pbuqyzilmd.blob.core.windows.net/","queue":"https://versiondj27wf2pbuqyzilmd.queue.core.windows.net/","table":"https://versiondj27wf2pbuqyzilmd.table.core.windows.net/","file":"https://versiondj27wf2pbuqyzilmd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfyxdmvu32prroldn2p24a3iyr2phi7o22i26szwv2kuwh6zaj4rdet7ms5gdjnam2egt/providers/Microsoft.Storage/storageAccounts/versiondjhixg3cqipgjsmx4","name":"versiondjhixg3cqipgjsmx4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:23.9213706Z","primaryEndpoints":{"blob":"https://versiondjhixg3cqipgjsmx4.blob.core.windows.net/","queue":"https://versiondjhixg3cqipgjsmx4.queue.core.windows.net/","table":"https://versiondjhixg3cqipgjsmx4.table.core.windows.net/","file":"https://versiondjhixg3cqipgjsmx4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestchwod5nqxyebiyl6j4s2afrqmitcdhgmxhxszsf4wv6qwws7hvhvget5u2i2cua63cxc/providers/Microsoft.Storage/storageAccounts/versiondo3arjclzct3ahufa","name":"versiondo3arjclzct3ahufa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:34:36.8510092Z","primaryEndpoints":{"blob":"https://versiondo3arjclzct3ahufa.blob.core.windows.net/","queue":"https://versiondo3arjclzct3ahufa.queue.core.windows.net/","table":"https://versiondo3arjclzct3ahufa.table.core.windows.net/","file":"https://versiondo3arjclzct3ahufa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwmea2y23rvqprapww6ikfm6jk7abomcuhzngx3bltkme33xh2xkdgmn4n2fwcljqw3wv/providers/Microsoft.Storage/storageAccounts/versiondufx3et3bnjtg4xch","name":"versiondufx3et3bnjtg4xch","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T09:15:36.7127958Z","primaryEndpoints":{"blob":"https://versiondufx3et3bnjtg4xch.blob.core.windows.net/","queue":"https://versiondufx3et3bnjtg4xch.queue.core.windows.net/","table":"https://versiondufx3et3bnjtg4xch.table.core.windows.net/","file":"https://versiondufx3et3bnjtg4xch.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestakpkuxez73vyn36t4gn7rzxofnqwgm72bcmj4cdcadyalqklc2kyfx3qcfe3x2botivf/providers/Microsoft.Storage/storageAccounts/versionehqwmpnsaeybdcd4s","name":"versionehqwmpnsaeybdcd4s","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:59:30.2768393Z","primaryEndpoints":{"blob":"https://versionehqwmpnsaeybdcd4s.blob.core.windows.net/","queue":"https://versionehqwmpnsaeybdcd4s.queue.core.windows.net/","table":"https://versionehqwmpnsaeybdcd4s.table.core.windows.net/","file":"https://versionehqwmpnsaeybdcd4s.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesterdlb62puqdedjbhf3za3vxsu7igmsj447yliowotbxtokfcxj6geys4tgngzk5iuppn/providers/Microsoft.Storage/storageAccounts/versionen7upolksoryxwxnb","name":"versionen7upolksoryxwxnb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:42:25.7069810Z","primaryEndpoints":{"blob":"https://versionen7upolksoryxwxnb.blob.core.windows.net/","queue":"https://versionen7upolksoryxwxnb.queue.core.windows.net/","table":"https://versionen7upolksoryxwxnb.table.core.windows.net/","file":"https://versionen7upolksoryxwxnb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestylszwk3tqxigxfm3ongkbbgoelhfjiyrqqybpleivk3e7qa7gylocnj7rkod4jivp33h/providers/Microsoft.Storage/storageAccounts/versionha6yygjfdivfeud5k","name":"versionha6yygjfdivfeud5k","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:02:51.0535636Z","primaryEndpoints":{"blob":"https://versionha6yygjfdivfeud5k.blob.core.windows.net/","queue":"https://versionha6yygjfdivfeud5k.queue.core.windows.net/","table":"https://versionha6yygjfdivfeud5k.table.core.windows.net/","file":"https://versionha6yygjfdivfeud5k.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2d5fjdmfhy7kkhkwbqo7gngf6a2wlnvvaku7gxkwitz7vnnppvgothckppdsxhv3nem2/providers/Microsoft.Storage/storageAccounts/versionhh4uq45sysgx6awnt","name":"versionhh4uq45sysgx6awnt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:26:38.3576837Z","primaryEndpoints":{"blob":"https://versionhh4uq45sysgx6awnt.blob.core.windows.net/","queue":"https://versionhh4uq45sysgx6awnt.queue.core.windows.net/","table":"https://versionhh4uq45sysgx6awnt.table.core.windows.net/","file":"https://versionhh4uq45sysgx6awnt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliteste6lnfkdei2mzinyplhajo2t5ly327gwrwmuf5mrj74avle2b2kf4ulu4u3zlxxwts4ab/providers/Microsoft.Storage/storageAccounts/versionib6wdvsaxftddhtmh","name":"versionib6wdvsaxftddhtmh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:01.1041285Z","primaryEndpoints":{"blob":"https://versionib6wdvsaxftddhtmh.blob.core.windows.net/","queue":"https://versionib6wdvsaxftddhtmh.queue.core.windows.net/","table":"https://versionib6wdvsaxftddhtmh.table.core.windows.net/","file":"https://versionib6wdvsaxftddhtmh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti5twtev4nt7cel7ygxhupx6tvfowykbyxvq7aqclx76mlvsomt6fradfz3xbl2qkuo77/providers/Microsoft.Storage/storageAccounts/versionijonp732sqkyptdxv","name":"versionijonp732sqkyptdxv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:06.5115315Z","primaryEndpoints":{"blob":"https://versionijonp732sqkyptdxv.blob.core.windows.net/","queue":"https://versionijonp732sqkyptdxv.queue.core.windows.net/","table":"https://versionijonp732sqkyptdxv.table.core.windows.net/","file":"https://versionijonp732sqkyptdxv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest74lh5dcwdivjzpbyoqvafkpvnfg3tregvqtf456g3udapzlfl4jyqlh3sde26d2jh3x6/providers/Microsoft.Storage/storageAccounts/versioniuezathg3v5v754k7","name":"versioniuezathg3v5v754k7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-18T05:42:37.8743443Z","primaryEndpoints":{"blob":"https://versioniuezathg3v5v754k7.blob.core.windows.net/","queue":"https://versioniuezathg3v5v754k7.queue.core.windows.net/","table":"https://versioniuezathg3v5v754k7.table.core.windows.net/","file":"https://versioniuezathg3v5v754k7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcdvjnuor7heyx55wxz6h4jdaxblpvnyfdk47a7ameycswklee6pxoev7idm4m644qisg/providers/Microsoft.Storage/storageAccounts/versionizwzijfbdy5w6mvbu","name":"versionizwzijfbdy5w6mvbu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:18:06.2828372Z","primaryEndpoints":{"blob":"https://versionizwzijfbdy5w6mvbu.blob.core.windows.net/","queue":"https://versionizwzijfbdy5w6mvbu.queue.core.windows.net/","table":"https://versionizwzijfbdy5w6mvbu.table.core.windows.net/","file":"https://versionizwzijfbdy5w6mvbu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfjg3rxzubogi6qrblsgw3mmesxhn3pxjg27a5ktf7gnrxrnhwlrylljjshcwyyghqxbu/providers/Microsoft.Storage/storageAccounts/versionko6ksgiyhw5bzflr7","name":"versionko6ksgiyhw5bzflr7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T09:44:43.2547236Z","primaryEndpoints":{"blob":"https://versionko6ksgiyhw5bzflr7.blob.core.windows.net/","queue":"https://versionko6ksgiyhw5bzflr7.queue.core.windows.net/","table":"https://versionko6ksgiyhw5bzflr7.table.core.windows.net/","file":"https://versionko6ksgiyhw5bzflr7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkzfdhprmzadvpjklrd7656pshnk33mbj6omwyff2jzqjatbmhegyprcfs7wbi4ypmvef/providers/Microsoft.Storage/storageAccounts/versionm5vzvntn2srqhkssx","name":"versionm5vzvntn2srqhkssx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:15:38.7025605Z","primaryEndpoints":{"blob":"https://versionm5vzvntn2srqhkssx.blob.core.windows.net/","queue":"https://versionm5vzvntn2srqhkssx.queue.core.windows.net/","table":"https://versionm5vzvntn2srqhkssx.table.core.windows.net/","file":"https://versionm5vzvntn2srqhkssx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4ynxfhry5dpkuo3xwssvdbe3iwcxt5ewlnx3lz332nsyd3piqlooviiegb2uplmxnctu/providers/Microsoft.Storage/storageAccounts/versionnaeshhylx7ri7rvhk","name":"versionnaeshhylx7ri7rvhk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:17:46.0698030Z","primaryEndpoints":{"blob":"https://versionnaeshhylx7ri7rvhk.blob.core.windows.net/","queue":"https://versionnaeshhylx7ri7rvhk.queue.core.windows.net/","table":"https://versionnaeshhylx7ri7rvhk.table.core.windows.net/","file":"https://versionnaeshhylx7ri7rvhk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqtov5khibmli5l5qnqxx7sqsiomitv4dy6e7v2p6g6baxo5k7gybvzol2mludvvlt3hk/providers/Microsoft.Storage/storageAccounts/versionncglaxef3bncte6ug","name":"versionncglaxef3bncte6ug","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:01:00.4007471Z","primaryEndpoints":{"blob":"https://versionncglaxef3bncte6ug.blob.core.windows.net/","queue":"https://versionncglaxef3bncte6ug.queue.core.windows.net/","table":"https://versionncglaxef3bncte6ug.table.core.windows.net/","file":"https://versionncglaxef3bncte6ug.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvexlopurtffpw44qelwzhnrj4hrri453i57dssogm2nrq3tgb4gdctqnh22two36b4r4/providers/Microsoft.Storage/storageAccounts/versiono3puxbh7aoleprgrj","name":"versiono3puxbh7aoleprgrj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:54:30.3834786Z","primaryEndpoints":{"blob":"https://versiono3puxbh7aoleprgrj.blob.core.windows.net/","queue":"https://versiono3puxbh7aoleprgrj.queue.core.windows.net/","table":"https://versiono3puxbh7aoleprgrj.table.core.windows.net/","file":"https://versiono3puxbh7aoleprgrj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4hjjelhodbnxnyv3gpitmvqm2g57s4osl4jrt3fa5jtsrwbqbikwerf5tiwwmmekgcsp/providers/Microsoft.Storage/storageAccounts/versiono5slm5nxi3gl5ndil","name":"versiono5slm5nxi3gl5ndil","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:21.4686030Z","primaryEndpoints":{"blob":"https://versiono5slm5nxi3gl5ndil.blob.core.windows.net/","queue":"https://versiono5slm5nxi3gl5ndil.queue.core.windows.net/","table":"https://versiono5slm5nxi3gl5ndil.table.core.windows.net/","file":"https://versiono5slm5nxi3gl5ndil.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5qgbjmgp4dbfryqs33skw2pkptk2sdmoqsw6nqonzmeekbq3ovley42itnpj4yfej5yi/providers/Microsoft.Storage/storageAccounts/versionoojtzpigw27c2rlwi","name":"versionoojtzpigw27c2rlwi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:31:21.4483344Z","primaryEndpoints":{"blob":"https://versionoojtzpigw27c2rlwi.blob.core.windows.net/","queue":"https://versionoojtzpigw27c2rlwi.queue.core.windows.net/","table":"https://versionoojtzpigw27c2rlwi.table.core.windows.net/","file":"https://versionoojtzpigw27c2rlwi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestz4bcht3lymqfffkatndjcle4qf567sbk5b3hfcoqhkrfgghei6jeqgan2zr2i2j5fbtq/providers/Microsoft.Storage/storageAccounts/versions3jowsvxiiqegyrbr","name":"versions3jowsvxiiqegyrbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:12:49.9157469Z","primaryEndpoints":{"blob":"https://versions3jowsvxiiqegyrbr.blob.core.windows.net/","queue":"https://versions3jowsvxiiqegyrbr.queue.core.windows.net/","table":"https://versions3jowsvxiiqegyrbr.table.core.windows.net/","file":"https://versions3jowsvxiiqegyrbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestd5q64bqhg7etouaunbpihutfyklxtsq6th5x27ddcpkn5ddwaj7yeth7w6vabib2jk36/providers/Microsoft.Storage/storageAccounts/versionsl4dpowre7blcmtnv","name":"versionsl4dpowre7blcmtnv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:52:33.0430992Z","primaryEndpoints":{"blob":"https://versionsl4dpowre7blcmtnv.blob.core.windows.net/","queue":"https://versionsl4dpowre7blcmtnv.queue.core.windows.net/","table":"https://versionsl4dpowre7blcmtnv.table.core.windows.net/","file":"https://versionsl4dpowre7blcmtnv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttfwerdemnnqhnkhq7pesq4g3fy2ms2qei6yjrfucueeqhy74fu5kdcxkbap7znlruizn/providers/Microsoft.Storage/storageAccounts/versionsnhg3s55m22flnaim","name":"versionsnhg3s55m22flnaim","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:47:35.1773825Z","primaryEndpoints":{"blob":"https://versionsnhg3s55m22flnaim.blob.core.windows.net/","queue":"https://versionsnhg3s55m22flnaim.queue.core.windows.net/","table":"https://versionsnhg3s55m22flnaim.table.core.windows.net/","file":"https://versionsnhg3s55m22flnaim.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6j4p5hu3qwk67zq467rtwcd2a7paxiwrgpvjuqvw3drzvoz3clyu22h7l3gmkbn2c4oa/providers/Microsoft.Storage/storageAccounts/versionu6gh46ckmtwb2izub","name":"versionu6gh46ckmtwb2izub","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:28:58.0654507Z","primaryEndpoints":{"blob":"https://versionu6gh46ckmtwb2izub.blob.core.windows.net/","queue":"https://versionu6gh46ckmtwb2izub.queue.core.windows.net/","table":"https://versionu6gh46ckmtwb2izub.table.core.windows.net/","file":"https://versionu6gh46ckmtwb2izub.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthjubmr2gcxl7wowm2yz4jtlqknroqoldmrrdz7ijr7kzs3intstr2ag5cuwovsdyfscc/providers/Microsoft.Storage/storageAccounts/versionvndhff7czdxs3e4zs","name":"versionvndhff7czdxs3e4zs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:53:55.2284931Z","primaryEndpoints":{"blob":"https://versionvndhff7czdxs3e4zs.blob.core.windows.net/","queue":"https://versionvndhff7czdxs3e4zs.queue.core.windows.net/","table":"https://versionvndhff7czdxs3e4zs.table.core.windows.net/","file":"https://versionvndhff7czdxs3e4zs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc37roadc7h7ibpejg25elnx5c7th3cjwkmdjmraqd7x4d6afafd67xtrdeammre4vvwz/providers/Microsoft.Storage/storageAccounts/versionvs7l3fj37x7r3omla","name":"versionvs7l3fj37x7r3omla","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:41.4928817Z","primaryEndpoints":{"blob":"https://versionvs7l3fj37x7r3omla.blob.core.windows.net/","queue":"https://versionvs7l3fj37x7r3omla.queue.core.windows.net/","table":"https://versionvs7l3fj37x7r3omla.table.core.windows.net/","file":"https://versionvs7l3fj37x7r3omla.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestu2dumyf3mk7jyirvjmsg3w5s3sa7ke6ujncoaf3eo7bowo2bmxpjufa3ww5q66p2u2gb/providers/Microsoft.Storage/storageAccounts/versionwlfh4xbessj73brlz","name":"versionwlfh4xbessj73brlz","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:16.4803444Z","primaryEndpoints":{"blob":"https://versionwlfh4xbessj73brlz.blob.core.windows.net/","queue":"https://versionwlfh4xbessj73brlz.queue.core.windows.net/","table":"https://versionwlfh4xbessj73brlz.table.core.windows.net/","file":"https://versionwlfh4xbessj73brlz.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsknognisu5ofc5kqx2s7pkyd44ypiqggvewtlb44ikbkje77zh4vo2y5c6alllygemol/providers/Microsoft.Storage/storageAccounts/versionwrfq6nydu5kpiyses","name":"versionwrfq6nydu5kpiyses","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:13.1837898Z","primaryEndpoints":{"blob":"https://versionwrfq6nydu5kpiyses.blob.core.windows.net/","queue":"https://versionwrfq6nydu5kpiyses.queue.core.windows.net/","table":"https://versionwrfq6nydu5kpiyses.table.core.windows.net/","file":"https://versionwrfq6nydu5kpiyses.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyuxvuaieuwauapmgpekzsx2djnxw7imdd44j7ye2q2bsscuowdlungp4mvqma3k4zdi3/providers/Microsoft.Storage/storageAccounts/versionzlxq5fbnucauv5vo7","name":"versionzlxq5fbnucauv5vo7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-25T03:40:01.1169169Z","primaryEndpoints":{"blob":"https://versionzlxq5fbnucauv5vo7.blob.core.windows.net/","queue":"https://versionzlxq5fbnucauv5vo7.queue.core.windows.net/","table":"https://versionzlxq5fbnucauv5vo7.table.core.windows.net/","file":"https://versionzlxq5fbnucauv5vo7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestglnitz57vqvc6itqwridomid64tyuijykukioisnaiyykplrweeehtxiwezec62slafz/providers/Microsoft.Storage/storageAccounts/versionztiuttcba4r3zu4ux","name":"versionztiuttcba4r3zu4ux","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:39:18.9781248Z","primaryEndpoints":{"blob":"https://versionztiuttcba4r3zu4ux.blob.core.windows.net/","queue":"https://versionztiuttcba4r3zu4ux.queue.core.windows.net/","table":"https://versionztiuttcba4r3zu4ux.table.core.windows.net/","file":"https://versionztiuttcba4r3zu4ux.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutoTagFunctionAppRG/providers/Microsoft.Storage/storageAccounts/autotagfunctionappr9a08","name":"autotagfunctionappr9a08","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-05T09:25:55.2339685Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-09-05T09:25:55.0465004Z","primaryEndpoints":{"blob":"https://autotagfunctionappr9a08.blob.core.windows.net/","queue":"https://autotagfunctionappr9a08.queue.core.windows.net/","table":"https://autotagfunctionappr9a08.table.core.windows.net/","file":"https://autotagfunctionappr9a08.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD/providers/Microsoft.Storage/storageAccounts/clicmdmeta","name":"clicmdmeta","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-29T08:18:02.5833710Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-29T08:18:02.3489928Z","primaryEndpoints":{"blob":"https://clicmdmeta.blob.core.windows.net/","queue":"https://clicmdmeta.queue.core.windows.net/","table":"https://clicmdmeta.table.core.windows.net/","file":"https://clicmdmeta.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clicmdmeta-secondary.blob.core.windows.net/","queue":"https://clicmdmeta-secondary.queue.core.windows.net/","table":"https://clicmdmeta-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-live-test/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-27T02:49:14.3221918Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-27T02:49:14.1346872Z","primaryEndpoints":{"blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"version":"1.240.16"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageentity/providers/Microsoft.Storage/storageAccounts/satestentity","name":"satestentity","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-21T05:16:48.4326955Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-21T05:16:48.2608242Z","primaryEndpoints":{"blob":"https://satestentity.blob.core.windows.net/","queue":"https://satestentity.queue.core.windows.net/","table":"https://satestentity.table.core.windows.net/","file":"https://satestentity.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestentity-secondary.blob.core.windows.net/","queue":"https://satestentity-secondary.queue.core.windows.net/","table":"https://satestentity-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestvmcopydisk2/providers/Microsoft.Storage/storageAccounts/satestvmcopydisk","name":"satestvmcopydisk","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-18T11:43:32.0641208Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-18T11:43:31.8922192Z","primaryEndpoints":{"blob":"https://satestvmcopydisk.blob.core.windows.net/","queue":"https://satestvmcopydisk.queue.core.windows.net/","table":"https://satestvmcopydisk.table.core.windows.net/","file":"https://satestvmcopydisk.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestvmcopydisk-secondary.blob.core.windows.net/","queue":"https://satestvmcopydisk-secondary.queue.core.windows.net/","table":"https://satestvmcopydisk-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shiying-rg/providers/Microsoft.Storage/storageAccounts/shiyingsa","name":"shiyingsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-08-31T02:04:31.3662209Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-08-31T02:04:31.1786494Z","primaryEndpoints":{"blob":"https://shiyingsa.blob.core.windows.net/","queue":"https://shiyingsa.queue.core.windows.net/","table":"https://shiyingsa.table.core.windows.net/","file":"https://shiyingsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shiyingsa-secondary.blob.core.windows.net/","queue":"https://shiyingsa-secondary.queue.core.windows.net/","table":"https://shiyingsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD/providers/Microsoft.Storage/storageAccounts/versionmeta","name":"versionmeta","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-22T07:02:19.8526288Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-22T07:02:19.6651543Z","primaryEndpoints":{"blob":"https://versionmeta.blob.core.windows.net/","queue":"https://versionmeta.queue.core.windows.net/","table":"https://versionmeta.table.core.windows.net/","file":"https://versionmeta.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://versionmeta-secondary.blob.core.windows.net/","queue":"https://versionmeta-secondary.queue.core.windows.net/","table":"https://versionmeta-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/zhuyan","name":"zhuyan","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-29T07:49:14.7086254Z","primaryEndpoints":{"blob":"https://zhuyan.blob.core.windows.net/","queue":"https://zhuyan.queue.core.windows.net/","table":"https://zhuyan.table.core.windows.net/","file":"https://zhuyan.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhuyan-secondary.blob.core.windows.net/","queue":"https://zhuyan-secondary.queue.core.windows.net/","table":"https://zhuyan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestazcopy/providers/Microsoft.Storage/storageAccounts/satestazcopyfixversion","name":"satestazcopyfixversion","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T01:43:14.3065609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-10-17T01:43:14.1346778Z","primaryEndpoints":{"blob":"https://satestazcopyfixversion.blob.core.windows.net/","queue":"https://satestazcopyfixversion.queue.core.windows.net/","table":"https://satestazcopyfixversion.table.core.windows.net/","file":"https://satestazcopyfixversion.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestazcopyfixversion-secondary.blob.core.windows.net/","queue":"https://satestazcopyfixversion-secondary.queue.core.windows.net/","table":"https://satestazcopyfixversion-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestsasencode/providers/Microsoft.Storage/storageAccounts/satestsasencode","name":"satestsasencode","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-21T03:10:30.1371661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-09-21T03:10:29.9496519Z","primaryEndpoints":{"blob":"https://satestsasencode.blob.core.windows.net/","queue":"https://satestsasencode.queue.core.windows.net/","table":"https://satestsasencode.table.core.windows.net/","file":"https://satestsasencode.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://satestsasencode-secondary.blob.core.windows.net/","queue":"https://satestsasencode-secondary.queue.core.windows.net/","table":"https://satestsasencode-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/sauserassignedidentity2","name":"sauserassignedidentity2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-06-06T08:49:14.8688109Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-06-06T08:49:14.7282063Z","primaryEndpoints":{"blob":"https://sauserassignedidentity2.blob.core.windows.net/","queue":"https://sauserassignedidentity2.queue.core.windows.net/","table":"https://sauserassignedidentity2.table.core.windows.net/","file":"https://sauserassignedidentity2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/similar8010979611","name":"similar8010979611","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-14T07:27:28.5673994Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-14T07:27:28.1299252Z","primaryEndpoints":{"blob":"https://similar8010979611.blob.core.windows.net/","queue":"https://similar8010979611.queue.core.windows.net/","table":"https://similar8010979611.table.core.windows.net/","file":"https://similar8010979611.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/clitestbootdiag000002","name":"clitestbootdiag000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:06.6777576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:05.6464633Z","primaryEndpoints":{"blob":"https://clitestbootdiag000002.blob.core.windows.net/","queue":"https://clitestbootdiag000002.queue.core.windows.net/","table":"https://clitestbootdiag000002.table.core.windows.net/","file":"https://clitestbootdiag000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Storage/storageAccounts/vhdstorage43430ef5f5ee00","name":"vhdstorage43430ef5f5ee00","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-10-17T02:49:50.1626883Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-10-17T02:49:49.9283666Z","primaryEndpoints":{"blob":"https://vhdstorage43430ef5f5ee00.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092c7f510","name":"cs11003200092c7f510","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-23T01:08:37.4517613Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-23T01:08:37.3111734Z","primaryEndpoints":{"blob":"https://cs11003200092c7f510.blob.core.windows.net/","queue":"https://cs11003200092c7f510.queue.core.windows.net/","table":"https://cs11003200092c7f510.table.core.windows.net/","file":"https://cs11003200092c7f510.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000d5b642af","name":"cs110032000d5b642af","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T04:59:52.0820281Z","primaryEndpoints":{"blob":"https://cs110032000d5b642af.blob.core.windows.net/","queue":"https://cs110032000d5b642af.queue.core.windows.net/","table":"https://cs110032000d5b642af.table.core.windows.net/","file":"https://cs110032000d5b642af.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c03a0927","name":"cs110032001c03a0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-09T03:33:21.4711071Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-09T03:33:20.4399045Z","primaryEndpoints":{"blob":"https://cs110032001c03a0927.blob.core.windows.net/","queue":"https://cs110032001c03a0927.queue.core.windows.net/","table":"https://cs110032001c03a0927.table.core.windows.net/","file":"https://cs110032001c03a0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d9298600","name":"cs110032001d9298600","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-17T07:01:02.4191975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-17T07:01:01.2316914Z","primaryEndpoints":{"blob":"https://cs110032001d9298600.blob.core.windows.net/","queue":"https://cs110032001d9298600.queue.core.windows.net/","table":"https://cs110032001d9298600.table.core.windows.net/","file":"https://cs110032001d9298600.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001eb0eb551","name":"cs110032001eb0eb551","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-12T06:11:11.7405204Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-12T06:11:10.4592363Z","primaryEndpoints":{"blob":"https://cs110032001eb0eb551.blob.core.windows.net/","queue":"https://cs110032001eb0eb551.queue.core.windows.net/","table":"https://cs110032001eb0eb551.table.core.windows.net/","file":"https://cs110032001eb0eb551.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001fc5cae23","name":"cs110032001fc5cae23","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-29T12:20:49.5928874Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-29T12:20:49.4835194Z","primaryEndpoints":{"blob":"https://cs110032001fc5cae23.blob.core.windows.net/","queue":"https://cs110032001fc5cae23.queue.core.windows.net/","table":"https://cs110032001fc5cae23.table.core.windows.net/","file":"https://cs110032001fc5cae23.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320020231acc7","name":"cs1100320020231acc7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-02T05:46:36.5596404Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-02T05:46:36.4658704Z","primaryEndpoints":{"blob":"https://cs1100320020231acc7.blob.core.windows.net/","queue":"https://cs1100320020231acc7.queue.core.windows.net/","table":"https://cs1100320020231acc7.table.core.windows.net/","file":"https://cs1100320020231acc7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320021bf852a7","name":"cs1100320021bf852a7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-11-11T03:14:46.7901340Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-11-11T03:14:46.6807523Z","primaryEndpoints":{"blob":"https://cs1100320021bf852a7.blob.core.windows.net/","queue":"https://cs1100320021bf852a7.queue.core.windows.net/","table":"https://cs1100320021bf852a7.table.core.windows.net/","file":"https://cs1100320021bf852a7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320023613967b","name":"cs1100320023613967b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-10-10T02:03:46.3159450Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-10T02:03:45.5971844Z","primaryEndpoints":{"blob":"https://cs1100320023613967b.blob.core.windows.net/","queue":"https://cs1100320023613967b.queue.core.windows.net/","table":"https://cs1100320023613967b.table.core.windows.net/","file":"https://cs1100320023613967b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320025316bd42","name":"cs1100320025316bd42","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-04-20T08:07:13.6290377Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-04-20T08:07:13.4884106Z","primaryEndpoints":{"blob":"https://cs1100320025316bd42.blob.core.windows.net/","queue":"https://cs1100320025316bd42.queue.core.windows.net/","table":"https://cs1100320025316bd42.table.core.windows.net/","file":"https://cs1100320025316bd42.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032002659dd63b","name":"cs110032002659dd63b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-01-12T09:06:12.0956006Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-01-12T09:06:11.9549543Z","primaryEndpoints":{"blob":"https://cs110032002659dd63b.blob.core.windows.net/","queue":"https://cs110032002659dd63b.queue.core.windows.net/","table":"https://cs110032002659dd63b.table.core.windows.net/","file":"https://cs110032002659dd63b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320026f5d426c","name":"cs1100320026f5d426c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-02-04T07:50:15.8556226Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-02-04T07:50:15.6995628Z","primaryEndpoints":{"blob":"https://cs1100320026f5d426c.blob.core.windows.net/","queue":"https://cs1100320026f5d426c.queue.core.windows.net/","table":"https://cs1100320026f5d426c.table.core.windows.net/","file":"https://cs1100320026f5d426c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200276a5db68","name":"cs11003200276a5db68","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-02-17T03:55:44.6212229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-02-17T03:55:44.4805786Z","primaryEndpoints":{"blob":"https://cs11003200276a5db68.blob.core.windows.net/","queue":"https://cs11003200276a5db68.queue.core.windows.net/","table":"https://cs11003200276a5db68.table.core.windows.net/","file":"https://cs11003200276a5db68.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320029b4982f7","name":"cs1100320029b4982f7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-05-22T08:21:49.5919951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-05-22T08:21:49.4669976Z","primaryEndpoints":{"blob":"https://cs1100320029b4982f7.blob.core.windows.net/","queue":"https://cs1100320029b4982f7.queue.core.windows.net/","table":"https://cs1100320029b4982f7.table.core.windows.net/","file":"https://cs1100320029b4982f7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032002bffa30b5","name":"cs110032002bffa30b5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2023-09-04T09:27:45.5068146Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-09-04T09:27:45.3817744Z","primaryEndpoints":{"blob":"https://cs110032002bffa30b5.blob.core.windows.net/","queue":"https://cs110032002bffa30b5.queue.core.windows.net/","table":"https://cs110032002bffa30b5.table.core.windows.net/","file":"https://cs110032002bffa30b5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646/providers/Microsoft.Storage/storageAccounts/dbstorageiuxa4gtv5zxki","name":"dbstorageiuxa4gtv5zxki","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-11T10:52:46.5192203Z","primaryEndpoints":{"blob":"https://dbstorageiuxa4gtv5zxki.blob.core.windows.net/","table":"https://dbstorageiuxa4gtv5zxki.table.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangtest","name":"hangtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-09-08T08:40:46.7905248Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-08T08:40:46.1498764Z","primaryEndpoints":{"blob":"https://hangtest.blob.microsoftrrdclab1.edgestorage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeuapeast","name":"saeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-08T07:14:48.9997460Z","primaryEndpoints":{"blob":"https://saeuapeast.blob.core.windows.net/","queue":"https://saeuapeast.queue.core.windows.net/","table":"https://saeuapeast.table.core.windows.net/","file":"https://saeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://saeuapeast-secondary.blob.core.windows.net/","queue":"https://saeuapeast-secondary.queue.core.windows.net/","table":"https://saeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_ZRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsapremiumpage","name":"zhiyihuangsapremiumpage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2022-12-20T06:32:05.6245467Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-12-20T06:32:05.1557874Z","primaryEndpoints":{"blob":"https://zhiyihuangsapremiumpage.blob.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '290115' + - '92832' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:27 GMT + - Tue, 17 Oct 2023 02:52:51 GMT expires: - '-1' pragma: @@ -1989,15 +2026,16 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bfc67c03-438e-4142-8610-fd47808f9842 - - cad9a2a0-1bb5-4f32-9ca5-7a5ff485cc48 - - 3a99d3ad-9ba0-416c-b322-31b040d3c453 - - ffe62987-e6b2-4f5c-8e36-54e637e45fd0 - - d801f8a5-1183-4efd-ad2b-327117413882 - - fba3f98b-1444-4b19-84d3-4e447c18848c - - 6b9cfdd7-d1c1-43c2-9c42-61d2f16133cf - - 4f61d359-2c4a-409d-8dcd-ff6a0bec2ba1 - - 9550dbb4-f9a7-4fdc-ac76-b88da0c896dd + - b35785d7-4f25-4ab5-8f36-3695b07c991d + - b120d82d-18db-4c82-b509-76bae09e6234 + - 0f5a0f08-97a1-4b37-94c9-5015316b7c8f + - dbe40eef-be38-4ae9-ae3a-3e76675df7d1 + - 3c0906db-d468-4f65-8d87-8393c4fcf30c + - e765eea1-81ab-4d52-a8b3-cd4ae2042706 + - 2162cbc4-2485-4c6f-ae20-ffe612ac3f24 + - 61573332-319b-42a9-bb66-ecf4f5271c6f + - ac969550-8e56-4dd1-9504-5618e8f8bff6 + - 183c6717-d08e-4f8d-bbcb-5f9a7e69b070 status: code: 200 message: OK @@ -2026,10 +2064,10 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": - "10", "version": "latest"}}, "osProfile": {"computerName": "myvm2", "adminUsername": - "user11", "adminPassword": "[parameters(''adminPassword'')]"}, "diagnosticsProfile": - {"bootDiagnostics": {"enabled": true, "storageUri": "https://clitestbootdiag000002.blob.core.windows.net/"}}}}], + null}}, "imageReference": {"publisher": "Debian", "offer": "debian-11", "sku": + "11-backports-gen2", "version": "latest"}}, "osProfile": {"computerName": "myvm2", + "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}, + "diagnosticsProfile": {"bootDiagnostics": {"enabled": true, "storageUri": "https://clitestbootdiag000002.blob.core.windows.net/"}}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "incremental"}}' headers: @@ -2042,29 +2080,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2965' + - '2980' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_VvX33xIliIBFFpyef5edusCwzZ1Q1qC7","name":"vm_deploy_VvX33xIliIBFFpyef5edusCwzZ1Q1qC7","properties":{"templateHash":"2662288973991472339","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:48:33.4927214Z","duration":"PT0.0000895S","correlationId":"fdc9f945-eb99-4ef9-b2ea-9335f8b285f5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_cm1ViUlvxmQcKlZp0DTicPkN5mbm65Cs","name":"vm_deploy_cm1ViUlvxmQcKlZp0DTicPkN5mbm65Cs","properties":{"templateHash":"251570447220657669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:52:58.5434309Z","duration":"PT0.0000893S","correlationId":"0da30a20-1688-43ce-a150-d4409236a524","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_VvX33xIliIBFFpyef5edusCwzZ1Q1qC7/operationStatuses/08585456111740942950?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_cm1ViUlvxmQcKlZp0DTicPkN5mbm65Cs/operationStatuses/08585040957098540575?api-version=2018-02-01 cache-control: - no-cache content-length: - - '2146' + - '2145' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:48:33 GMT + - Tue, 17 Oct 2023 02:52:59 GMT expires: - '-1' pragma: @@ -2074,7 +2112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -2092,9 +2130,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456111740942950?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040957098540575?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2106,7 +2144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:49:03 GMT + - Tue, 17 Oct 2023 02:53:00 GMT expires: - '-1' pragma: @@ -2134,9 +2172,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456111740942950?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040957098540575?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2148,7 +2186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:49:35 GMT + - Tue, 17 Oct 2023 02:53:30 GMT expires: - '-1' pragma: @@ -2176,51 +2214,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456111740942950?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:50:05 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 --admin-username --admin-password --boot-diagnostics-storage - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456111740942950?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040957098540575?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -2232,7 +2228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:36 GMT + - Tue, 17 Oct 2023 02:54:00 GMT expires: - '-1' pragma: @@ -2260,21 +2256,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_VvX33xIliIBFFpyef5edusCwzZ1Q1qC7","name":"vm_deploy_VvX33xIliIBFFpyef5edusCwzZ1Q1qC7","properties":{"templateHash":"2662288973991472339","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T14:50:09.4772001Z","duration":"PT1M35.9845682S","correlationId":"fdc9f945-eb99-4ef9-b2ea-9335f8b285f5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Resources/deployments/vm_deploy_cm1ViUlvxmQcKlZp0DTicPkN5mbm65Cs","name":"vm_deploy_cm1ViUlvxmQcKlZp0DTicPkN5mbm65Cs","properties":{"templateHash":"251570447220657669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:53:57.2272609Z","duration":"PT58.6839193S","correlationId":"0da30a20-1688-43ce-a150-d4409236a524","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2833' + - '2830' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:37 GMT + - Tue, 17 Oct 2023 02:54:01 GMT expires: - '-1' pragma: @@ -2302,22 +2298,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5c656da0-97fd-4f5b-b8a4-9225112f3eb5\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"0cbb73a0-01bc-4183-bad7-8f2a0795dd9c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm2_OsDisk_1_3e2b07b976be4d898b82662d1ea7e98e\",\r\n + \"Linux\",\r\n \"name\": \"myvm2_OsDisk_1_0f470825f3f7414f80e9e955591de078\",\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_vm_diagnostics000001/providers/Microsoft.Compute/disks/myvm2_OsDisk_1_3e2b07b976be4d898b82662d1ea7e98e\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/disks/myvm2_OsDisk_1_0f470825f3f7414f80e9e955591de078\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -2325,22 +2322,21 @@ interactions: []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": - {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:50:12+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm2_OsDisk_1_3e2b07b976be4d898b82662d1ea7e98e\",\r\n + \ }\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.2.47\",\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\": + \"2023-10-17T02:53:57+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm2_OsDisk_1_0f470825f3f7414f80e9e955591de078\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:49:02.7246375+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:53:23.4213168+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": - {\r\n \"consoleScreenshotBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm2-5c656da0-97fd-4f5b-b8a4-9225112f3eb5/myvm2.5c656da0-97fd-4f5b-b8a4-9225112f3eb5.screenshot.bmp\",\r\n - \ \"serialConsoleLogBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm2-5c656da0-97fd-4f5b-b8a4-9225112f3eb5/myvm2.5c656da0-97fd-4f5b-b8a4-9225112f3eb5.serialconsole.log\"\r\n + {\r\n \"consoleScreenshotBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm2-0cbb73a0-01bc-4183-bad7-8f2a0795dd9c/myvm2.0cbb73a0-01bc-4183-bad7-8f2a0795dd9c.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://clitestbootdiag000002.blob.core.windows.net/bootdiagnostics-myvm2-0cbb73a0-01bc-4183-bad7-8f2a0795dd9c/myvm2.0cbb73a0-01bc-4183-bad7-8f2a0795dd9c.serialconsole.log\"\r\n \ },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:50:07.3966201+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:53:52.7654516+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}" @@ -2348,11 +2344,11 @@ interactions: cache-control: - no-cache content-length: - - '3393' + - '3408' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:38 GMT + - Tue, 17 Oct 2023 02:54:03 GMT expires: - '-1' pragma: @@ -2369,7 +2365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3881,Microsoft.Compute/LowCostGet30Min;30908 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -2377,7 +2373,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2387,18 +2383,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic\",\r\n - \ \"etag\": \"W/\\\"3568e36d-cb79-432d-9b59-e3c2743ca1c6\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2ea5ad75-9ee5-4f75-be36-c7384e75f417\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigmyvm2\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic/ipConfigurations/ipconfigmyvm2\",\r\n - \ \"etag\": \"W/\\\"3568e36d-cb79-432d-9b59-e3c2743ca1c6\\\"\",\r\n + \ \"etag\": \"W/\\\"0fae67de-2f28-49c8-b544-dfc813b1f2f4\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"fb7c9d40-1013-416b-b027-d43618818823\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigmyvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic/ipConfigurations/ipconfigmyvm2\",\r\n + \ \"etag\": \"W/\\\"0fae67de-2f28-49c8-b544-dfc813b1f2f4\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2407,12 +2402,13 @@ 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\": - \"a3ikfeb0hecuhm535s2o0uxnif.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-37-76-E1\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"og3myqjl0ede1jkuttapfd2cxg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-02-B2-97\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkSecurityGroups/myvm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -2421,9 +2417,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:39 GMT + - Tue, 17 Oct 2023 02:54:05 GMT etag: - - W/"3568e36d-cb79-432d-9b59-e3c2743ca1c6" + - W/"0fae67de-2f28-49c8-b544-dfc813b1f2f4" expires: - '-1' pragma: @@ -2440,7 +2436,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e697942-c8db-44e6-a3d7-6ba7582b1bc9 + - a1170b31-b784-4a0c-a661-b31fdc43785f status: code: 200 message: OK @@ -2448,7 +2444,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2458,16 +2454,16 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --boot-diagnostics-storage User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/publicIPAddresses/myvm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"feb4cdc8-7360-4bd8-b99c-ee56ec8c2eed\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cf2a240f-e684-4cf7-9959-6ebb836602d7\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"092b8d48-d7c4-46d5-95de-ccd7b8b60c32\",\r\n - \ \"ipAddress\": \"20.245.55.192\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7e0b0958-665f-4116-971d-13682d59daee\",\r\n + \ \"ipAddress\": \"20.245.102.54\",\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_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic/ipConfigurations/ipconfigmyvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2480,9 +2476,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:40 GMT + - Tue, 17 Oct 2023 02:54:06 GMT etag: - - W/"feb4cdc8-7360-4bd8-b99c-ee56ec8c2eed" + - W/"cf2a240f-e684-4cf7-9959-6ebb836602d7" expires: - '-1' pragma: @@ -2499,7 +2495,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0eb81c72-04f2-4728-9a2a-788d8239a615 + - 65230fad-234d-4176-bdf2-72cadac7e6e1 status: code: 200 message: OK @@ -2517,22 +2513,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5c656da0-97fd-4f5b-b8a4-9225112f3eb5\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"0cbb73a0-01bc-4183-bad7-8f2a0795dd9c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm2_OsDisk_1_3e2b07b976be4d898b82662d1ea7e98e\",\r\n + \"Linux\",\r\n \"name\": \"myvm2_OsDisk_1_0f470825f3f7414f80e9e955591de078\",\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_vm_diagnostics000001/providers/Microsoft.Compute/disks/myvm2_OsDisk_1_3e2b07b976be4d898b82662d1ea7e98e\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Compute/disks/myvm2_OsDisk_1_0f470825f3f7414f80e9e955591de078\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm2\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -2540,16 +2537,16 @@ interactions: []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_diagnostics000001/providers/Microsoft.Network/networkInterfaces/myvm2VMNic\"}]},\r\n \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://clitestbootdiag000002.blob.core.windows.net/\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1761' + - '1776' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:40 GMT + - Tue, 17 Oct 2023 02:54:08 GMT expires: - '-1' pragma: @@ -2566,7 +2563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3879,Microsoft.Compute/LowCostGet30Min;30906 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml index d6369d305d3..68b7d319a8e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '332' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:37:58 GMT + - Tue, 17 Oct 2023 02:40:47 GMT expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -59,26 +59,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -101,7 +102,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -112,19 +113,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 14:37:58 GMT + - Tue, 17 Oct 2023 02:40:47 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 14:42:58 GMT + - Tue, 17 Oct 2023 02:45:47 GMT source-age: - - '242' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -138,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 2cf661e32cdc4aa345ef9d11de68c970a014fd5f + - 73fb736b269c2a1e2b967b4d0cfa7f115c62ecd1 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1227-QPG + - cache-qpg1240-QPG x-timer: - - S1655995079.806328,VS0,VE1 + - S1697510448.559033,VS0,VE145 x-xss-protection: - 1; mode=block status: @@ -166,23 +169,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:37:59 GMT + - Tue, 17 Oct 2023 02:40:50 GMT expires: - '-1' pragma: @@ -199,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -217,28 +220,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:38:01 GMT + - Tue, 17 Oct 2023 02:40:51 GMT expires: - '-1' pragma: @@ -255,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73994 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -263,7 +272,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -273,7 +282,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -287,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:38:01 GMT + - Tue, 17 Oct 2023 02:40:51 GMT expires: - '-1' pragma: @@ -330,7 +339,7 @@ interactions: "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": - "7.5", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": + "8_5-gen2", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "empty", "diskSizeGB": 2}]}, "osProfile": {"computerName": "vm1", "adminUsername": "centosadmin", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, @@ -345,21 +354,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3219' + - '3224' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_is0ZoVMWd1WwnQi817b8gPbRtMt67hlX","name":"vm_deploy_is0ZoVMWd1WwnQi817b8gPbRtMt67hlX","properties":{"templateHash":"14539390857783879175","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:38:07.440673Z","duration":"PT0.0004729S","correlationId":"d4a1a257-171b-4c81-9f64-ba9314006468","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bTbcxqwodkV1F66Oz4IgP3zorq0lNUdB","name":"vm_deploy_bTbcxqwodkV1F66Oz4IgP3zorq0lNUdB","properties":{"templateHash":"6301724677291542671","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:41:00.1632952Z","duration":"PT0.0006493S","correlationId":"dca762a9-a17d-4fac-80d3-f2547bcbf341","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_is0ZoVMWd1WwnQi817b8gPbRtMt67hlX/operationStatuses/08585456118005099495?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bTbcxqwodkV1F66Oz4IgP3zorq0lNUdB/operationStatuses/08585040964284333164?api-version=2018-02-01 cache-control: - no-cache content-length: @@ -367,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:38:07 GMT + - Tue, 17 Oct 2023 02:41:00 GMT expires: - '-1' pragma: @@ -377,7 +386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -395,9 +404,51 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964284333164?api-version=2018-02-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:41:01 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 --admin-username --admin-password --authentication-type --data-disk-sizes-gb + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456118005099495?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964284333164?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -409,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:38:38 GMT + - Tue, 17 Oct 2023 02:41:32 GMT expires: - '-1' pragma: @@ -437,9 +488,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456118005099495?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964284333164?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -451,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:09 GMT + - Tue, 17 Oct 2023 02:42:03 GMT expires: - '-1' pragma: @@ -479,9 +530,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456118005099495?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964284333164?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -493,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:40 GMT + - Tue, 17 Oct 2023 02:42:33 GMT expires: - '-1' pragma: @@ -521,21 +572,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_is0ZoVMWd1WwnQi817b8gPbRtMt67hlX","name":"vm_deploy_is0ZoVMWd1WwnQi817b8gPbRtMt67hlX","properties":{"templateHash":"14539390857783879175","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T14:39:38.8153787Z","duration":"PT1M31.3751786S","correlationId":"d4a1a257-171b-4c81-9f64-ba9314006468","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bTbcxqwodkV1F66Oz4IgP3zorq0lNUdB","name":"vm_deploy_bTbcxqwodkV1F66Oz4IgP3zorq0lNUdB","properties":{"templateHash":"6301724677291542671","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:42:07.3345588Z","duration":"PT1M7.1719129S","correlationId":"dca762a9-a17d-4fac-80d3-f2547bcbf341","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3100' + - '3098' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:40 GMT + - Tue, 17 Oct 2023 02:42:33 GMT expires: - '-1' pragma: @@ -563,51 +614,51 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1befbd2b-3b86-4ce0-bf13-3acefb97d205\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"df0eb712-2a72-459c-8012-14c22557ccd4\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2d477df679504bfbac0fde1b16f69d87\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.8.0.6\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:39:38+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:42:21+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:38:28.5036839+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:24.2861154+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_2d477df679504bfbac0fde1b16f69d87\",\r\n \"statuses\": + \"vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:38:28.5036839+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:24.2861154+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:39:36.9413559+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:42:03.9741597+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}" @@ -615,11 +666,11 @@ interactions: cache-control: - no-cache content-length: - - '3554' + - '3559' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:41 GMT + - Tue, 17 Oct 2023 02:42:36 GMT expires: - '-1' pragma: @@ -636,7 +687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3894,Microsoft.Compute/LowCostGet30Min;30934 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -644,7 +695,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -654,18 +705,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"cef8a1b2-0cbb-413b-9eb4-21dde6ab3eb5\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b5ee47d9-0b5a-4557-a923-b6a4558ede54\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"cef8a1b2-0cbb-413b-9eb4-21dde6ab3eb5\\\"\",\r\n + \ \"etag\": \"W/\\\"9a9a9e6b-74e2-432b-be18-2830b8464c54\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"43cf6532-8022-4f85-8321-85154d8ed21e\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n + \ \"etag\": \"W/\\\"9a9a9e6b-74e2-432b-be18-2830b8464c54\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -674,12 +724,13 @@ 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\": - \"5mjvhbrwupjezf455hqopl5vqc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5B-6B-05\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"oihqxh0rtnkenhbyrdticj2xbh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-02-B1-47\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -688,9 +739,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:42 GMT + - Tue, 17 Oct 2023 02:42:38 GMT etag: - - W/"cef8a1b2-0cbb-413b-9eb4-21dde6ab3eb5" + - W/"9a9a9e6b-74e2-432b-be18-2830b8464c54" expires: - '-1' pragma: @@ -707,7 +758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c030e7e6-7d9c-4efe-894c-cbf9fe55db7f + - 8f997fea-ae87-4e1b-8b8e-ae26df18a730 status: code: 200 message: OK @@ -715,7 +766,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -725,17 +776,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"218a6c98-abfb-4c46-a4d9-c9058bd63163\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"16ca6b9f-2ade-43d2-a4ee-71ca9ce5eab9\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"054c4e9d-5478-4b01-b3e5-cd5eba406661\",\r\n - \ \"ipAddress\": \"20.245.48.37\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"049c988b-e431-4792-8164-e2036f385eaa\",\r\n + \ \"ipAddress\": \"20.253.201.133\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -743,13 +794,13 @@ interactions: cache-control: - no-cache content-length: - - '878' + - '880' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:42 GMT + - Tue, 17 Oct 2023 02:42:40 GMT etag: - - W/"218a6c98-abfb-4c46-a4d9-c9058bd63163" + - W/"16ca6b9f-2ade-43d2-a4ee-71ca9ce5eab9" expires: - '-1' pragma: @@ -759,14 +810,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eea48b0f-8e8d-4a2c-aaf5-a687001fd6b2 + - 8a90d95b-2e41-47f8-9947-1a72a50bb5ff status: code: 200 message: OK @@ -784,42 +831,43 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1befbd2b-3b86-4ce0-bf13-3acefb97d205\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"df0eb712-2a72-459c-8012-14c22557ccd4\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2d477df679504bfbac0fde1b16f69d87\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2021' + - '2026' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:43 GMT + - Tue, 17 Oct 2023 02:42:42 GMT expires: - '-1' pragma: @@ -836,7 +884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3892,Microsoft.Compute/LowCostGet30Min;30932 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -854,12 +902,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606?api-version=2017-03-30 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -870,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:45 GMT + - Tue, 17 Oct 2023 02:42:43 GMT expires: - '-1' pragma: @@ -898,31 +946,31 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\",\r\n + string: "{\r\n \"name\": \"vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n - \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T14:38:27.0876204+00:00\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n + \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:41:22.8974005+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1040' + - '1046' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:45 GMT + - Tue, 17 Oct 2023 02:42:44 GMT expires: - '-1' pragma: @@ -939,7 +987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4952,Microsoft.Compute/LowCostGet30Min;39528 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119947 status: code: 200 message: OK @@ -957,21 +1005,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:42Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:47 GMT + - Tue, 17 Oct 2023 02:42:44 GMT expires: - '-1' pragma: @@ -987,7 +1035,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606"}}}' headers: Accept: - application/json @@ -1004,32 +1052,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: body: - string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n - \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": - \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\r\n \"osState\": \"Generalized\"\r\n }\r\n}" + string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50d717f8-c1a6-4de0-a6e7-d44b75015394?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '489' + - '616' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:51 GMT + - Tue, 17 Oct 2023 02:42:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50d717f8-c1a6-4de0-a6e7-d44b75015394?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1040,9 +1088,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -1060,13 +1108,13 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50d717f8-c1a6-4de0-a6e7-d44b75015394?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:39:52.0724346+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:49.3529576+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"50d717f8-c1a6-4de0-a6e7-d44b75015394\"\r\n}" headers: cache-control: - no-cache @@ -1075,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:39:54 GMT + - Tue, 17 Oct 2023 02:42:49 GMT expires: - '-1' pragma: @@ -1092,7 +1140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399972 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399976 status: code: 200 message: OK @@ -1110,22 +1158,24 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50d717f8-c1a6-4de0-a6e7-d44b75015394?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:39:52.0724346+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:49.3529576+00:00\",\r\n \"endTime\": + \"2023-10-17T02:42:50.134244+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"oSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V2\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"},\"diskSizeGB\":30,\"timeCreated\":\"2023-10-17T02:42:49.3529576+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"50d717f8-c1a6-4de0-a6e7-d44b75015394\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '901' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:04 GMT + - Tue, 17 Oct 2023 02:42:59 GMT expires: - '-1' pragma: @@ -1142,7 +1192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399970 + - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399974 status: code: 200 message: OK @@ -1160,24 +1210,29 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:39:52.0724346+00:00\",\r\n \"endTime\": - \"2022-06-23T14:40:13.7444246+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"oSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"},\"diskSizeGB\":30,\"timeCreated\":\"2022-06-23T14:39:52.0724346+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n - \ },\r\n \"name\": \"4d7af3e8-2b43-4e29-8730-13a7a4d9e9b9\"\r\n}" + string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n + \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:42:49.3529576+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '902' + - '778' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:35 GMT + - Tue, 17 Oct 2023 02:42:59 GMT expires: - '-1' pragma: @@ -1194,7 +1249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399968 + - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119944 status: code: 200 message: OK @@ -1202,17 +1257,17 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - snapshot create + - disk create Connection: - keep-alive ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: @@ -1222,8 +1277,8 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T14:39:52.0724346+00:00\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_789ae56657744ed0a7dc72a7172b8606\"\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:42:49.3529576+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1234,7 +1289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:35 GMT + - Tue, 17 Oct 2023 02:43:01 GMT expires: - '-1' pragma: @@ -1251,7 +1306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4950,Microsoft.Compute/LowCostGet30Min;39606 + - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119943 status: code: 200 message: OK @@ -1269,51 +1324,37 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b06c739a9ae54c14ad77eb60aaeee5f4\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T14:39:52.0724346+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n - \ }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:42Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '778' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:36 GMT + - Tue, 17 Oct 2023 02:43: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/LowCostGet3Min;4949,Microsoft.Compute/LowCostGet30Min;39605 status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot"}}}' headers: Accept: - application/json @@ -1323,82 +1364,87 @@ interactions: - disk create Connection: - keep-alive + Content-Length: + - '279' + Content-Type: + - application/json ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2017-03-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"name\": \"sDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42f9e4be-093a-45ba-bdcf-9ffa3c3fa516?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '266' + - '567' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:36 GMT + - Tue, 17 Oct 2023 02:43:08 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42f9e4be-093a-45ba-bdcf-9ffa3c3fa516?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateDisks3Min;2999,Microsoft.Compute/CreateUpdateDisks30Min;24996 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot"}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - disk create Connection: - keep-alive - Content-Length: - - '279' - Content-Type: - - application/json ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2017-03-30 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42f9e4be-093a-45ba-bdcf-9ffa3c3fa516?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"sDisk\",\r\n \"location\": \"westus\",\r\n \"tags\": - {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\r\n \"osState\": \"Generalized\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:43:08.2437707+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"42f9e4be-093a-45ba-bdcf-9ffa3c3fa516\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/431f930a-0db4-4fc7-b0c3-d6e90832bce2?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '476' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:42 GMT + - Tue, 17 Oct 2023 02:43:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/431f930a-0db4-4fc7-b0c3-d6e90832bce2?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1406,15 +1452,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399973 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1429,33 +1477,24 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/431f930a-0db4-4fc7-b0c3-d6e90832bce2?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42f9e4be-093a-45ba-bdcf-9ffa3c3fa516?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:40:42.2601934+00:00\",\r\n \"endTime\": - \"2022-06-23T14:40:42.7758557+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"sDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"timeCreated\": \"2022-06-23T14:40:42.2758287+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n - \ \"name\": \"431f930a-0db4-4fc7-b0c3-d6e90832bce2\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:43:08.2437707+00:00\",\r\n \"endTime\": + \"2023-10-17T02:43:08.9156493+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"sDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V2\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"timeCreated\":\"2023-10-17T02:43:08.2437707+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"42f9e4be-093a-45ba-bdcf-9ffa3c3fa516\"\r\n}" headers: cache-control: - no-cache content-length: - - '1045' + - '899' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:44 GMT + - Tue, 17 Oct 2023 02:43:18 GMT expires: - '-1' pragma: @@ -1472,7 +1511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399967 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399971 status: code: 200 message: OK @@ -1490,7 +1529,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2017-03-30 response: @@ -1501,7 +1540,7 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T14:40:42.2758287+00:00\",\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:43:08.2437707+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1512,7 +1551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:44 GMT + - Tue, 17 Oct 2023 02:43:19 GMT expires: - '-1' pragma: @@ -1529,7 +1568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4945,Microsoft.Compute/LowCostGet30Min;39601 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119940 status: code: 200 message: OK @@ -1547,12 +1586,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_2d477df679504bfbac0fde1b16f69d87?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83?api-version=2017-03-30 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_2d477df679504bfbac0fde1b16f69d87'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1563,7 +1602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:46 GMT + - Tue, 17 Oct 2023 02:43:20 GMT expires: - '-1' pragma: @@ -1591,18 +1630,18 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"vm1_disk2_2d477df679504bfbac0fde1b16f69d87\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\",\r\n + string: "{\r\n \"name\": \"vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": - \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T14:38:27.0876204+00:00\",\r\n + \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:41:22.8974005+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n \ }\r\n}" headers: @@ -1613,7 +1652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:47 GMT + - Tue, 17 Oct 2023 02:43:20 GMT expires: - '-1' pragma: @@ -1630,7 +1669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4943,Microsoft.Compute/LowCostGet30Min;39599 + - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119939 status: code: 200 message: OK @@ -1648,21 +1687,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:42Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:47 GMT + - Tue, 17 Oct 2023 02:43:21 GMT expires: - '-1' pragma: @@ -1678,7 +1717,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83"}}}' headers: Accept: - application/json @@ -1695,31 +1734,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: body: - string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n - \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": - {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true\r\n }\r\n}" + string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9c0c2de-3adb-42c8-80a8-ef9118051860?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/041360b8-937e-4579-8da1-925687039a9f?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '431' + - '613' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:52 GMT + - Tue, 17 Oct 2023 02:43:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9c0c2de-3adb-42c8-80a8-ef9118051860?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/041360b8-937e-4579-8da1-925687039a9f?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1730,9 +1770,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -1750,31 +1790,22 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9c0c2de-3adb-42c8-80a8-ef9118051860?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/041360b8-937e-4579-8da1-925687039a9f?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:40:52.6040304+00:00\",\r\n \"endTime\": - \"2022-06-23T14:40:53.7758884+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dSnapshot\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T14:40:52.6040304+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"e9c0c2de-3adb-42c8-80a8-ef9118051860\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:43:26.2909286+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"041360b8-937e-4579-8da1-925687039a9f\"\r\n}" headers: cache-control: - no-cache content-length: - - '975' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:55 GMT + - Tue, 17 Oct 2023 02:43:26 GMT expires: - '-1' pragma: @@ -1791,7 +1822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399965 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399970 status: code: 200 message: OK @@ -1809,7 +1840,59 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/041360b8-937e-4579-8da1-925687039a9f?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:43:26.2909286+00:00\",\r\n \"endTime\": + \"2023-10-17T02:43:26.8846615+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"},\"diskSizeGB\":2,\"timeCreated\":\"2023-10-17T02:43:26.2909286+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"041360b8-937e-4579-8da1-925687039a9f\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '857' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:43:36 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;49991,Microsoft.Compute/GetOperation30Min;399968 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: @@ -1818,8 +1901,8 @@ interactions: \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T14:40:52.6040304+00:00\",\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:43:26.2909286+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1830,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:55 GMT + - Tue, 17 Oct 2023 02:43:37 GMT expires: - '-1' pragma: @@ -1847,7 +1930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4939,Microsoft.Compute/LowCostGet30Min;39595 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119936 status: code: 200 message: OK @@ -1865,7 +1948,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: @@ -1874,8 +1957,8 @@ interactions: \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2d477df679504bfbac0fde1b16f69d87\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T14:40:52.6040304+00:00\",\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2f6f2eb0c36c407590120e99308d9f83\"\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:43:26.2909286+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1886,7 +1969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:56 GMT + - Tue, 17 Oct 2023 02:43:38 GMT expires: - '-1' pragma: @@ -1903,7 +1986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4938,Microsoft.Compute/LowCostGet30Min;39594 + - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119935 status: code: 200 message: OK @@ -1921,21 +2004,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:42Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:40:56 GMT + - Tue, 17 Oct 2023 02:43:38 GMT expires: - '-1' pragma: @@ -1968,32 +2051,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"dDisk\",\r\n \"location\": \"westus\",\r\n \"tags\": - {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true\r\n }\r\n}" + string: "{\r\n \"name\": \"dDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/370b4e7c-c69b-41b4-8f1a-24bdb8c448c9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5c6c1840-e27c-443a-83b7-51e1f3beff0d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '421' + - '567' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:00 GMT + - Tue, 17 Oct 2023 02:43:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/370b4e7c-c69b-41b4-8f1a-24bdb8c448c9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5c6c1840-e27c-443a-83b7-51e1f3beff0d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -2004,9 +2087,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;2998,Microsoft.Compute/CreateUpdateDisks30Min;24995 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -2024,32 +2107,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/370b4e7c-c69b-41b4-8f1a-24bdb8c448c9?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5c6c1840-e27c-443a-83b7-51e1f3beff0d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T14:41:00.338425+00:00\",\r\n \"endTime\": - \"2022-06-23T14:41:00.8540346+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"timeCreated\": \"2022-06-23T14:41:00.3540526+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n - \ \"name\": \"370b4e7c-c69b-41b4-8f1a-24bdb8c448c9\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:43:44.3078569+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5c6c1840-e27c-443a-83b7-51e1f3beff0d\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:43:44 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;49990,Microsoft.Compute/GetOperation30Min;399967 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5c6c1840-e27c-443a-83b7-51e1f3beff0d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:43:44.3078569+00:00\",\r\n \"endTime\": + \"2023-10-17T02:43:44.9015736+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"},\"diskSizeGB\":2,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"timeCreated\":\"2023-10-17T02:43:44.3078569+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"5c6c1840-e27c-443a-83b7-51e1f3beff0d\"\r\n}" headers: cache-control: - no-cache content-length: - - '988' + - '857' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:02 GMT + - Tue, 17 Oct 2023 02:43:54 GMT expires: - '-1' pragma: @@ -2066,7 +2191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399959 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399965 status: code: 200 message: OK @@ -2084,7 +2209,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2017-03-30 response: @@ -2094,7 +2219,7 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T14:41:00.3540526+00:00\",\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:43:44.3078569+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -2105,7 +2230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:03 GMT + - Tue, 17 Oct 2023 02:43:55 GMT expires: - '-1' pragma: @@ -2122,7 +2247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4944,Microsoft.Compute/LowCostGet30Min;39590 + - Microsoft.Compute/LowCostGet3Min;14978,Microsoft.Compute/LowCostGet30Min;119932 status: code: 200 message: OK @@ -2141,21 +2266,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:37:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:42Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:03 GMT + - Tue, 17 Oct 2023 02:43:56 GMT expires: - '-1' pragma: @@ -2173,7 +2298,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2184,24 +2309,24 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"2844a0bd-124a-4abf-b483-8d806b108efa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"061fec8e-9a0c-43a9-be79-7ab9edec0ba8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"865313fb-a336-4cd2-97df-f9e0e7aff582\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9f0b0f72-9b51-4654-9c38-88e68127970f\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"2844a0bd-124a-4abf-b483-8d806b108efa\\\"\",\r\n + \ \"etag\": \"W/\\\"061fec8e-9a0c-43a9-be79-7ab9edec0ba8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGKWPRRSUWRS2LGTODRIVM2ZYFURV3ZTDCAC4YWBIC7JFNP3OG3QOG4KAMXM45Y4JGI/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -2210,11 +2335,11 @@ interactions: cache-control: - no-cache content-length: - - '1535' + - '1594' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:05 GMT + - Tue, 17 Oct 2023 02:43:58 GMT expires: - '-1' pragma: @@ -2231,7 +2356,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8808f688-ae46-4ff2-8fc3-61d60664213a + - 74a82391-7e10-4a32-9ae1-2aded41cec67 status: code: 200 message: OK @@ -2279,23 +2404,23 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JEERKZzbwD4rMlQCnXySoiUdDHUGbjPb","name":"vm_deploy_JEERKZzbwD4rMlQCnXySoiUdDHUGbjPb","properties":{"templateHash":"3352003927044487470","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:41:09.1008165Z","duration":"PT0.000191S","correlationId":"155809b2-fe6d-4a1b-8ad6-26f13e43cde4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_P5RXozIiEdr3a5G1EoM7hkXcffWmyTmW","name":"vm_deploy_P5RXozIiEdr3a5G1EoM7hkXcffWmyTmW","properties":{"templateHash":"2420903118436064593","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:44:07.1699381Z","duration":"PT0.0002048S","correlationId":"a648a0fd-a7af-46c5-8d73-63c463cb8713","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JEERKZzbwD4rMlQCnXySoiUdDHUGbjPb/operationStatuses/08585456116186706440?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_P5RXozIiEdr3a5G1EoM7hkXcffWmyTmW/operationStatuses/08585040962420583731?api-version=2018-02-01 cache-control: - no-cache content-length: - - '2008' + - '2009' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:09 GMT + - Tue, 17 Oct 2023 02:44:08 GMT expires: - '-1' pragma: @@ -2305,7 +2430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -2324,9 +2449,9 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456116186706440?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040962420583731?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2338,7 +2463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:41:40 GMT + - Tue, 17 Oct 2023 02:44:08 GMT expires: - '-1' pragma: @@ -2367,9 +2492,52 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456116186706440?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040962420583731?api-version=2018-02-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:44:38 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 --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb + --os-type + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040962420583731?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -2381,7 +2549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:11 GMT + - Tue, 17 Oct 2023 02:45:11 GMT expires: - '-1' pragma: @@ -2410,12 +2578,12 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JEERKZzbwD4rMlQCnXySoiUdDHUGbjPb","name":"vm_deploy_JEERKZzbwD4rMlQCnXySoiUdDHUGbjPb","properties":{"templateHash":"3352003927044487470","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T14:41:49.9590392Z","duration":"PT40.8584137S","correlationId":"155809b2-fe6d-4a1b-8ad6-26f13e43cde4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_P5RXozIiEdr3a5G1EoM7hkXcffWmyTmW","name":"vm_deploy_P5RXozIiEdr3a5G1EoM7hkXcffWmyTmW","properties":{"templateHash":"2420903118436064593","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:44:51.2702961Z","duration":"PT44.1005628S","correlationId":"a648a0fd-a7af-46c5-8d73-63c463cb8713","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -2424,7 +2592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:11 GMT + - Tue, 17 Oct 2023 02:45:12 GMT expires: - '-1' pragma: @@ -2453,24 +2621,25 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"34664644-bff4-496c-873e-cc28c1d0ecc1\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"608854cb-5043-4392-8cb9-ad17b38bf922\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_fb00e2b67b144bd4801c8d032ab078f1\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_d087e57486644f2db8ae3418317c9756\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_fb00e2b67b144bd4801c8d032ab078f1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_d087e57486644f2db8ae3418317c9756\"\r\n \ },\r\n \"diskSizeGB\": 3\r\n },\r\n {\r\n \ \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": @@ -2478,29 +2647,29 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2022-06-23T14:42:13+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"sDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-06-23T14:41:22.8321724+00:00\"\r\n }\r\n ]\r\n - \ },\r\n {\r\n \"name\": \"vm2_disk2_fb00e2b67b144bd4801c8d032ab078f1\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"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\": + \"2023-10-17T02:45:14+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"sDisk\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:41:22.8321724+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:44:27.0698596+00:00\"\r\n + \ }\r\n ]\r\n },\r\n {\r\n \"name\": + \"vm2_disk2_d087e57486644f2db8ae3418317c9756\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-17T02:44:27.0698596+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"dDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-06-23T14:41:22.8321724+00:00\"\r\n }\r\n ]\r\n + \"2023-10-17T02:44:27.0698596+00:00\"\r\n }\r\n ]\r\n \ }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": - \"Provisioning succeeded\",\r\n \"time\": \"2022-06-23T14:41:45.9415608+00:00\"\r\n + \"Provisioning succeeded\",\r\n \"time\": \"2023-10-17T02:44:45.4450859+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}" @@ -2512,7 +2681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:12 GMT + - Tue, 17 Oct 2023 02:45:14 GMT expires: - '-1' pragma: @@ -2529,7 +2698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3884,Microsoft.Compute/LowCostGet30Min;30987 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -2537,7 +2706,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2548,18 +2717,17 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"8d7df4c1-e52e-4bcb-bd92-e31b99f0f8a2\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"22191f24-3099-44c8-8c95-a5de9718e32a\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"8d7df4c1-e52e-4bcb-bd92-e31b99f0f8a2\\\"\",\r\n + \ \"etag\": \"W/\\\"ae806072-b1d9-4649-8c9b-0a7dd0e63fec\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"73778d55-688a-42fc-a9fa-f7ad59df1df5\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n + \ \"etag\": \"W/\\\"ae806072-b1d9-4649-8c9b-0a7dd0e63fec\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2568,12 +2736,13 @@ 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\": - \"5mjvhbrwupjezf455hqopl5vqc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-73-65\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"oihqxh0rtnkenhbyrdticj2xbh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-04-1A-DC\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -2582,9 +2751,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:14 GMT + - Tue, 17 Oct 2023 02:45:15 GMT etag: - - W/"8d7df4c1-e52e-4bcb-bd92-e31b99f0f8a2" + - W/"ae806072-b1d9-4649-8c9b-0a7dd0e63fec" expires: - '-1' pragma: @@ -2601,7 +2770,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d5dc361-93ea-4754-a321-0286b6be89a6 + - 47e68ac3-2adb-464e-9d61-ef7ecc0ecdb7 status: code: 200 message: OK @@ -2609,7 +2778,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2620,16 +2789,16 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"cf368511-72ad-4683-96d1-e2c70361b9a1\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"86d5227e-3081-4e01-8011-29d043652c04\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"10b16b92-b1f8-464f-975b-6faa35608805\",\r\n - \ \"ipAddress\": \"20.245.51.184\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e6c454a0-f5e0-4ca5-9c54-e73db4a15918\",\r\n + \ \"ipAddress\": \"20.253.207.87\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2642,9 +2811,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:14 GMT + - Tue, 17 Oct 2023 02:45:17 GMT etag: - - W/"cf368511-72ad-4683-96d1-e2c70361b9a1" + - W/"86d5227e-3081-4e01-8011-29d043652c04" expires: - '-1' pragma: @@ -2661,7 +2830,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63820519-2423-4e9c-bb04-dbde04b4e25e + - 22d37495-df24-4f52-9cde-fb5451c94411 status: code: 200 message: OK @@ -2679,32 +2848,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"34664644-bff4-496c-873e-cc28c1d0ecc1\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"608854cb-5043-4392-8cb9-ad17b38bf922\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_fb00e2b67b144bd4801c8d032ab078f1\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_d087e57486644f2db8ae3418317c9756\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_fb00e2b67b144bd4801c8d032ab078f1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_d087e57486644f2db8ae3418317c9756\"\r\n \ },\r\n \"diskSizeGB\": 3\r\n },\r\n {\r\n \ \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -2713,7 +2883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:15 GMT + - Tue, 17 Oct 2023 02:45:18 GMT expires: - '-1' pragma: @@ -2730,7 +2900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3881,Microsoft.Compute/LowCostGet30Min;30984 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_none_options.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_none_options.yaml index 5e3cb244cb8..4a1a099845c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_none_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_create_none_options.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -17,26 +17,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -59,7 +60,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -70,19 +71,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 14:42:53 GMT + - Tue, 17 Oct 2023 02:49:02 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 14:47:53 GMT + - Tue, 17 Oct 2023 02:54:02 GMT source-age: - - '236' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -96,15 +99,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e7d29e8d651d5e237365e2577cd5fcb4291592e8 + - b05e781df7e880e6d1d09942e58406661646fe46 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1242-QPG + - cache-qpg1247-QPG x-timer: - - S1655995373.352642,VS0,VE1 + - S1697510943.660084,VS0,VE255 x-xss-protection: - 1; mode=block status: @@ -125,23 +128,23 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:54 GMT + - Tue, 17 Oct 2023 02:49:03 GMT expires: - '-1' pragma: @@ -177,30 +180,34 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:55 GMT + - Tue, 17 Oct 2023 02:49:03 GMT expires: - '-1' pragma: @@ -225,7 +232,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -236,7 +243,7 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -250,7 +257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:42:56 GMT + - Tue, 17 Oct 2023 02:49:04 GMT expires: - '-1' pragma: @@ -281,10 +288,10 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": - "10", "version": "latest"}}, "osProfile": {"computerName": "nooptvm", "adminUsername": - "user11", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + null}}, "imageReference": {"publisher": "Debian", "offer": "debian-11", "sku": + "11-backports-gen2", "version": "latest"}}, "osProfile": {"computerName": "nooptvm", + "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n", "path": "/home/user11/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: @@ -297,30 +304,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2814' + - '2829' Content-Type: - application/json ParameterSetName: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_0Ky3ST6dTY2UZ6CalYEyMDgsTAs0Akeo","name":"vm_deploy_0Ky3ST6dTY2UZ6CalYEyMDgsTAs0Akeo","properties":{"templateHash":"7698707448727154851","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:43:02.1470311Z","duration":"PT0.0008156S","correlationId":"c4f4cba2-784d-4dce-8a49-479c12251af6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"nooptvmVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"nooptvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_XHPYQjKBd9Cm5y12Rb5XBJDiqYq08VW0","name":"vm_deploy_XHPYQjKBd9Cm5y12Rb5XBJDiqYq08VW0","properties":{"templateHash":"14383001507429850840","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:49:12.4937345Z","duration":"PT0.0005321S","correlationId":"1c9688b4-f52f-4880-a9d9-4adae24d53c0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"nooptvmVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"nooptvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_0Ky3ST6dTY2UZ6CalYEyMDgsTAs0Akeo/operationStatuses/08585456115056705044?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_XHPYQjKBd9Cm5y12Rb5XBJDiqYq08VW0/operationStatuses/08585040959363159494?api-version=2018-02-01 cache-control: - no-cache content-length: - - '1837' + - '1838' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:43:05 GMT + - Tue, 17 Oct 2023 02:49:13 GMT expires: - '-1' pragma: @@ -330,7 +337,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -349,21 +356,21 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456115056705044?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959363159494?api-version=2018-02-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:43:36 GMT + - Tue, 17 Oct 2023 02:49:13 GMT expires: - '-1' pragma: @@ -392,9 +399,9 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456115056705044?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959363159494?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -406,7 +413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:07 GMT + - Tue, 17 Oct 2023 02:49:44 GMT expires: - '-1' pragma: @@ -435,9 +442,9 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456115056705044?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040959363159494?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -449,7 +456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:37 GMT + - Tue, 17 Oct 2023 02:50:14 GMT expires: - '-1' pragma: @@ -478,21 +485,21 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_0Ky3ST6dTY2UZ6CalYEyMDgsTAs0Akeo","name":"vm_deploy_0Ky3ST6dTY2UZ6CalYEyMDgsTAs0Akeo","properties":{"templateHash":"7698707448727154851","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T14:44:15.1582167Z","duration":"PT1M13.0120012S","correlationId":"c4f4cba2-784d-4dce-8a49-479c12251af6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"nooptvmVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"nooptvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Resources/deployments/vm_deploy_XHPYQjKBd9Cm5y12Rb5XBJDiqYq08VW0","name":"vm_deploy_XHPYQjKBd9Cm5y12Rb5XBJDiqYq08VW0","properties":{"templateHash":"14383001507429850840","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:50:14.4848474Z","duration":"PT1M1.991645S","correlationId":"1c9688b4-f52f-4880-a9d9-4adae24d53c0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"nooptvmVNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"nooptvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"nooptvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/virtualNetworks/nooptvmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '2383' + - '2382' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:37 GMT + - Tue, 17 Oct 2023 02:50:14 GMT expires: - '-1' pragma: @@ -521,22 +528,23 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"nooptvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"352511c8-d950-48d9-bf51-7db09ebc15ed\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"436aa7cb-eb00-4142-8e23-779ca009f6c2\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"nooptvm_OsDisk_1_f2eeec6d1e3b4058825d2cc0cba62f05\",\r\n + \"Linux\",\r\n \"name\": \"nooptvm_OsDisk_1_b656f262ddd643359948dde3c946f7d5\",\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_vm_create_none_options000001/providers/Microsoft.Compute/disks/nooptvm_OsDisk_1_f2eeec6d1e3b4058825d2cc0cba62f05\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/disks/nooptvm_OsDisk_1_b656f262ddd643359948dde3c946f7d5\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"nooptvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -545,20 +553,19 @@ interactions: \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T14:44:18+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"nooptvm_OsDisk_1_f2eeec6d1e3b4058825d2cc0cba62f05\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.2.47\",\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\": + \"2023-10-17T02:50:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"nooptvm_OsDisk_1_b656f262ddd643359948dde3c946f7d5\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:43:49.0743454+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:49:47.989894+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T14:44:08.4182866+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:50:06.7397396+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}" @@ -566,11 +573,11 @@ interactions: cache-control: - no-cache content-length: - - '3727' + - '3741' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:39 GMT + - Tue, 17 Oct 2023 02:50:17 GMT expires: - '-1' pragma: @@ -587,7 +594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31952 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -595,7 +602,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -606,18 +613,18 @@ interactions: - -n -g --image --availability-set --nsg --ssh-key-value --public-ip-address --tags --location --admin-username User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"nooptvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic\",\r\n - \ \"etag\": \"W/\\\"9c7b7b87-933b-46b5-901a-311a5c2792cc\\\"\",\r\n \"location\": - \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"dca632ab-b934-4d2e-b440-e3fea187c390\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfignooptvm\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic/ipConfigurations/ipconfignooptvm\",\r\n - \ \"etag\": \"W/\\\"9c7b7b87-933b-46b5-901a-311a5c2792cc\\\"\",\r\n + \ \"etag\": \"W/\\\"58e05c76-1d72-4a5b-9922-7fb7faf88515\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"1dfd4917-a36c-439f-91d6-32a7f0a31a60\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfignooptvm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic/ipConfigurations/ipconfignooptvm\",\r\n + \ \"etag\": \"W/\\\"58e05c76-1d72-4a5b-9922-7fb7faf88515\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -625,11 +632,12 @@ 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\": - \"dn2b1qzxl3uutigh11ssaetn0h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-1F-9D-8F\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"5kovti12mizufiped3bnoitkxb.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-33-15-A0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"eastus\"\r\n}" headers: cache-control: - no-cache @@ -638,9 +646,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:40 GMT + - Tue, 17 Oct 2023 02:50:19 GMT etag: - - W/"9c7b7b87-933b-46b5-901a-311a5c2792cc" + - W/"58e05c76-1d72-4a5b-9922-7fb7faf88515" expires: - '-1' pragma: @@ -657,7 +665,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d29ef833-701b-45ac-b9b1-241285677077 + - 21d839f1-5f75-42ab-8e74-53ba5db47ce9 status: code: 200 message: OK @@ -675,22 +683,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"nooptvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/virtualMachines/nooptvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"352511c8-d950-48d9-bf51-7db09ebc15ed\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"436aa7cb-eb00-4142-8e23-779ca009f6c2\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"nooptvm_OsDisk_1_f2eeec6d1e3b4058825d2cc0cba62f05\",\r\n + \"Linux\",\r\n \"name\": \"nooptvm_OsDisk_1_b656f262ddd643359948dde3c946f7d5\",\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_vm_create_none_options000001/providers/Microsoft.Compute/disks/nooptvm_OsDisk_1_f2eeec6d1e3b4058825d2cc0cba62f05\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Compute/disks/nooptvm_OsDisk_1_b656f262ddd643359948dde3c946f7d5\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"nooptvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -698,17 +707,17 @@ interactions: \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/user11/.ssh/authorized_keys\",\r\n \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n\"\r\n }\r\n ]\r\n }\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/networkInterfaces/nooptvmVMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2550' + - '2565' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:41 GMT + - Tue, 17 Oct 2023 02:50:21 GMT expires: - '-1' pragma: @@ -725,7 +734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31951 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -733,7 +742,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -743,7 +752,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_none_options000001/providers/Microsoft.Network/publicIPAddresses/nooptvmPublicIP?api-version=2017-10-01 response: @@ -759,7 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:44:42 GMT + - Tue, 17 Oct 2023 02:50:23 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_extension.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_extension.yaml index b0bf8342146..6add32c2a67 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_extension.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vm_extension.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-06-25T06:28:00Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-10-17T02:40:41Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:03 GMT + - Tue, 17 Oct 2023 02:40:46 GMT expires: - '-1' pragma: @@ -59,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -133,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -141,11 +121,11 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Sun, 25 Jun 2023 06:28:04 GMT + - Tue, 17 Oct 2023 02:40:47 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Sun, 25 Jun 2023 06:33:04 GMT + - Tue, 17 Oct 2023 02:45:47 GMT source-age: - '0' strict-transport-security: @@ -161,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 6084eff22a9eac13fdd77960bf5375a9b76b1823 + - b51fdb5f10ed99da700f9c25f173d49c880bcb2b x-frame-options: - deny x-github-request-id: - - 2558:0363:A6C2B:CE301:6497D9DF + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-tyo11950-TYO + - cache-qpg1278-QPG x-timer: - - S1687674484.019692,VS0,VE223 + - S1697510447.403907,VS0,VE306 x-xss-protection: - 1; mode=block status: @@ -189,23 +169,23 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:04 GMT + - Tue, 17 Oct 2023 02:40:48 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 status: code: 200 message: OK @@ -240,33 +220,34 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:07 GMT + - Tue, 17 Oct 2023 02:40:50 GMT expires: - '-1' pragma: @@ -283,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73968 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73996 status: code: 200 message: OK @@ -301,7 +282,7 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -315,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:07 GMT + - Tue, 17 Oct 2023 02:40:50 GMT expires: - '-1' pragma: @@ -357,9 +338,9 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "myvm", - "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "myvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "incremental"}}' headers: @@ -372,29 +353,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3173' + - '3194' Content-Type: - application/json ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_PD9kEmnapAaWexULAoWeQgFWZJ5KDZvd","name":"vm_deploy_PD9kEmnapAaWexULAoWeQgFWZJ5KDZvd","properties":{"templateHash":"9887458321792030472","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-06-25T06:28:13.8833969Z","duration":"PT0.0009648S","correlationId":"4c273ad2-48e8-4c50-a177-80b4ab4b4561","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U1KyyjjiauGnFMbpqJM40DnYFNoG5gwF","name":"vm_deploy_U1KyyjjiauGnFMbpqJM40DnYFNoG5gwF","properties":{"templateHash":"17662511296972474836","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:40:57.2331317Z","duration":"PT0.0003162S","correlationId":"cb73e8f2-c8a6-45b0-892c-adac8e99c643","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_PD9kEmnapAaWexULAoWeQgFWZJ5KDZvd/operationStatuses/08585139323935054411?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U1KyyjjiauGnFMbpqJM40DnYFNoG5gwF/operationStatuses/08585040964311994509?api-version=2018-02-01 cache-control: - no-cache content-length: - - '2416' + - '2417' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:14 GMT + - Tue, 17 Oct 2023 02:40:57 GMT expires: - '-1' pragma: @@ -422,9 +403,51 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964311994509?api-version=2018-02-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:40:58 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: + - -n -g --image --authentication-type --admin-username --admin-password + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139323935054411?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964311994509?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -436,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:14 GMT + - Tue, 17 Oct 2023 02:41:29 GMT expires: - '-1' pragma: @@ -464,9 +487,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139323935054411?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964311994509?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -478,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:44 GMT + - Tue, 17 Oct 2023 02:41:59 GMT expires: - '-1' pragma: @@ -506,23 +529,21 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_PD9kEmnapAaWexULAoWeQgFWZJ5KDZvd","name":"vm_deploy_PD9kEmnapAaWexULAoWeQgFWZJ5KDZvd","properties":{"templateHash":"9887458321792030472","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-06-25T06:28:39.0957171Z","duration":"PT25.213285S","correlationId":"4c273ad2-48e8-4c50-a177-80b4ab4b4561","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U1KyyjjiauGnFMbpqJM40DnYFNoG5gwF","name":"vm_deploy_U1KyyjjiauGnFMbpqJM40DnYFNoG5gwF","properties":{"templateHash":"17662511296972474836","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:41:34.9018271Z","duration":"PT37.6690116S","correlationId":"cb73e8f2-c8a6-45b0-892c-adac8e99c643","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '3245' + - '3247' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:44 GMT + - Tue, 17 Oct 2023 02:42:00 GMT expires: - '-1' pragma: @@ -550,42 +571,41 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e5a6a46-5a5b-4977-b7c9-8bcbec9f5d25\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"e8134bdb-c3cf-47bb-9019-53378e4fa5c3\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_1c285749384341f0b77963ba2027a0d0\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\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\": \"2023-06-25T06:28:47+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:41:43+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:28:26.8537896+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:17.8954048+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:28:36.9163919+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:30.270573+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}" @@ -593,11 +613,11 @@ interactions: cache-control: - no-cache content-length: - - '2749' + - '2770' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:46 GMT + - Tue, 17 Oct 2023 02:42:01 GMT expires: - '-1' pragma: @@ -614,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31867 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -632,17 +652,17 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\",\r\n - \ \"etag\": \"W/\\\"a2788d1f-e034-4af6-a2af-29648e0d5c5d\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"4c704a39-9348-429c-be8f-bc7597c36f06\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4b917fde-5931-4688-b4e1-199b4d018e87\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"a86df5f4-a13e-4a01-9ca1-2bc96f7b8cca\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigmyvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\",\r\n - \ \"etag\": \"W/\\\"a2788d1f-e034-4af6-a2af-29648e0d5c5d\\\"\",\r\n + \ \"etag\": \"W/\\\"4c704a39-9348-429c-be8f-bc7597c36f06\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -651,8 +671,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\": - \"ebdtp2nfpgoexlnppqtcfb12rh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5A-64-F8\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"fk4dpqpln5xuboz5qx0tkhvqkb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-0B-08-0F\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\"\r\n @@ -666,9 +686,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:48 GMT + - Tue, 17 Oct 2023 02:42:03 GMT etag: - - W/"a2788d1f-e034-4af6-a2af-29648e0d5c5d" + - W/"4c704a39-9348-429c-be8f-bc7597c36f06" expires: - '-1' pragma: @@ -685,7 +705,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d55fe0aa-52ad-4864-b31d-d53e4d4f5756 + - f3a1b6ed-4562-4730-9495-0e5f9c1118ff status: code: 200 message: OK @@ -703,16 +723,16 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP\",\r\n - \ \"etag\": \"W/\\\"a3ddd63b-d516-4d6a-b698-519f9ac00bc2\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"2586271e-7899-4c95-a963-833f313a5a30\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"602369d5-82c5-4b9e-9ec3-cf4644a2482e\",\r\n - \ \"ipAddress\": \"104.42.48.118\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"3e6af7ea-fb5c-41fb-903c-80b636fbd3ba\",\r\n + \ \"ipAddress\": \"20.253.201.76\",\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -725,9 +745,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:49 GMT + - Tue, 17 Oct 2023 02:42:05 GMT etag: - - W/"a3ddd63b-d516-4d6a-b698-519f9ac00bc2" + - W/"2586271e-7899-4c95-a963-833f313a5a30" expires: - '-1' pragma: @@ -744,7 +764,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 13859f57-3634-421e-9d0c-a207a371181d + - d9100187-42ed-4daf-9858-cf3bf98c4da3 status: code: 200 message: OK @@ -762,37 +782,38 @@ interactions: ParameterSetName: - --vm-name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e5a6a46-5a5b-4977-b7c9-8bcbec9f5d25\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"e8134bdb-c3cf-47bb-9019-53378e4fa5c3\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_1c285749384341f0b77963ba2027a0d0\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": - []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1578' + - '1599' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:51 GMT + - Tue, 17 Oct 2023 02:42:05 GMT expires: - '-1' pragma: @@ -809,7 +830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31866 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -827,41 +848,41 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e5a6a46-5a5b-4977-b7c9-8bcbec9f5d25\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"e8134bdb-c3cf-47bb-9019-53378e4fa5c3\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_1c285749384341f0b77963ba2027a0d0\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:28:50+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:41:43+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:28:26.8537896+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:17.8954048+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:28:36.9163919+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:30.270573+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}" @@ -869,11 +890,11 @@ interactions: cache-control: - no-cache content-length: - - '2750' + - '2770' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:52 GMT + - Tue, 17 Oct 2023 02:42:08 GMT expires: - '-1' pragma: @@ -890,12 +911,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31865 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"forceUpdateTag": "02018af6-291c-4cb4-9991-177bb787c424", + body: '{"location": "westus", "properties": {"forceUpdateTag": "4714b2f4-cdff-492f-bb90-f66f8cdc8d79", "publisher": "Microsoft.OSTCExtensions", "type": "VMAccessForLinux", "typeHandlerVersion": "1.2", "autoUpgradeMinorVersion": true, "protectedSettings": {"username": "foouser1", "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8InHIPLAu6lMc0d+5voyXqigZfT5r6fAM1+FQAi+mkPDdk2hNq1BG0Bwfc88Gm7BImw8TS+x2bnZmhCbVnHd6BPCDY7a+cHCSqrQMW89Cv6Vl4ueGOeAWHpJTV9CTLVz4IY1x4HBdkLI2lKIHri9+z7NIdvFk7iOkMVGyez5H1xDbF2szURxgc4I2/o5wycSwX+G8DrtsBvWLmFv9YAPx+VkEHQDjR0WWezOjuo1rDn6MQfiKfqAjPuInwNOg5AIxXAOResrin2PUlArNtdDH1zlvI4RZi36+tJO7mtm3dJiKs4Sj7G6b1CjIU6aaj27MmKy3arIFChYav9yYM3IT"}}}' @@ -915,7 +936,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-03-30 response: @@ -923,14 +944,14 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"02018af6-291c-4cb4-9991-177bb787c424\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"4714b2f4-cdff-492f-bb90-f66f8cdc8d79\",\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccd1a8c8-0df5-4c60-ac3d-ea41deff4c9c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/45e46bd8-3f17-4514-b6ac-94b5ec4e28ec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 cache-control: - no-cache content-length: @@ -938,7 +959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:55 GMT + - Tue, 17 Oct 2023 02:42:14 GMT expires: - '-1' pragma: @@ -951,7 +972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1193 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -971,13 +992,13 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccd1a8c8-0df5-4c60-ac3d-ea41deff4c9c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/45e46bd8-3f17-4514-b6ac-94b5ec4e28ec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:28:56.2290668+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"ccd1a8c8-0df5-4c60-ac3d-ea41deff4c9c\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:14.1150937+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"45e46bd8-3f17-4514-b6ac-94b5ec4e28ec\"\r\n}" headers: cache-control: - no-cache @@ -986,7 +1007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:28:57 GMT + - Tue, 17 Oct 2023 02:42:15 GMT expires: - '-1' pragma: @@ -1003,7 +1024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29861 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK @@ -1021,14 +1042,14 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccd1a8c8-0df5-4c60-ac3d-ea41deff4c9c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/45e46bd8-3f17-4514-b6ac-94b5ec4e28ec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:28:56.2290668+00:00\",\r\n \"endTime\": - \"2023-06-25T06:29:13.9480494+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ccd1a8c8-0df5-4c60-ac3d-ea41deff4c9c\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:14.1150937+00:00\",\r\n \"endTime\": + \"2023-10-17T02:42:24.3806896+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"45e46bd8-3f17-4514-b6ac-94b5ec4e28ec\"\r\n}" headers: cache-control: - no-cache @@ -1037,7 +1058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:29:27 GMT + - Tue, 17 Oct 2023 02:42:45 GMT expires: - '-1' pragma: @@ -1054,7 +1075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29860 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14988 status: code: 200 message: OK @@ -1072,7 +1093,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-03-30 response: @@ -1080,7 +1101,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"02018af6-291c-4cb4-9991-177bb787c424\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"4714b2f4-cdff-492f-bb90-f66f8cdc8d79\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1091,7 +1112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:29:27 GMT + - Tue, 17 Oct 2023 02:42:45 GMT expires: - '-1' pragma: @@ -1108,7 +1129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31863 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1126,59 +1147,59 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-03-30 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e5a6a46-5a5b-4977-b7c9-8bcbec9f5d25\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"e8134bdb-c3cf-47bb-9019-53378e4fa5c3\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_1c285749384341f0b77963ba2027a0d0\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:29:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + \ \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-17T02:42:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n - \ \"typeHandlerVersion\": \"1.5.15\",\r\n \"status\": + \ \"typeHandlerVersion\": \"1.5.16\",\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\": \"myvm_disk1_d5c32fa11a634f6fb11915cd7ebc03a7\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_1c285749384341f0b77963ba2027a0d0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:28:26.8537896+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:41:17.8954048+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n \"typeHandlerVersion\": - \"1.5.15\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"1.5.16\",\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 \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:29:13.9324212+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:42:24.3806896+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 \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"forceUpdateTag\": \"02018af6-291c-4cb4-9991-177bb787c424\",\r\n + true,\r\n \"forceUpdateTag\": \"4714b2f4-cdff-492f-bb90-f66f8cdc8d79\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \ \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n }\r\n ]\r\n}" @@ -1186,11 +1207,11 @@ interactions: cache-control: - no-cache content-length: - - '4227' + - '4248' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:29:29 GMT + - Tue, 17 Oct 2023 02:42:47 GMT expires: - '-1' pragma: @@ -1207,7 +1228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31862 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23987,Microsoft.Compute/LowCostGetResource;33 status: code: 200 message: OK @@ -1225,7 +1246,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-03-30 response: @@ -1233,7 +1254,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"02018af6-291c-4cb4-9991-177bb787c424\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"4714b2f4-cdff-492f-bb90-f66f8cdc8d79\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1244,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:29:30 GMT + - Tue, 17 Oct 2023 02:42:50 GMT expires: - '-1' pragma: @@ -1261,7 +1282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31861 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23986,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -1281,7 +1302,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-03-30 response: @@ -1291,17 +1312,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/38f4f7a9-bf51-4267-bbc8-0a341ac262cb?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/105b65c7-c0bb-4dfa-9045-7f03a941507e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 25 Jun 2023 06:29:32 GMT + - Tue, 17 Oct 2023 02:42:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/38f4f7a9-bf51-4267-bbc8-0a341ac262cb?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/105b65c7-c0bb-4dfa-9045-7f03a941507e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1312,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1192 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1332,13 +1353,13 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/38f4f7a9-bf51-4267-bbc8-0a341ac262cb?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/105b65c7-c0bb-4dfa-9045-7f03a941507e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:29:32.8545199+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"38f4f7a9-bf51-4267-bbc8-0a341ac262cb\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:52.5216946+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"105b65c7-c0bb-4dfa-9045-7f03a941507e\"\r\n}" headers: cache-control: - no-cache @@ -1347,7 +1368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:29:32 GMT + - Tue, 17 Oct 2023 02:42:52 GMT expires: - '-1' pragma: @@ -1364,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29859 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14987 status: code: 200 message: OK @@ -1382,14 +1403,14 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/38f4f7a9-bf51-4267-bbc8-0a341ac262cb?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/105b65c7-c0bb-4dfa-9045-7f03a941507e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:29:32.8545199+00:00\",\r\n \"endTime\": - \"2023-06-25T06:29:43.0889685+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"38f4f7a9-bf51-4267-bbc8-0a341ac262cb\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:42:52.5216946+00:00\",\r\n \"endTime\": + \"2023-10-17T02:43:02.7406467+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"105b65c7-c0bb-4dfa-9045-7f03a941507e\"\r\n}" headers: cache-control: - no-cache @@ -1398,7 +1419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:30:03 GMT + - Tue, 17 Oct 2023 02:43:22 GMT expires: - '-1' pragma: @@ -1415,7 +1436,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29867 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_create_with_app_gateway.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_create_with_app_gateway.yaml index 3651158eae6..8d99652a8bd 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_create_with_app_gateway.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_create_with_app_gateway.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001","name":"cli_test_vmss_create_w_ag000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T14:50:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001","name":"cli_test_vmss_create_w_ag000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_create_with_app_gateway","date":"2023-10-17T02:50:28Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '296' + - '353' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:46 GMT + - Tue, 17 Oct 2023 02:50:33 GMT expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -59,26 +59,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -101,7 +102,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -112,19 +113,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 14:50:48 GMT + - Tue, 17 Oct 2023 02:50:33 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 14:55:48 GMT + - Tue, 17 Oct 2023 02:55:33 GMT source-age: - - '64' + - '91' strict-transport-security: - max-age=31536000 vary: @@ -138,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e71e66d55bd909142c371eb8a99ba2f23e154f87 + - 5f2374e89debb98781be1fda503a413b10ff3280 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1255-QPG + - cache-qpg1232-QPG x-timer: - - S1655995848.209352,VS0,VE1 + - S1697511034.588839,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -166,23 +169,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:49 GMT + - Tue, 17 Oct 2023 02:50:34 GMT expires: - '-1' pragma: @@ -199,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 status: code: 200 message: OK @@ -217,30 +220,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:50 GMT + - Tue, 17 Oct 2023 02:50:35 GMT expires: - '-1' pragma: @@ -257,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73992 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73992 status: code: 200 message: OK @@ -265,7 +272,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -275,7 +282,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -289,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:51 GMT + - Tue, 17 Oct 2023 02:50:36 GMT expires: - '-1' pragma: @@ -317,7 +324,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1?api-version=2017-10-01 response: @@ -333,7 +340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:50:52 GMT + - Tue, 17 Oct 2023 02:50:37 GMT expires: - '-1' pragma: @@ -382,12 +389,12 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": - "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vmss1f925", "adminUsername": "clittester", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/clittester/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "Debian", "offer": "debian-11", "sku": "11-backports-gen2", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss1cf7a", "adminUsername": "clittester", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"path": "/home/clittester/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss1f925Nic", "properties": {"ipConfigurations": [{"name": "vmss1f925IPConfig", + [{"name": "vmss1cf7aNic", "properties": {"ipConfigurations": [{"name": "vmss1cf7aIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "ApplicationGatewayBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1/backendAddressPools/vmss1LBBEPool"}]}}], "primary": "true"}}]}}}, "sku": {"name": "Standard_DS1_v2", "capacity": 5}}], @@ -404,21 +411,21 @@ interactions: Connection: - keep-alive Content-Length: - - '5222' + - '5237' Content-Type: - application/json ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Pf0HBUpp359sLAOqbP3uVVJ9Fy8OOVYu","name":"vmss_deploy_Pf0HBUpp359sLAOqbP3uVVJ9Fy8OOVYu","properties":{"templateHash":"10974410845337502810","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T14:51:10.8033038Z","duration":"PT0.0001514S","correlationId":"3633f435-522a-4ac8-b8cc-24d061e555df","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"apt1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Imaix9fxeDJvBeiLXAlgfN1nd4o33KoC","name":"vmss_deploy_Imaix9fxeDJvBeiLXAlgfN1nd4o33KoC","properties":{"templateHash":"15934613598668172091","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:50:46.0352479Z","duration":"PT0.0006641S","correlationId":"06983da6-8e68-4c50-b7cf-5e2dda4487e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"apt1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Pf0HBUpp359sLAOqbP3uVVJ9Fy8OOVYu/operationStatuses/08585456110176695562?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Imaix9fxeDJvBeiLXAlgfN1nd4o33KoC/operationStatuses/08585040958422464805?api-version=2018-02-01 cache-control: - no-cache content-length: @@ -426,7 +433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:51:12 GMT + - Tue, 17 Oct 2023 02:50:48 GMT expires: - '-1' pragma: @@ -436,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -454,273 +461,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:51:43 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:52:14 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:52:45 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:53:17 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:53:47 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 14:54:17 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:54:48 GMT + - Tue, 17 Oct 2023 02:50:49 GMT expires: - '-1' pragma: @@ -748,9 +503,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -762,7 +517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:55:18 GMT + - Tue, 17 Oct 2023 02:51:20 GMT expires: - '-1' pragma: @@ -790,9 +545,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -804,7 +559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:55:50 GMT + - Tue, 17 Oct 2023 02:51:50 GMT expires: - '-1' pragma: @@ -832,9 +587,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -846,7 +601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:56:21 GMT + - Tue, 17 Oct 2023 02:52:21 GMT expires: - '-1' pragma: @@ -874,9 +629,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -888,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:56:52 GMT + - Tue, 17 Oct 2023 02:52:51 GMT expires: - '-1' pragma: @@ -916,9 +671,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -930,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:57:22 GMT + - Tue, 17 Oct 2023 02:53:21 GMT expires: - '-1' pragma: @@ -958,9 +713,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -972,7 +727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:57:55 GMT + - Tue, 17 Oct 2023 02:53:52 GMT expires: - '-1' pragma: @@ -1000,9 +755,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1014,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:58:25 GMT + - Tue, 17 Oct 2023 02:54:22 GMT expires: - '-1' pragma: @@ -1042,9 +797,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1056,7 +811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:58:55 GMT + - Tue, 17 Oct 2023 02:54:53 GMT expires: - '-1' pragma: @@ -1084,9 +839,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1098,7 +853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:59:27 GMT + - Tue, 17 Oct 2023 02:55:25 GMT expires: - '-1' pragma: @@ -1126,9 +881,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1140,7 +895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 14:59:57 GMT + - Tue, 17 Oct 2023 02:55:56 GMT expires: - '-1' pragma: @@ -1168,9 +923,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1182,7 +937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:00:27 GMT + - Tue, 17 Oct 2023 02:56:27 GMT expires: - '-1' pragma: @@ -1210,9 +965,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1224,7 +979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:00:59 GMT + - Tue, 17 Oct 2023 02:56:58 GMT expires: - '-1' pragma: @@ -1252,9 +1007,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1266,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:01:30 GMT + - Tue, 17 Oct 2023 02:57:28 GMT expires: - '-1' pragma: @@ -1294,9 +1049,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1308,7 +1063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:02:00 GMT + - Tue, 17 Oct 2023 02:57:58 GMT expires: - '-1' pragma: @@ -1336,9 +1091,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1350,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:02:31 GMT + - Tue, 17 Oct 2023 02:58:29 GMT expires: - '-1' pragma: @@ -1378,9 +1133,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1392,7 +1147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:03:02 GMT + - Tue, 17 Oct 2023 02:58:59 GMT expires: - '-1' pragma: @@ -1420,9 +1175,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1434,7 +1189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:03:33 GMT + - Tue, 17 Oct 2023 02:59:30 GMT expires: - '-1' pragma: @@ -1462,9 +1217,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1476,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:04:04 GMT + - Tue, 17 Oct 2023 03:00:00 GMT expires: - '-1' pragma: @@ -1504,9 +1259,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1518,7 +1273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:04:34 GMT + - Tue, 17 Oct 2023 03:00:33 GMT expires: - '-1' pragma: @@ -1546,9 +1301,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1560,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:05:04 GMT + - Tue, 17 Oct 2023 03:01:03 GMT expires: - '-1' pragma: @@ -1588,9 +1343,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1602,7 +1357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:05:36 GMT + - Tue, 17 Oct 2023 03:01:34 GMT expires: - '-1' pragma: @@ -1630,9 +1385,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1644,7 +1399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:06:06 GMT + - Tue, 17 Oct 2023 03:02:04 GMT expires: - '-1' pragma: @@ -1672,9 +1427,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1686,7 +1441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:06:38 GMT + - Tue, 17 Oct 2023 03:02:35 GMT expires: - '-1' pragma: @@ -1714,9 +1469,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1728,7 +1483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:07:08 GMT + - Tue, 17 Oct 2023 03:03:05 GMT expires: - '-1' pragma: @@ -1756,9 +1511,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1770,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:07:38 GMT + - Tue, 17 Oct 2023 03:03:36 GMT expires: - '-1' pragma: @@ -1798,9 +1553,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1812,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:08:09 GMT + - Tue, 17 Oct 2023 03:04:06 GMT expires: - '-1' pragma: @@ -1840,9 +1595,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1854,7 +1609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:08:39 GMT + - Tue, 17 Oct 2023 03:04:37 GMT expires: - '-1' pragma: @@ -1882,9 +1637,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1896,7 +1651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:09:10 GMT + - Tue, 17 Oct 2023 03:05:07 GMT expires: - '-1' pragma: @@ -1924,9 +1679,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1938,7 +1693,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:09:40 GMT + - Tue, 17 Oct 2023 03:05:38 GMT expires: - '-1' pragma: @@ -1966,9 +1721,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -1980,7 +1735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:10:11 GMT + - Tue, 17 Oct 2023 03:06:09 GMT expires: - '-1' pragma: @@ -2008,9 +1763,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2022,7 +1777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:10:43 GMT + - Tue, 17 Oct 2023 03:06:39 GMT expires: - '-1' pragma: @@ -2050,9 +1805,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2064,7 +1819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:11:13 GMT + - Tue, 17 Oct 2023 03:07:10 GMT expires: - '-1' pragma: @@ -2092,9 +1847,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2106,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:11:43 GMT + - Tue, 17 Oct 2023 03:07:41 GMT expires: - '-1' pragma: @@ -2134,9 +1889,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2148,7 +1903,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:12:15 GMT + - Tue, 17 Oct 2023 03:08:11 GMT expires: - '-1' pragma: @@ -2176,9 +1931,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2190,7 +1945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:12:45 GMT + - Tue, 17 Oct 2023 03:08:42 GMT expires: - '-1' pragma: @@ -2218,9 +1973,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2232,7 +1987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:13:16 GMT + - Tue, 17 Oct 2023 03:09:12 GMT expires: - '-1' pragma: @@ -2260,9 +2015,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2274,7 +2029,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:13:46 GMT + - Tue, 17 Oct 2023 03:09:42 GMT expires: - '-1' pragma: @@ -2302,9 +2057,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2316,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:14:17 GMT + - Tue, 17 Oct 2023 03:10:13 GMT expires: - '-1' pragma: @@ -2344,21 +2099,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' headers: cache-control: - no-cache + connection: + - close content-length: - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:14:48 GMT + - Tue, 17 Oct 2023 03:10:44 GMT expires: - '-1' pragma: @@ -2386,441 +2143,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' headers: cache-control: - no-cache + connection: + - close content-length: - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:15:18 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:15:50 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:16:20 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:16:51 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:17:22 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:17:52 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:18:22 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:18:53 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: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:19:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:19:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 23 Jun 2022 15:20:26 GMT + - Tue, 17 Oct 2023 03:11:16 GMT expires: - '-1' pragma: @@ -2848,9 +2187,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2862,7 +2201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:20:56 GMT + - Tue, 17 Oct 2023 03:11:48 GMT expires: - '-1' pragma: @@ -2890,9 +2229,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2904,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:21:27 GMT + - Tue, 17 Oct 2023 03:12:19 GMT expires: - '-1' pragma: @@ -2932,9 +2271,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2946,7 +2285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:21:58 GMT + - Tue, 17 Oct 2023 03:12:50 GMT expires: - '-1' pragma: @@ -2974,9 +2313,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -2988,7 +2327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:22:28 GMT + - Tue, 17 Oct 2023 03:13:20 GMT expires: - '-1' pragma: @@ -3016,9 +2355,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3030,7 +2369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:22:59 GMT + - Tue, 17 Oct 2023 03:13:50 GMT expires: - '-1' pragma: @@ -3058,9 +2397,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3072,7 +2411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:23:29 GMT + - Tue, 17 Oct 2023 03:14:21 GMT expires: - '-1' pragma: @@ -3100,9 +2439,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3114,7 +2453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:24:00 GMT + - Tue, 17 Oct 2023 03:14:51 GMT expires: - '-1' pragma: @@ -3142,9 +2481,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3156,7 +2495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:24:30 GMT + - Tue, 17 Oct 2023 03:15:22 GMT expires: - '-1' pragma: @@ -3184,9 +2523,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3198,7 +2537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:25:03 GMT + - Tue, 17 Oct 2023 03:15:53 GMT expires: - '-1' pragma: @@ -3226,9 +2565,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3240,7 +2579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:25:33 GMT + - Tue, 17 Oct 2023 03:16:24 GMT expires: - '-1' pragma: @@ -3268,9 +2607,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3282,7 +2621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:26:06 GMT + - Tue, 17 Oct 2023 03:16:55 GMT expires: - '-1' pragma: @@ -3310,9 +2649,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3324,7 +2663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:26:36 GMT + - Tue, 17 Oct 2023 03:17:25 GMT expires: - '-1' pragma: @@ -3352,9 +2691,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3366,7 +2705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:27:06 GMT + - Tue, 17 Oct 2023 03:17:56 GMT expires: - '-1' pragma: @@ -3394,9 +2733,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3408,7 +2747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:27:38 GMT + - Tue, 17 Oct 2023 03:18:26 GMT expires: - '-1' pragma: @@ -3436,9 +2775,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3450,7 +2789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:28:08 GMT + - Tue, 17 Oct 2023 03:18:57 GMT expires: - '-1' pragma: @@ -3478,9 +2817,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3492,7 +2831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:28:39 GMT + - Tue, 17 Oct 2023 03:19:27 GMT expires: - '-1' pragma: @@ -3520,9 +2859,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3534,7 +2873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:29:09 GMT + - Tue, 17 Oct 2023 03:19:58 GMT expires: - '-1' pragma: @@ -3562,9 +2901,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3576,7 +2915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:29:41 GMT + - Tue, 17 Oct 2023 03:20:29 GMT expires: - '-1' pragma: @@ -3604,9 +2943,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3618,7 +2957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:30:12 GMT + - Tue, 17 Oct 2023 03:21:01 GMT expires: - '-1' pragma: @@ -3646,9 +2985,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3660,7 +2999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:30:43 GMT + - Tue, 17 Oct 2023 03:21:31 GMT expires: - '-1' pragma: @@ -3688,9 +3027,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3702,7 +3041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:31:13 GMT + - Tue, 17 Oct 2023 03:22:02 GMT expires: - '-1' pragma: @@ -3730,9 +3069,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3744,7 +3083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:31:44 GMT + - Tue, 17 Oct 2023 03:22:32 GMT expires: - '-1' pragma: @@ -3772,9 +3111,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3786,7 +3125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:32:15 GMT + - Tue, 17 Oct 2023 03:23:03 GMT expires: - '-1' pragma: @@ -3814,9 +3153,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3828,7 +3167,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:32:46 GMT + - Tue, 17 Oct 2023 03:23:47 GMT expires: - '-1' pragma: @@ -3856,9 +3195,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3870,7 +3209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:33:16 GMT + - Tue, 17 Oct 2023 03:24:18 GMT expires: - '-1' pragma: @@ -3898,9 +3237,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -3912,7 +3251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:33:47 GMT + - Tue, 17 Oct 2023 03:24:49 GMT expires: - '-1' pragma: @@ -3940,9 +3279,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456110176695562?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040958422464805?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -3954,7 +3293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:18 GMT + - Tue, 17 Oct 2023 03:25:20 GMT expires: - '-1' pragma: @@ -3982,23 +3321,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value --app-gateway --instance-count User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Pf0HBUpp359sLAOqbP3uVVJ9Fy8OOVYu","name":"vmss_deploy_Pf0HBUpp359sLAOqbP3uVVJ9Fy8OOVYu","properties":{"templateHash":"10974410845337502810","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T15:33:54.3215862Z","duration":"PT42M43.5184338S","correlationId":"3633f435-522a-4ac8-b8cc-24d061e555df","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"apt1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1f925","adminUsername":"clittester","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/clittester/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Resources/deployments/vmss_deploy_Imaix9fxeDJvBeiLXAlgfN1nd4o33KoC","name":"vmss_deploy_Imaix9fxeDJvBeiLXAlgfN1nd4o33KoC","properties":{"templateHash":"15934613598668172091","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T03:24:57.5936927Z","duration":"PT34M11.5591089S","correlationId":"06983da6-8e68-4c50-b7cf-5e2dda4487e4","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"apt1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"apt1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1cf7a","adminUsername":"clittester","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/clittester/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1f925Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"ipConfigurations":[{"name":"vmss1f925IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","applicationGatewayBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1/backendAddressPools/vmss1LBBEPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"8dd562e4-4737-47c9-ba81-8fc019f03f42","timeCreated":"2022-06-23T15:01:18.3671779+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1cf7aNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"ipConfigurations":[{"name":"vmss1cf7aIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","applicationGatewayBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1/backendAddressPools/vmss1LBBEPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"fa309747-c514-4d2e-b8b6-9882e26c92e6","timeCreated":"2023-10-17T03:01:09.9121373+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/publicIPAddresses/apt1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '5305' + - '5410' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:19 GMT + - Tue, 17 Oct 2023 03:25:20 GMT expires: - '-1' pragma: @@ -4026,7 +3365,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2017-03-30 response: @@ -4037,7 +3376,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\",\r\n \"automaticOSUpgrade\": false\r\n },\r\n \"virtualMachineProfile\": - {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss1f925\",\r\n + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss1cf7a\",\r\n \ \"adminUsername\": \"clittester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": @@ -4049,20 +3388,20 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1f925Nic\",\"properties\":{\"primary\":true,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"vmss1f925IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"applicationGatewayBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1/backendAddressPools/vmss1LBBEPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1cf7aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"vmss1cf7aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"applicationGatewayBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_w_ag000001/providers/Microsoft.Network/applicationGateways/apt1/backendAddressPools/vmss1LBBEPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - true,\r\n \"uniqueId\": \"8dd562e4-4737-47c9-ba81-8fc019f03f42\"\r\n }\r\n}" + true,\r\n \"uniqueId\": \"fa309747-c514-4d2e-b8b6-9882e26c92e6\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3012' + - '3059' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:21 GMT + - Tue, 17 Oct 2023 03:25:22 GMT expires: - '-1' pragma: @@ -4079,7 +3418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;336,Microsoft.Compute/GetVMScaleSet30Min;1920 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;31 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_existing_lb.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_existing_lb.yaml index c9d69be3626..7aeec5f7b6d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_existing_lb.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/recordings/test_vmss_existing_lb.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T15:34:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-17T02:40:41Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '355' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:29 GMT + - Tue, 17 Oct 2023 02:40:45 GMT expires: - '-1' pragma: @@ -55,34 +55,46 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_existing_lb000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2018-02-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTY0IU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxWUkZVMVE2TlVaRFRFazZOVVpNVDBGRVFrRk1RVTVEUlMxTlNVTlNUMU5QUmxRNk1rVk9SVlJYVDFKTE9qSkdVRlZDVEVsRFNWQkJSRVJTUlZOVFJWTTZNa1pRVlVKTVNVTkpVRXhDTVMxRlFWTlVWVk15In0%3d"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '609' + - '12' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:30 GMT + - Tue, 17 Oct 2023 02:40:45 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 + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2017-10-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": + {}, "apiVersion": "2017-10-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], + "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": + [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, + "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": + "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -92,24 +104,30 @@ interactions: - network lb create Connection: - keep-alive + Content-Length: + - '1103' + Content-Type: + - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2018-02-01&%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTY0IU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxWUkZVMVE2TlVaRFRFazZOVVpNVDBGRVFrRk1RVTVEUlMxTlNVTlNUMU5QUmxRNk1rVk9SVlJYVDFKTE9qSkdVRlZDVEVsRFNWQkJSRVJTUlZOVFJWTTZNa1pRVlVKTVNVTkpVRXhDTVMxRlFWTlVWVk15In0%3D + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_jEwhM69uucVm98dh8ssLsrFhqLGCg7lH","name":"lb_deploy_jEwhM69uucVm98dh8ssLsrFhqLGCg7lH","properties":{"templateHash":"14094159691043864216","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:40:54.1193055Z","duration":"PT0.0010003S","correlationId":"0105da8d-db53-4af6-8cd7-daaec474973b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_jEwhM69uucVm98dh8ssLsrFhqLGCg7lH/operationStatuses/08585040964334849045?api-version=2018-02-01 cache-control: - no-cache content-length: - - '12' + - '1195' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:30 GMT + - Tue, 17 Oct 2023 02:40:55 GMT expires: - '-1' pragma: @@ -118,67 +136,53 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2017-10-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": - {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": - {}, "apiVersion": "2017-10-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], - "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, - "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": - "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network lb create Connection: - keep-alive - Content-Length: - - '1103' - Content-Type: - - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964334849045?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_mhbrGbF29WQRkZYxyV8AK8AFPo0YWxdH","name":"lb_deploy_mhbrGbF29WQRkZYxyV8AK8AFPo0YWxdH","properties":{"templateHash":"6146679812395520356","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T15:34:37.0241688Z","duration":"PT0.0005811S","correlationId":"7343e9e1-1265-41d6-9d03-eb50776b8062","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_mhbrGbF29WQRkZYxyV8AK8AFPo0YWxdH/operationStatuses/08585456084113265972?api-version=2018-02-01 cache-control: - no-cache content-length: - - '1194' + - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:34:37 GMT + - Tue, 17 Oct 2023 02:40:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -193,9 +197,9 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456084113265972?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040964334849045?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -207,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:08 GMT + - Tue, 17 Oct 2023 02:41:26 GMT expires: - '-1' pragma: @@ -235,21 +239,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_mhbrGbF29WQRkZYxyV8AK8AFPo0YWxdH","name":"lb_deploy_mhbrGbF29WQRkZYxyV8AK8AFPo0YWxdH","properties":{"templateHash":"6146679812395520356","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T15:34:54.4519135Z","duration":"PT17.4283258S","correlationId":"7343e9e1-1265-41d6-9d03-eb50776b8062","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"2577d447-2b06-494e-82e6-e253341966f8","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_jEwhM69uucVm98dh8ssLsrFhqLGCg7lH","name":"lb_deploy_jEwhM69uucVm98dh8ssLsrFhqLGCg7lH","properties":{"templateHash":"14094159691043864216","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:41:09.6371773Z","duration":"PT15.5188721S","correlationId":"0105da8d-db53-4af6-8cd7-daaec474973b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"aff4edb3-ae46-423b-9316-2caf0980fe00","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"e63bc1a4-5328-492b-8875-08a6bb3bb574\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"e63bc1a4-5328-492b-8875-08a6bb3bb574\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' headers: cache-control: - no-cache content-length: - - '2813' + - '2814' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:08 GMT + - Tue, 17 Oct 2023 02:41:26 GMT expires: - '-1' pragma: @@ -277,21 +281,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T15:34:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-17T02:40:41Z","module":"vm","DateCreated":"2023-10-17T02:41:26Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '430' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:09 GMT + - Tue, 17 Oct 2023 02:41:28 GMT expires: - '-1' pragma: @@ -315,7 +319,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -323,26 +327,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -365,7 +370,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -376,19 +381,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 15:35:11 GMT + - Tue, 17 Oct 2023 02:41:28 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 15:40:11 GMT + - Tue, 17 Oct 2023 02:46:28 GMT source-age: - - '0' + - '41' strict-transport-security: - max-age=31536000 vary: @@ -402,15 +409,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 9d29bca6d2a8655366cdcf9e1c2ed89f32c2c23f + - 824aced62ed1eb89dffe9c8abe718f5f2639da4f x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1263-QPG + - cache-qpg1234-QPG x-timer: - - S1655998511.983604,VS0,VE289 + - S1697510489.990782,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -430,23 +437,23 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-03-30 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:12 GMT + - Tue, 17 Oct 2023 02:41:29 GMT expires: - '-1' pragma: @@ -463,7 +470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 status: code: 200 message: OK @@ -481,33 +488,34 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202206150?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2017-03-30 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n - \ \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1043' + - '1158' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:13 GMT + - Tue, 17 Oct 2023 02:41:30 GMT expires: - '-1' pragma: @@ -524,7 +532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73994 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73994 status: code: 200 message: OK @@ -532,7 +540,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -542,7 +550,7 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -556,7 +564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:13 GMT + - Tue, 17 Oct 2023 02:41:31 GMT expires: - '-1' pragma: @@ -574,7 +582,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -584,26 +592,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2577d447-2b06-494e-82e6-e253341966f8\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"aff4edb3-ae46-423b-9316-2caf0980fe00\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -617,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:15 GMT + - Tue, 17 Oct 2023 02:41:33 GMT etag: - - W/"230cc07b-8b94-49ce-b46c-bd1a004f82fa" + - W/"e63bc1a4-5328-492b-8875-08a6bb3bb574" expires: - '-1' pragma: @@ -636,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32288354-a956-4308-a241-955337ec5d29 + - d0b0b3aa-3636-4dfe-b997-220c3840062b status: code: 200 message: OK @@ -644,7 +652,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -654,26 +662,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2577d447-2b06-494e-82e6-e253341966f8\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"aff4edb3-ae46-423b-9316-2caf0980fe00\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"230cc07b-8b94-49ce-b46c-bd1a004f82fa\\\"\",\r\n + \ \"etag\": \"W/\\\"e63bc1a4-5328-492b-8875-08a6bb3bb574\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -687,9 +695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:16 GMT + - Tue, 17 Oct 2023 02:41:35 GMT etag: - - W/"230cc07b-8b94-49ce-b46c-bd1a004f82fa" + - W/"e63bc1a4-5328-492b-8875-08a6bb3bb574" expires: - '-1' pragma: @@ -699,10 +707,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e24fdae-1d83-4bca-8072-cce01c9528c8 + - d475e74f-02af-4923-b5dd-912fe95d9a2e status: code: 200 message: OK @@ -719,11 +731,11 @@ interactions: "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss18a19", - "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss18a19Nic", - "properties": {"ipConfigurations": [{"name": "vmss18a19IPConfig", "properties": + "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerNamePrefix": + "vmss11655", "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11655Nic", + "properties": {"ipConfigurations": [{"name": "vmss11655IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}], "primary": "true"}}]}}}, "sku": {"name": "Standard_DS1_v2", "capacity": 2}}], @@ -740,29 +752,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2251' + - '2272' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_9kcmYkEwl8ghzmBnQ5iKTqAA0KcBBvyw","name":"vmss_deploy_9kcmYkEwl8ghzmBnQ5iKTqAA0KcBBvyw","properties":{"templateHash":"8664137593101982365","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T15:35:35.2802366Z","duration":"PT0.0006666S","correlationId":"182c17c0-4219-499b-b9b2-668643ee9c59","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_hMRTznvSWIn7tVm4FQcKH2JtW3lFb5Fl","name":"vmss_deploy_hMRTznvSWIn7tVm4FQcKH2JtW3lFb5Fl","properties":{"templateHash":"13257563632083947923","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:41:45.2253824Z","duration":"PT0.0005017S","correlationId":"b26fca82-7bc9-4dd0-a631-39605f9e485e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_9kcmYkEwl8ghzmBnQ5iKTqAA0KcBBvyw/operationStatuses/08585456083529973000?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_hMRTznvSWIn7tVm4FQcKH2JtW3lFb5Fl/operationStatuses/08585040963832673093?api-version=2018-02-01 cache-control: - no-cache content-length: - - '1313' + - '1314' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:35:37 GMT + - Tue, 17 Oct 2023 02:41:47 GMT expires: - '-1' pragma: @@ -772,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -790,21 +802,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456083529973000?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040963832673093?api-version=2018-02-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:36:08 GMT + - Tue, 17 Oct 2023 02:41:48 GMT expires: - '-1' pragma: @@ -832,9 +844,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456083529973000?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040963832673093?api-version=2018-02-01 response: body: string: '{"status":"Running"}' @@ -846,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:36:38 GMT + - Tue, 17 Oct 2023 02:42:19 GMT expires: - '-1' pragma: @@ -874,9 +886,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456083529973000?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040963832673093?api-version=2018-02-01 response: body: string: '{"status":"Succeeded"}' @@ -888,7 +900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:37:08 GMT + - Tue, 17 Oct 2023 02:42:49 GMT expires: - '-1' pragma: @@ -916,21 +928,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_9kcmYkEwl8ghzmBnQ5iKTqAA0KcBBvyw","name":"vmss_deploy_9kcmYkEwl8ghzmBnQ5iKTqAA0KcBBvyw","properties":{"templateHash":"8664137593101982365","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T15:36:41.2597488Z","duration":"PT1M5.9801788S","correlationId":"182c17c0-4219-499b-b9b2-668643ee9c59","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss18a19","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"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":"vmss18a19Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"ipConfigurations":[{"name":"vmss18a19IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"8bcf755b-efe9-40da-abca-0a49d7fedd4e","timeCreated":"2022-06-23T15:35:54.7178848+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_hMRTznvSWIn7tVm4FQcKH2JtW3lFb5Fl","name":"vmss_deploy_hMRTznvSWIn7tVm4FQcKH2JtW3lFb5Fl","properties":{"templateHash":"13257563632083947923","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:42:38.48676Z","duration":"PT53.2618793S","correlationId":"b26fca82-7bc9-4dd0-a631-39605f9e485e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss11655","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"0001-com-ubuntu-server-jammy","sku":"22_04-lts-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss11655Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"ipConfigurations":[{"name":"vmss11655IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"22bdccb6-67d3-4aec-810d-9a0cd492a734","timeCreated":"2023-10-17T02:42:03.8491636+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3123' + - '3232' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 15:37:09 GMT + - Tue, 17 Oct 2023 02:42:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py index f41807d94f8..e3da626b677 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2018_03_01/test_vm_commands.py @@ -492,7 +492,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image CentOS85Gen2 --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -805,7 +805,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image ubuntu2204 --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -959,7 +959,7 @@ def test_vm_create_none_options(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vm create -n {vm} -g {rg} --image Debian:debian-10:10:latest --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') + self.cmd('vm create -n {vm} -g {rg} --image Debian11 --availability-set {quotes} --nsg {quotes} --ssh-key-value \'{ssh_key}\' --public-ip-address {quotes} --tags {quotes} --location {loc} --admin-username user11') self.cmd('vm show -n {vm} -g {rg}', checks=[ self.check('availabilitySet', None), @@ -998,7 +998,7 @@ def test_vm_boot_diagnostics(self, resource_group, storage_account): checks=self.check('diagnosticsProfile.bootDiagnostics.enabled', False)) # try enable it at the create - self.cmd('vm create -g {rg} -n {vm2} --image Debian:debian-10:10:latest --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') + self.cmd('vm create -g {rg} -n {vm2} --image Debian11 --admin-username user11 --admin-password testPassword0 --boot-diagnostics-storage {sa}') self.cmd('vm show -g {rg} -n {vm2}', checks=[ self.check('diagnosticsProfile.bootDiagnostics.enabled', True), self.check('diagnosticsProfile.bootDiagnostics.storageUri', '{storage_uri}') @@ -1468,7 +1468,7 @@ def test_vmss_create_with_app_gateway(self, resource_group): 'vmss': 'vmss1', 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd("vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", + self.cmd("vmss create -n {vmss} -g {rg} --image Debian11 --admin-username clittester --ssh-key-value '{ssh_key}' --app-gateway apt1 --instance-count 5", checks=self.check('vmss.provisioningState', 'Succeeded')) # spot check it is using gateway self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -1494,7 +1494,7 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image ubuntu2204 --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml index dd9aaac5806..868ac457c6b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '332' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:03:29 GMT + - Tue, 17 Oct 2023 02:33:11 GMT expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -59,26 +59,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -101,7 +102,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -112,19 +113,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 10:03:30 GMT + - Tue, 17 Oct 2023 02:33:12 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 10:08:30 GMT + - Tue, 17 Oct 2023 02:38:12 GMT source-age: - - '116' + - '264' strict-transport-security: - max-age=31536000 vary: @@ -138,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 9bd9360c485292d17ac70c6aee5255970d8c5970 + - 0fcfff928a9890c4ee658836ef00526c6ea2b6de x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1259-QPG + - cache-qpg1257-QPG x-timer: - - S1655978611.677073,VS0,VE1 + - S1697509992.152061,VS0,VE2 x-xss-protection: - 1; mode=block status: @@ -166,23 +169,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:03:31 GMT + - Tue, 17 Oct 2023 02:33:12 GMT expires: - '-1' pragma: @@ -217,28 +220,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2017-12-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:03:32 GMT + - Tue, 17 Oct 2023 02:33:14 GMT expires: - '-1' pragma: @@ -263,7 +272,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -273,7 +282,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -287,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:03:33 GMT + - Tue, 17 Oct 2023 02:33:15 GMT expires: - '-1' pragma: @@ -330,7 +339,7 @@ interactions: "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": - "7.5", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": + "8_5-gen2", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "empty", "diskSizeGB": 2}]}, "osProfile": {"computerName": "vm1", "adminUsername": "centosadmin", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, @@ -345,21 +354,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3219' + - '3224' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_izFp0HpQpz03vYmNNFWiDCTTjnqPJ4Gf","name":"vm_deploy_izFp0HpQpz03vYmNNFWiDCTTjnqPJ4Gf","properties":{"templateHash":"14782513549387754779","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T10:03:38.4086635Z","duration":"PT0.0004003S","correlationId":"89c1b14f-4a58-45ae-a31c-3a0f3529e933","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_kxCcTYwkT6xmZqKtOiZOLUlh4ga2kFew","name":"vm_deploy_kxCcTYwkT6xmZqKtOiZOLUlh4ga2kFew","properties":{"templateHash":"11205523780983330830","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:33:24.4936747Z","duration":"PT0.0001037S","correlationId":"fb8aaa57-3916-4bcf-8aa6-011b30b786f6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_izFp0HpQpz03vYmNNFWiDCTTjnqPJ4Gf/operationStatuses/08585456282695798611?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_kxCcTYwkT6xmZqKtOiZOLUlh4ga2kFew/operationStatuses/08585040968846504854?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -367,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:03:38 GMT + - Tue, 17 Oct 2023 02:33:25 GMT expires: - '-1' pragma: @@ -377,7 +386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -395,9 +404,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456282695798611?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968846504854?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -409,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:04:09 GMT + - Tue, 17 Oct 2023 02:33:26 GMT expires: - '-1' pragma: @@ -437,9 +446,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456282695798611?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968846504854?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -451,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:04:40 GMT + - Tue, 17 Oct 2023 02:33:56 GMT expires: - '-1' pragma: @@ -479,9 +488,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456282695798611?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968846504854?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -493,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:11 GMT + - Tue, 17 Oct 2023 02:34:26 GMT expires: - '-1' pragma: @@ -521,9 +530,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456282695798611?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968846504854?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -535,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:42 GMT + - Tue, 17 Oct 2023 02:34:57 GMT expires: - '-1' pragma: @@ -563,21 +572,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_izFp0HpQpz03vYmNNFWiDCTTjnqPJ4Gf","name":"vm_deploy_izFp0HpQpz03vYmNNFWiDCTTjnqPJ4Gf","properties":{"templateHash":"14782513549387754779","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T10:05:12.8282816Z","duration":"PT1M34.4200184S","correlationId":"89c1b14f-4a58-45ae-a31c-3a0f3529e933","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_kxCcTYwkT6xmZqKtOiZOLUlh4ga2kFew","name":"vm_deploy_kxCcTYwkT6xmZqKtOiZOLUlh4ga2kFew","properties":{"templateHash":"11205523780983330830","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:34:32.0231237Z","duration":"PT1M7.5295527S","correlationId":"fb8aaa57-3916-4bcf-8aa6-011b30b786f6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3100' + - '3099' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:42 GMT + - Tue, 17 Oct 2023 02:34:57 GMT expires: - '-1' pragma: @@ -605,52 +614,53 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"790a3ce6-bd16-4682-9981-2beb57a5fe20\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"c92b1312-c7e4-4e40-ac77-c76d8a561098\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.6\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-06-23T10:05:12+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": + \"centos\",\r\n \"osVersion\": \"8.5.2111\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:34:44+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T10:03:57.826356+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:33:49.1235394+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\",\r\n \"statuses\": + \"vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T10:03:57.826356+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:33:49.1391675+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T10:05:09.638863+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:34:27.7179132+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}" @@ -658,11 +668,11 @@ interactions: cache-control: - no-cache content-length: - - '3640' + - '3648' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:44 GMT + - Tue, 17 Oct 2023 02:35:00 GMT expires: - '-1' pragma: @@ -679,7 +689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3925,Microsoft.Compute/LowCostGet30Min;31263 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23986,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -687,7 +697,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -697,18 +707,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"7b2755f0-96cd-43b4-8c7f-4a355d76b508\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2a38901c-13bb-4b66-899c-71e5ae508a62\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"7b2755f0-96cd-43b4-8c7f-4a355d76b508\\\"\",\r\n + \ \"etag\": \"W/\\\"93692521-2f24-470e-aec9-628b83505b93\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e9ad67e6-1c44-40b7-b6e4-c342d38649da\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n + \ \"etag\": \"W/\\\"93692521-2f24-470e-aec9-628b83505b93\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -717,12 +726,13 @@ 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\": - \"uyxurmegbaduxb2ptdtxyarugc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-AC-D9\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"ftyjbdszr5cudaf5rfhojnthdh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-30-C5-EC\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -731,9 +741,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:44 GMT + - Tue, 17 Oct 2023 02:35:02 GMT etag: - - W/"7b2755f0-96cd-43b4-8c7f-4a355d76b508" + - W/"93692521-2f24-470e-aec9-628b83505b93" expires: - '-1' pragma: @@ -743,10 +753,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2cc7e6a-aaaf-4cc4-8053-37ab4845c59e + - 1310cdb1-5bda-47da-a790-d15b172bcd9b status: code: 200 message: OK @@ -754,7 +768,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -764,17 +778,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"0263b608-5987-4fab-99c3-48c943f57534\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b044583c-1e73-4fd9-938c-b7b0c88ac8bb\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c434df07-d8a1-4899-8ece-6fd527689dfc\",\r\n - \ \"ipAddress\": \"20.237.232.216\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"5045d4b1-2b8d-410b-a175-bea0d5147d4a\",\r\n + \ \"ipAddress\": \"40.78.47.126\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -782,13 +796,13 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '878' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:46 GMT + - Tue, 17 Oct 2023 02:35:04 GMT etag: - - W/"0263b608-5987-4fab-99c3-48c943f57534" + - W/"b044583c-1e73-4fd9-938c-b7b0c88ac8bb" expires: - '-1' pragma: @@ -798,10 +812,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d94bdba0-64ff-41f2-986c-6cceb5a8da33 + - 05f8aa55-237b-46bd-a8ef-4f9c26093faa status: code: 200 message: OK @@ -819,42 +837,43 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"790a3ce6-bd16-4682-9981-2beb57a5fe20\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"c92b1312-c7e4-4e40-ac77-c76d8a561098\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n + \ \"name\": \"vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2021' + - '2026' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:46 GMT + - Tue, 17 Oct 2023 02:35:06 GMT expires: - '-1' pragma: @@ -871,7 +890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3923,Microsoft.Compute/LowCostGet30Min;31261 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK @@ -889,12 +908,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c?api-version=2017-03-30 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -905,7 +924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:47 GMT + - Tue, 17 Oct 2023 02:35:07 GMT expires: - '-1' pragma: @@ -933,31 +952,31 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\",\r\n + string: "{\r\n \"name\": \"vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n - \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T10:03:56.0263429+00:00\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n + \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:33:47.7353078+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1040' + - '1046' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:48 GMT + - Tue, 17 Oct 2023 02:35:08 GMT expires: - '-1' pragma: @@ -974,7 +993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4922,Microsoft.Compute/LowCostGet30Min;39226 + - Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119976 status: code: 200 message: OK @@ -992,21 +1011,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '332' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:48 GMT + - Tue, 17 Oct 2023 02:35:09 GMT expires: - '-1' pragma: @@ -1022,7 +1041,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c"}}}' headers: Accept: - application/json @@ -1039,32 +1058,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: body: - string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n - \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": - \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\r\n \"osState\": \"Generalized\"\r\n }\r\n}" + string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0affc438-6667-4e85-b8a2-4ee4eaf1f5ee?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03ef635d-e25c-48da-aa58-41f8be3f0580?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '489' + - '616' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:53 GMT + - Tue, 17 Oct 2023 02:35:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0affc438-6667-4e85-b8a2-4ee4eaf1f5ee?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03ef635d-e25c-48da-aa58-41f8be3f0580?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1077,7 +1096,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1095,32 +1114,22 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0affc438-6667-4e85-b8a2-4ee4eaf1f5ee?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03ef635d-e25c-48da-aa58-41f8be3f0580?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T10:05:54.1366956+00:00\",\r\n \"endTime\": - \"2022-06-23T10:05:54.9491791+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"oSnapshot\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T10:05:54.1366956+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"0affc438-6667-4e85-b8a2-4ee4eaf1f5ee\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:16.6582701+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"03ef635d-e25c-48da-aa58-41f8be3f0580\"\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:55 GMT + - Tue, 17 Oct 2023 02:35:16 GMT expires: - '-1' pragma: @@ -1130,14 +1139,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399986 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -1155,7 +1160,55 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03ef635d-e25c-48da-aa58-41f8be3f0580?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:35:16.6582701+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:17.6738997+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"oSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V2\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"},\"diskSizeGB\":30,\"timeCreated\":\"2023-10-17T02:35:16.6582701+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"03ef635d-e25c-48da-aa58-41f8be3f0580\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '902' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:35:27 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;49995,Microsoft.Compute/GetOperation30Min;399992 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: @@ -1165,8 +1218,8 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T10:05:54.1366956+00:00\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:35:16.6582701+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1177,7 +1230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:56 GMT + - Tue, 17 Oct 2023 02:35:28 GMT expires: - '-1' pragma: @@ -1187,14 +1240,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4916,Microsoft.Compute/LowCostGet30Min;39220 + - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119973 status: code: 200 message: OK @@ -1212,7 +1261,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2017-03-30 response: @@ -1222,8 +1271,8 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_63d8b1e2a4df497494c90b0e75b075ea\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T10:05:54.1366956+00:00\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_cc7b668ea0f44a83abf3ad1ec533305c\"\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:35:16.6582701+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1234,7 +1283,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:57 GMT + - Tue, 17 Oct 2023 02:35:29 GMT expires: - '-1' pragma: @@ -1251,7 +1300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4915,Microsoft.Compute/LowCostGet30Min;39219 + - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119972 status: code: 200 message: OK @@ -1269,21 +1318,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm","DateCreated":"2023-10-17T02:35:02Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:05:58 GMT + - Tue, 17 Oct 2023 02:35:30 GMT expires: - '-1' pragma: @@ -1316,32 +1365,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"sDisk\",\r\n \"location\": \"westus\",\r\n \"tags\": - {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": + string: "{\r\n \"name\": \"sDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\r\n \"osState\": \"Generalized\"\r\n }\r\n}" + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/88ff800f-05a6-4081-9054-a08158e050c8?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/603c5c1e-1db6-4730-bb2f-65cd2eafe46b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '476' + - '567' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:00 GMT + - Tue, 17 Oct 2023 02:35:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/88ff800f-05a6-4081-9054-a08158e050c8?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/603c5c1e-1db6-4730-bb2f-65cd2eafe46b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1352,7 +1401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;2998,Microsoft.Compute/CreateUpdateDisks30Min;24997 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1372,33 +1421,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/88ff800f-05a6-4081-9054-a08158e050c8?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/603c5c1e-1db6-4730-bb2f-65cd2eafe46b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T10:06:01.2773822+00:00\",\r\n \"endTime\": - \"2022-06-23T10:06:01.8086128+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"sDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"timeCreated\": \"2022-06-23T10:06:01.2773822+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n - \ \"name\": \"88ff800f-05a6-4081-9054-a08158e050c8\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:34.877238+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"603c5c1e-1db6-4730-bb2f-65cd2eafe46b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:35:34 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;49994,Microsoft.Compute/GetOperation30Min;399991 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/603c5c1e-1db6-4730-bb2f-65cd2eafe46b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:35:34.877238+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:35.5178807+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"sDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V2\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"timeCreated\":\"2023-10-17T02:35:34.8929339+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"603c5c1e-1db6-4730-bb2f-65cd2eafe46b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1045' + - '898' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:02 GMT + - Tue, 17 Oct 2023 02:35:44 GMT expires: - '-1' pragma: @@ -1415,7 +1505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1433,7 +1523,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2017-03-30 response: @@ -1444,7 +1534,7 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2022-06-23T10:06:01.2773822+00:00\",\r\n + \ },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2023-10-17T02:35:34.8929339+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1455,7 +1545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:03 GMT + - Tue, 17 Oct 2023 02:35:45 GMT expires: - '-1' pragma: @@ -1472,7 +1562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4929,Microsoft.Compute/LowCostGet30Min;39216 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119969 status: code: 200 message: OK @@ -1490,12 +1580,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3?api-version=2017-03-30 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1506,7 +1596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:12 GMT + - Tue, 17 Oct 2023 02:35:46 GMT expires: - '-1' pragma: @@ -1534,18 +1624,18 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf?api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\",\r\n + string: "{\r\n \"name\": \"vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": - \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T10:03:56.0263429+00:00\",\r\n + \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:33:47.7353078+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n \ }\r\n}" headers: @@ -1556,7 +1646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:12 GMT + - Tue, 17 Oct 2023 02:35:47 GMT expires: - '-1' pragma: @@ -1573,7 +1663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4915,Microsoft.Compute/LowCostGet30Min;39202 + - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119968 status: code: 200 message: OK @@ -1591,21 +1681,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm","DateCreated":"2023-10-17T02:35:02Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:12 GMT + - Tue, 17 Oct 2023 02:35:47 GMT expires: - '-1' pragma: @@ -1621,7 +1711,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3"}}}' headers: Accept: - application/json @@ -1638,31 +1728,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: body: - string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n - \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": - {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true\r\n }\r\n}" + string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5a61f3c0-28c7-499d-93cc-21071a8a803a?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93d3f784-ea0f-4ad4-bb3a-5f32b4475290?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '431' + - '613' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:18 GMT + - Tue, 17 Oct 2023 02:35:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5a61f3c0-28c7-499d-93cc-21071a8a803a?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93d3f784-ea0f-4ad4-bb3a-5f32b4475290?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1693,31 +1784,22 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5a61f3c0-28c7-499d-93cc-21071a8a803a?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93d3f784-ea0f-4ad4-bb3a-5f32b4475290?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T10:06:19.7149934+00:00\",\r\n \"endTime\": - \"2022-06-23T10:06:20.4024699+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dSnapshot\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T10:06:19.7149934+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"5a61f3c0-28c7-499d-93cc-21071a8a803a\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:54.2368697+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"93d3f784-ea0f-4ad4-bb3a-5f32b4475290\"\r\n}" headers: cache-control: - no-cache content-length: - - '975' + - '134' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:21 GMT + - Tue, 17 Oct 2023 02:35:54 GMT expires: - '-1' pragma: @@ -1734,7 +1816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399982 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399988 status: code: 200 message: OK @@ -1752,7 +1834,59 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93d3f784-ea0f-4ad4-bb3a-5f32b4475290?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:35:54.2368697+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:54.8462437+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"},\"diskSizeGB\":2,\"timeCreated\":\"2023-10-17T02:35:54.2368697+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"93d3f784-ea0f-4ad4-bb3a-5f32b4475290\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '857' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:36:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399986 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: @@ -1761,8 +1895,8 @@ interactions: \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T10:06:19.7149934+00:00\",\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:35:54.2368697+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1773,7 +1907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:21 GMT + - Tue, 17 Oct 2023 02:36:05 GMT expires: - '-1' pragma: @@ -1790,7 +1924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4913,Microsoft.Compute/LowCostGet30Min;39200 + - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119966 status: code: 200 message: OK @@ -1808,7 +1942,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2017-03-30 response: @@ -1817,8 +1951,8 @@ interactions: \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_ea21519ba5a04a5e8d1de7200efd2abf\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T10:06:19.7149934+00:00\",\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_2dbfbd34e3114f209ecb35ffc6845da3\"\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:35:54.2368697+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -1829,7 +1963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:23 GMT + - Tue, 17 Oct 2023 02:36:06 GMT expires: - '-1' pragma: @@ -1846,7 +1980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4912,Microsoft.Compute/LowCostGet30Min;39199 + - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119964 status: code: 200 message: OK @@ -1864,21 +1998,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm","DateCreated":"2023-10-17T02:35:02Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:24 GMT + - Tue, 17 Oct 2023 02:36:07 GMT expires: - '-1' pragma: @@ -1911,32 +2045,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2017-03-30 response: body: - string: "{\r\n \"name\": \"dDisk\",\r\n \"location\": \"westus\",\r\n \"tags\": - {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true\r\n }\r\n}" + string: "{\r\n \"name\": \"dDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1d205cb8-3ec5-472c-9d5d-ef4c219258cb?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2421ed05-2057-4c3b-b855-aa4d1677d2f4?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: - - '421' + - '567' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:28 GMT + - Tue, 17 Oct 2023 02:36:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1d205cb8-3ec5-472c-9d5d-ef4c219258cb?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2421ed05-2057-4c3b-b855-aa4d1677d2f4?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -1947,9 +2081,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;2997,Microsoft.Compute/CreateUpdateDisks30Min;24996 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1967,32 +2101,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1d205cb8-3ec5-472c-9d5d-ef4c219258cb?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2421ed05-2057-4c3b-b855-aa4d1677d2f4?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2022-06-23T10:06:29.308751+00:00\",\r\n \"endTime\": - \"2022-06-23T10:06:29.9649995+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"timeCreated\": \"2022-06-23T10:06:29.3243719+00:00\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n - \ \"name\": \"1d205cb8-3ec5-472c-9d5d-ef4c219258cb\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:36:13.2683711+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"2421ed05-2057-4c3b-b855-aa4d1677d2f4\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:36:13 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;49988,Microsoft.Compute/GetOperation30Min;399985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2421ed05-2057-4c3b-b855-aa4d1677d2f4?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:36:13.2683711+00:00\",\r\n \"endTime\": + \"2023-10-17T02:36:13.7996897+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"},\"diskSizeGB\":2,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"timeCreated\":\"2023-10-17T02:36:13.2840354+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"}}\r\n + \ },\r\n \"name\": \"2421ed05-2057-4c3b-b855-aa4d1677d2f4\"\r\n}" headers: cache-control: - no-cache content-length: - - '988' + - '857' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:30 GMT + - Tue, 17 Oct 2023 02:36:23 GMT expires: - '-1' pragma: @@ -2009,7 +2185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399980 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -2027,7 +2203,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2017-03-30 response: @@ -2037,7 +2213,7 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n - \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2022-06-23T10:06:29.3243719+00:00\",\r\n + \ },\r\n \"diskSizeGB\": 2,\r\n \"timeCreated\": \"2023-10-17T02:36:13.2840354+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n \ }\r\n}" headers: @@ -2048,7 +2224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:31 GMT + - Tue, 17 Oct 2023 02:36:24 GMT expires: - '-1' pragma: @@ -2065,7 +2241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4914,Microsoft.Compute/LowCostGet30Min;39190 + - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119962 status: code: 200 message: OK @@ -2084,21 +2260,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T10:03:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T02:33:06Z","module":"vm","DateCreated":"2023-10-17T02:35:02Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '266' + - '407' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:32 GMT + - Tue, 17 Oct 2023 02:36:24 GMT expires: - '-1' pragma: @@ -2116,7 +2292,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2127,24 +2303,24 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"4f8de77f-a24c-4c05-88ae-19682e10cca3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b9d5757-f665-4306-8455-e24feca07a24\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b0482fa6-0886-4b07-878f-98e77c023432\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8e90f02c-8f59-41c5-80bf-894ee4b6671f\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"4f8de77f-a24c-4c05-88ae-19682e10cca3\\\"\",\r\n + \ \"etag\": \"W/\\\"9b9d5757-f665-4306-8455-e24feca07a24\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGIZH7WUCN3QFDJ36GCWHPPX3UEYNCVZPWZ7TVRBM7OT4B6AL6SEQZMI2627MT6X2PE/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -2153,11 +2329,11 @@ interactions: cache-control: - no-cache content-length: - - '1535' + - '1594' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:34 GMT + - Tue, 17 Oct 2023 02:36:26 GMT expires: - '-1' pragma: @@ -2174,7 +2350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72b9b2fe-2967-4787-80c0-eca6d3844cd7 + - fd7e518a-51ac-4752-8696-2295d64701cf status: code: 200 message: OK @@ -2222,15 +2398,15 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_weqmG59sd3txxHXx1UciJedlK9bHWYMk","name":"vm_deploy_weqmG59sd3txxHXx1UciJedlK9bHWYMk","properties":{"templateHash":"16771799676747549125","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T10:06:39.8000637Z","duration":"PT0.0002904S","correlationId":"4e2df49e-0d46-4445-a4c9-29dc9548f29d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HNn44BgjYskb32k57XUb2zsSi7xacffZ","name":"vm_deploy_HNn44BgjYskb32k57XUb2zsSi7xacffZ","properties":{"templateHash":"15759967961989933002","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:36:34.3895582Z","duration":"PT0.0001309S","correlationId":"39599905-b393-4963-9005-997964d8bd93","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_weqmG59sd3txxHXx1UciJedlK9bHWYMk/operationStatuses/08585456280880817371?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HNn44BgjYskb32k57XUb2zsSi7xacffZ/operationStatuses/08585040966939974421?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -2238,7 +2414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:06:39 GMT + - Tue, 17 Oct 2023 02:36:35 GMT expires: - '-1' pragma: @@ -2248,7 +2424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -2267,9 +2443,9 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456280880817371?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966939974421?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2281,7 +2457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:07:10 GMT + - Tue, 17 Oct 2023 02:36:35 GMT expires: - '-1' pragma: @@ -2310,9 +2486,9 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456280880817371?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966939974421?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -2324,7 +2500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:07:41 GMT + - Tue, 17 Oct 2023 02:37:05 GMT expires: - '-1' pragma: @@ -2353,9 +2529,9 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456280880817371?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966939974421?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -2367,7 +2543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:11 GMT + - Tue, 17 Oct 2023 02:37:36 GMT expires: - '-1' pragma: @@ -2396,21 +2572,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_weqmG59sd3txxHXx1UciJedlK9bHWYMk","name":"vm_deploy_weqmG59sd3txxHXx1UciJedlK9bHWYMk","properties":{"templateHash":"16771799676747549125","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T10:07:41.9537422Z","duration":"PT1M2.1539689S","correlationId":"4e2df49e-0d46-4445-a4c9-29dc9548f29d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HNn44BgjYskb32k57XUb2zsSi7xacffZ","name":"vm_deploy_HNn44BgjYskb32k57XUb2zsSi7xacffZ","properties":{"templateHash":"15759967961989933002","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:37:19.7923656Z","duration":"PT45.4029383S","correlationId":"39599905-b393-4963-9005-997964d8bd93","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2636' + - '2635' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:11 GMT + - Tue, 17 Oct 2023 02:37:36 GMT expires: - '-1' pragma: @@ -2439,24 +2615,25 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"169d0f30-2d99-492d-bb52-84adb0fab85b\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"9ce1621b-3f85-4714-b500-596c952c7649\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_f636ea8656de4086869d35d8a13f08ca\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_9ac0e89397ec44ab96896267f23443c8\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_f636ea8656de4086869d35d8a13f08ca\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_9ac0e89397ec44ab96896267f23443c8\"\r\n \ },\r\n \"diskSizeGB\": 3\r\n },\r\n {\r\n \ \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": @@ -2464,29 +2641,29 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2022-06-23T10:08:13+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"sDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-06-23T10:07:04.0606521+00:00\"\r\n }\r\n ]\r\n - \ },\r\n {\r\n \"name\": \"vm2_disk2_f636ea8656de4086869d35d8a13f08ca\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"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\": + \"2023-10-17T02:37:39+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"sDisk\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-17T02:36:59.7981089+00:00\"\r\n + \ }\r\n ]\r\n },\r\n {\r\n \"name\": + \"vm2_disk2_9ac0e89397ec44ab96896267f23443c8\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-06-23T10:07:04.0606521+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:36:59.8137325+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"dDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-06-23T10:07:04.0606521+00:00\"\r\n }\r\n ]\r\n + \"2023-10-17T02:36:59.8137325+00:00\"\r\n }\r\n ]\r\n \ }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": - \"Provisioning succeeded\",\r\n \"time\": \"2022-06-23T10:07:38.5297421+00:00\"\r\n + \"Provisioning succeeded\",\r\n \"time\": \"2023-10-17T02:37:14.0951797+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}" @@ -2498,7 +2675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:13 GMT + - Tue, 17 Oct 2023 02:37:39 GMT expires: - '-1' pragma: @@ -2515,7 +2692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3930,Microsoft.Compute/LowCostGet30Min;31198 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -2523,7 +2700,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2534,18 +2711,17 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"d786cdae-4f83-46d8-a92c-216708b9eb5f\\\"\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c5f69d98-71ad-46ba-9a45-cb8e524701d5\",\r\n - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"d786cdae-4f83-46d8-a92c-216708b9eb5f\\\"\",\r\n + \ \"etag\": \"W/\\\"ed22dc3a-41f7-4aa3-aec6-ecf0c15d5b12\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"cacd8e41-2ad9-454c-b485-6c0e579419a7\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n + \ \"etag\": \"W/\\\"ed22dc3a-41f7-4aa3-aec6-ecf0c15d5b12\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2554,12 +2730,13 @@ 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\": - \"uyxurmegbaduxb2ptdtxyarugc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5C-97-F7\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"ftyjbdszr5cudaf5rfhojnthdh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-30-7D-01\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\"\r\n}" headers: cache-control: - no-cache @@ -2568,9 +2745,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:15 GMT + - Tue, 17 Oct 2023 02:37:41 GMT etag: - - W/"d786cdae-4f83-46d8-a92c-216708b9eb5f" + - W/"ed22dc3a-41f7-4aa3-aec6-ecf0c15d5b12" expires: - '-1' pragma: @@ -2587,7 +2764,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da243da4-35e1-4280-82e6-4cd2fca9d7af + - 9c0fcc5c-ef6e-4d6a-be87-5cd54f18e348 status: code: 200 message: OK @@ -2595,7 +2772,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2606,17 +2783,17 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"28c5e4c5-b042-44f5-b4b3-22867c200c39\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"8a786c07-00d4-48b7-8289-3c5fc7a29af8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"e3ae7f69-87ad-43b9-be1d-088fb77a1503\",\r\n - \ \"ipAddress\": \"20.237.234.132\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"cf5b247d-8a1e-4806-8e7d-ee6e7cfb1e94\",\r\n + \ \"ipAddress\": \"20.245.195.38\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -2624,13 +2801,13 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '879' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:15 GMT + - Tue, 17 Oct 2023 02:37:42 GMT etag: - - W/"28c5e4c5-b042-44f5-b4b3-22867c200c39" + - W/"8a786c07-00d4-48b7-8289-3c5fc7a29af8" expires: - '-1' pragma: @@ -2647,7 +2824,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10639ff6-6e33-414a-9539-1823ca85fd23 + - cfdea048-8fb2-4c22-b117-2b0baa7d75f6 status: code: 200 message: OK @@ -2665,32 +2842,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"169d0f30-2d99-492d-bb52-84adb0fab85b\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"9ce1621b-3f85-4714-b500-596c952c7649\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_f636ea8656de4086869d35d8a13f08ca\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_9ac0e89397ec44ab96896267f23443c8\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_f636ea8656de4086869d35d8a13f08ca\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_9ac0e89397ec44ab96896267f23443c8\"\r\n \ },\r\n \"diskSizeGB\": 3\r\n },\r\n {\r\n \ \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2\r\n }\r\n ]\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -2699,7 +2877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 10:08:16 GMT + - Tue, 17 Oct 2023 02:37:44 GMT expires: - '-1' pragma: @@ -2716,7 +2894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3928,Microsoft.Compute/LowCostGet30Min;31196 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_extension.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_extension.yaml index d5e2d32420b..8567bb5ce31 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_extension.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vm_extension.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-06-25T06:32:18Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-10-17T02:33:06Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:15 GMT + - Tue, 17 Oct 2023 02:33:11 GMT expires: - '-1' pragma: @@ -59,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -133,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -141,13 +121,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Sun, 25 Jun 2023 06:32:16 GMT + - Tue, 17 Oct 2023 02:33:12 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Sun, 25 Jun 2023 06:37:16 GMT + - Tue, 17 Oct 2023 02:38:12 GMT source-age: - - '252' + - '265' strict-transport-security: - max-age=31536000 vary: @@ -161,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - df7a8740cc8b85487555ea9e25f30b7ca92411dc + - 825d66dc72a54da32a536d856b6f14cf4f0c5afa x-frame-options: - deny x-github-request-id: - - 2558:0363:A6C2B:CE301:6497D9DF + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-tyo11948-TYO + - cache-qpg1266-QPG x-timer: - - S1687674736.361380,VS0,VE1 + - S1697509992.180012,VS0,VE2 x-xss-protection: - 1; mode=block status: @@ -189,23 +169,23 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:17 GMT + - Tue, 17 Oct 2023 02:33:12 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -240,33 +220,34 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2017-12-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:19 GMT + - Tue, 17 Oct 2023 02:33:14 GMT expires: - '-1' pragma: @@ -283,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73966 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -301,7 +282,7 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -315,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:19 GMT + - Tue, 17 Oct 2023 02:33:15 GMT expires: - '-1' pragma: @@ -357,9 +338,9 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "myvm", - "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "myvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "incremental"}}' headers: @@ -372,29 +353,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3173' + - '3194' Content-Type: - application/json ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_Zk7pbrWKSzkRzIp0GZejBaumKgcyv9jV","name":"vm_deploy_Zk7pbrWKSzkRzIp0GZejBaumKgcyv9jV","properties":{"templateHash":"17443082432839089919","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-06-25T06:32:24.9204621Z","duration":"PT0.0006003S","correlationId":"20f7d6d7-ba71-4f79-9eca-699d48938921","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BzNnMtkSHcEuEeQXkcqbPlfgP643zYTt","name":"vm_deploy_BzNnMtkSHcEuEeQXkcqbPlfgP643zYTt","properties":{"templateHash":"9913185265307076370","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:33:23.3380754Z","duration":"PT0.0001277S","correlationId":"029226f7-e809-4bcf-8913-4dc678c7cfed","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_Zk7pbrWKSzkRzIp0GZejBaumKgcyv9jV/operationStatuses/08585139321426193791?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BzNnMtkSHcEuEeQXkcqbPlfgP643zYTt/operationStatuses/08585040968853560639?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2417' + - '2416' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:25 GMT + - Tue, 17 Oct 2023 02:33:24 GMT expires: - '-1' pragma: @@ -422,9 +403,51 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139321426193791?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968853560639?api-version=2018-05-01 + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:33:25 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: + - -n -g --image --authentication-type --admin-username --admin-password + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968853560639?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -436,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:25 GMT + - Tue, 17 Oct 2023 02:33:55 GMT expires: - '-1' pragma: @@ -464,9 +487,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139321426193791?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968853560639?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -478,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:56 GMT + - Tue, 17 Oct 2023 02:34:26 GMT expires: - '-1' pragma: @@ -506,21 +529,21 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_Zk7pbrWKSzkRzIp0GZejBaumKgcyv9jV","name":"vm_deploy_Zk7pbrWKSzkRzIp0GZejBaumKgcyv9jV","properties":{"templateHash":"17443082432839089919","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-06-25T06:32:54.6541694Z","duration":"PT29.7343076S","correlationId":"20f7d6d7-ba71-4f79-9eca-699d48938921","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BzNnMtkSHcEuEeQXkcqbPlfgP643zYTt","name":"vm_deploy_BzNnMtkSHcEuEeQXkcqbPlfgP643zYTt","properties":{"templateHash":"9913185265307076370","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:34:10.7040093Z","duration":"PT47.3660616S","correlationId":"029226f7-e809-4bcf-8913-4dc678c7cfed","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '3247' + - '3246' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:56 GMT + - Tue, 17 Oct 2023 02:34:26 GMT expires: - '-1' pragma: @@ -548,42 +571,43 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6c6ac0e6-8748-4151-84e3-ff469cd40a74\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"3b78a6ae-645c-4441-bdbc-ad5ac1996805\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_a8a641a93e394bb7b731048fb84ee045\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\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\": \"2023-06-25T06:32:58+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:34:16+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:32:38.3096155+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:33:50.451686+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:32:48.5597628+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:34:03.8581334+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 +615,11 @@ interactions: cache-control: - no-cache content-length: - - '2749' + - '2857' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:32:58 GMT + - Tue, 17 Oct 2023 02:34:27 GMT expires: - '-1' pragma: @@ -612,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31850 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -630,17 +654,17 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\",\r\n - \ \"etag\": \"W/\\\"84a67ce7-e3a7-4462-9d9a-51cc12e2d348\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"c9f8f746-f086-4117-97f1-0e825370ac37\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"df28f10e-f950-4391-8562-2f68032a2ad3\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"5ae096b6-9461-4782-b626-141539448dfc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigmyvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\",\r\n - \ \"etag\": \"W/\\\"84a67ce7-e3a7-4462-9d9a-51cc12e2d348\\\"\",\r\n + \ \"etag\": \"W/\\\"c9f8f746-f086-4117-97f1-0e825370ac37\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -649,8 +673,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\": - \"lcirlpfhb1ve3k4tcyogthefta.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5B-00-5B\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"mu5i3j1fe1bejcxg2nrobn5lvg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-30-5F-3C\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\"\r\n @@ -664,9 +688,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:00 GMT + - Tue, 17 Oct 2023 02:34:30 GMT etag: - - W/"84a67ce7-e3a7-4462-9d9a-51cc12e2d348" + - W/"c9f8f746-f086-4117-97f1-0e825370ac37" expires: - '-1' pragma: @@ -683,7 +707,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ebdf0760-a92d-429b-b8b1-7778e3cd9f37 + - e9b6cadf-7ae0-4dc3-ba5c-ed15ddcf868d status: code: 200 message: OK @@ -701,16 +725,16 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"myvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP\",\r\n - \ \"etag\": \"W/\\\"7a92a9fc-7762-46d9-917d-baf6f907fd96\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"721fb3eb-ebdc-441c-a143-7993727bf489\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b25af951-5b36-412a-b4b6-27e24a4e28d0\",\r\n - \ \"ipAddress\": \"104.42.193.48\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b6c55a74-0a1d-48f1-bf41-8ef90ccd4a0b\",\r\n + \ \"ipAddress\": \"40.78.50.228\",\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -719,13 +743,13 @@ interactions: cache-control: - no-cache content-length: - - '905' + - '904' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:01 GMT + - Tue, 17 Oct 2023 02:34:32 GMT etag: - - W/"7a92a9fc-7762-46d9-917d-baf6f907fd96" + - W/"721fb3eb-ebdc-441c-a143-7993727bf489" expires: - '-1' pragma: @@ -742,7 +766,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25fcff8a-07db-4656-ad81-c5c7150f7417 + - ffdbec53-8b11-40c8-b77c-75dc2b6f1a67 status: code: 200 message: OK @@ -760,37 +784,38 @@ interactions: ParameterSetName: - --vm-name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6c6ac0e6-8748-4151-84e3-ff469cd40a74\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"3b78a6ae-645c-4441-bdbc-ad5ac1996805\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_a8a641a93e394bb7b731048fb84ee045\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": - []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1578' + - '1599' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:03 GMT + - Tue, 17 Oct 2023 02:34:33 GMT expires: - '-1' pragma: @@ -807,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31849 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -825,42 +850,43 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6c6ac0e6-8748-4151-84e3-ff469cd40a74\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"3b78a6ae-645c-4441-bdbc-ad5ac1996805\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_a8a641a93e394bb7b731048fb84ee045\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"myvm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:33:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:34:16+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:32:38.3096155+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:33:50.451686+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:32:48.5597628+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:34:03.8581334+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}" @@ -868,11 +894,11 @@ interactions: cache-control: - no-cache content-length: - - '2837' + - '2857' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:04 GMT + - Tue, 17 Oct 2023 02:34:34 GMT expires: - '-1' pragma: @@ -889,12 +915,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31848 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"forceUpdateTag": "a1d9f724-49ce-4299-9951-9fdec10c2ec1", + body: '{"location": "westus", "properties": {"forceUpdateTag": "e0b51153-0271-47d2-82bb-0f0240ba10c6", "publisher": "Microsoft.OSTCExtensions", "type": "VMAccessForLinux", "typeHandlerVersion": "1.2", "autoUpgradeMinorVersion": true, "protectedSettings": {"username": "foouser1", "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8InHIPLAu6lMc0d+5voyXqigZfT5r6fAM1+FQAi+mkPDdk2hNq1BG0Bwfc88Gm7BImw8TS+x2bnZmhCbVnHd6BPCDY7a+cHCSqrQMW89Cv6Vl4ueGOeAWHpJTV9CTLVz4IY1x4HBdkLI2lKIHri9+z7NIdvFk7iOkMVGyez5H1xDbF2szURxgc4I2/o5wycSwX+G8DrtsBvWLmFv9YAPx+VkEHQDjR0WWezOjuo1rDn6MQfiKfqAjPuInwNOg5AIxXAOResrin2PUlArNtdDH1zlvI4RZi36+tJO7mtm3dJiKs4Sj7G6b1CjIU6aaj27MmKy3arIFChYav9yYM3IT"}}}' @@ -914,7 +940,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-12-01 response: @@ -922,14 +948,14 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"a1d9f724-49ce-4299-9951-9fdec10c2ec1\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"e0b51153-0271-47d2-82bb-0f0240ba10c6\",\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/096cfdc5-e638-46fa-8c5e-e2eea45d380c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/126de07b-f83b-4122-ad20-b0173a7895e0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 cache-control: - no-cache content-length: @@ -937,7 +963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:07 GMT + - Tue, 17 Oct 2023 02:34:40 GMT expires: - '-1' pragma: @@ -950,7 +976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1191 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -970,13 +996,13 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/096cfdc5-e638-46fa-8c5e-e2eea45d380c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/126de07b-f83b-4122-ad20-b0173a7895e0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:33:07.5286879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"096cfdc5-e638-46fa-8c5e-e2eea45d380c\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:34:40.2805252+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"126de07b-f83b-4122-ad20-b0173a7895e0\"\r\n}" headers: cache-control: - no-cache @@ -985,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:08 GMT + - Tue, 17 Oct 2023 02:34:40 GMT expires: - '-1' pragma: @@ -1002,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29859 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14986 status: code: 200 message: OK @@ -1020,14 +1046,14 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/096cfdc5-e638-46fa-8c5e-e2eea45d380c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/126de07b-f83b-4122-ad20-b0173a7895e0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:33:07.5286879+00:00\",\r\n \"endTime\": - \"2023-06-25T06:33:22.9663578+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"096cfdc5-e638-46fa-8c5e-e2eea45d380c\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:34:40.2805252+00:00\",\r\n \"endTime\": + \"2023-10-17T02:34:50.5150443+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"126de07b-f83b-4122-ad20-b0173a7895e0\"\r\n}" headers: cache-control: - no-cache @@ -1036,7 +1062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:38 GMT + - Tue, 17 Oct 2023 02:35:11 GMT expires: - '-1' pragma: @@ -1053,7 +1079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29858 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1071,7 +1097,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-12-01 response: @@ -1079,7 +1105,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"a1d9f724-49ce-4299-9951-9fdec10c2ec1\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"e0b51153-0271-47d2-82bb-0f0240ba10c6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1090,7 +1116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:40 GMT + - Tue, 17 Oct 2023 02:35:12 GMT expires: - '-1' pragma: @@ -1107,7 +1133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31846 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1125,60 +1151,61 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2017-12-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6c6ac0e6-8748-4151-84e3-ff469cd40a74\",\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 },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"3b78a6ae-645c-4441-bdbc-ad5ac1996805\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_a8a641a93e394bb7b731048fb84ee045\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"myvm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:33:19+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n - \ \"typeHandlerVersion\": \"1.5.15\",\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\": \"myvm_disk1_57a1e797b742440f9868c9b8da1e24b6\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:34:44+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n + \ \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n \"typeHandlerVersion\": + \"1.5.16\",\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\": + \"myvm_disk1_a8a641a93e394bb7b731048fb84ee045\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:32:38.3096155+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:33:50.451686+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n \"typeHandlerVersion\": - \"1.5.15\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"1.5.16\",\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 \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:33:22.9507315+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:34:50.5150443+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 \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"forceUpdateTag\": \"a1d9f724-49ce-4299-9951-9fdec10c2ec1\",\r\n + true,\r\n \"forceUpdateTag\": \"e0b51153-0271-47d2-82bb-0f0240ba10c6\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \ \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n }\r\n ]\r\n}" @@ -1186,11 +1213,11 @@ interactions: cache-control: - no-cache content-length: - - '4314' + - '4334' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:41 GMT + - Tue, 17 Oct 2023 02:35:15 GMT expires: - '-1' pragma: @@ -1207,7 +1234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31845 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;34 status: code: 200 message: OK @@ -1225,7 +1252,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-12-01 response: @@ -1233,7 +1260,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"a1d9f724-49ce-4299-9951-9fdec10c2ec1\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"e0b51153-0271-47d2-82bb-0f0240ba10c6\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1244,7 +1271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:43 GMT + - Tue, 17 Oct 2023 02:35:16 GMT expires: - '-1' pragma: @@ -1261,7 +1288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31844 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;33 status: code: 200 message: OK @@ -1281,7 +1308,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2017-12-01 response: @@ -1291,17 +1318,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2cb67590-db14-4068-9bf8-bfd3c0ce51e7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e7397a9e-d544-4544-8a44-7eee1ef9feb0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 cache-control: - no-cache content-length: - '0' date: - - Sun, 25 Jun 2023 06:33:45 GMT + - Tue, 17 Oct 2023 02:35:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2cb67590-db14-4068-9bf8-bfd3c0ce51e7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e7397a9e-d544-4544-8a44-7eee1ef9feb0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2017-12-01 pragma: - no-cache server: @@ -1312,7 +1339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1190 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1332,13 +1359,13 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2cb67590-db14-4068-9bf8-bfd3c0ce51e7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e7397a9e-d544-4544-8a44-7eee1ef9feb0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:33:45.6540339+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2cb67590-db14-4068-9bf8-bfd3c0ce51e7\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:19.5935843+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e7397a9e-d544-4544-8a44-7eee1ef9feb0\"\r\n}" headers: cache-control: - no-cache @@ -1347,7 +1374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:33:45 GMT + - Tue, 17 Oct 2023 02:35:19 GMT expires: - '-1' pragma: @@ -1364,7 +1391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29857 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK @@ -1382,23 +1409,23 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2cb67590-db14-4068-9bf8-bfd3c0ce51e7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e7397a9e-d544-4544-8a44-7eee1ef9feb0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:33:45.6540339+00:00\",\r\n \"endTime\": - \"2023-06-25T06:33:55.904143+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2cb67590-db14-4068-9bf8-bfd3c0ce51e7\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:19.5935843+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:29.8437333+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e7397a9e-d544-4544-8a44-7eee1ef9feb0\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:34:15 GMT + - Tue, 17 Oct 2023 02:35:50 GMT expires: - '-1' pragma: @@ -1415,7 +1442,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14988 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_create_auth.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_create_auth.yaml index 8ba01d03efb..387ce6e3451 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_create_auth.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_create_auth.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -17,26 +17,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -59,7 +60,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -70,19 +71,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 11:30:23 GMT + - Tue, 17 Oct 2023 02:33:11 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 11:35:23 GMT + - Tue, 17 Oct 2023 02:38:11 GMT source-age: - - '166' + - '264' strict-transport-security: - max-age=31536000 vary: @@ -96,15 +99,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 6ac74e2b75796ca6ec3b570b79d62dbad4df7995 + - 95326d103f63297d763b4d3af2c30a15ad3c1f85 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1253-QPG + - cache-qpg1229-QPG x-timer: - - S1655983823.480752,VS0,VE1 + - S1697509992.749023,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -124,23 +127,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:30:24 GMT + - Tue, 17 Oct 2023 02:33:12 GMT expires: - '-1' pragma: @@ -157,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980 status: code: 200 message: OK @@ -175,30 +178,34 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2017-12-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:30:26 GMT + - Tue, 17 Oct 2023 02:33:14 GMT expires: - '-1' pragma: @@ -215,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73990 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73987 status: code: 200 message: OK @@ -223,7 +230,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -233,7 +240,7 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -247,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:30:27 GMT + - Tue, 17 Oct 2023 02:33:15 GMT expires: - '-1' pragma: @@ -286,13 +293,13 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": - "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vmss16044", "adminUsername": "myadmin", "adminPassword": - "[parameters(''adminPassword'')]", "linuxConfiguration": {"disablePasswordAuthentication": + "Debian", "offer": "debian-11", "sku": "11-backports-gen2", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss1118b", "adminUsername": "myadmin", + "adminPassword": "[parameters(''adminPassword'')]", "linuxConfiguration": {"disablePasswordAuthentication": false, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss16044Nic", "properties": {"ipConfigurations": [{"name": "vmss16044IPConfig", + [{"name": "vmss1118bNic", "properties": {"ipConfigurations": [{"name": "vmss1118bIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}], @@ -310,29 +317,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4532' + - '4547' Content-Type: - application/json ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_X9aURWgAZUsNR7k8AEiz3rQM1hMFEsJD","name":"vmss_deploy_X9aURWgAZUsNR7k8AEiz3rQM1hMFEsJD","properties":{"templateHash":"5622951102354622945","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T11:30:43.6334117Z","duration":"PT0.0008217S","correlationId":"c99fb650-a0d2-424a-9ce6-7d41304a8ef0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_yNcwXoovus2H3pgERqZ1lEwIum9KeRUJ","name":"vmss_deploy_yNcwXoovus2H3pgERqZ1lEwIum9KeRUJ","properties":{"templateHash":"9666389603314196611","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:33:24.3519856Z","duration":"PT0.000229S","correlationId":"ac87903d-3f59-4a72-ae73-1cbcbe532c57","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_X9aURWgAZUsNR7k8AEiz3rQM1hMFEsJD/operationStatuses/08585456230445141082?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_yNcwXoovus2H3pgERqZ1lEwIum9KeRUJ/operationStatuses/08585040968839873638?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2403' + - '2402' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:30:45 GMT + - Tue, 17 Oct 2023 02:33:26 GMT expires: - '-1' pragma: @@ -342,7 +349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -360,21 +367,21 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456230445141082?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968839873638?api-version=2018-05-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:31:16 GMT + - Tue, 17 Oct 2023 02:33:27 GMT expires: - '-1' pragma: @@ -402,9 +409,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456230445141082?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968839873638?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -416,7 +423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:31:47 GMT + - Tue, 17 Oct 2023 02:33:57 GMT expires: - '-1' pragma: @@ -444,21 +451,21 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456230445141082?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968839873638?api-version=2018-05-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:18 GMT + - Tue, 17 Oct 2023 02:34:29 GMT expires: - '-1' pragma: @@ -486,23 +493,21 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968839873638?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_X9aURWgAZUsNR7k8AEiz3rQM1hMFEsJD","name":"vmss_deploy_X9aURWgAZUsNR7k8AEiz3rQM1hMFEsJD","properties":{"templateHash":"5622951102354622945","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T11:32:13.2057843Z","duration":"PT1M29.5731943S","correlationId":"c99fb650-a0d2-424a-9ce6-7d41304a8ef0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss16044","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss16044Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss16044IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"219be72c-6b5d-4440-adec-0f857833160b","timeCreated":"2022-06-23T11:31:08.8268115+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '5606' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:18 GMT + - Tue, 17 Oct 2023 02:34:59 GMT expires: - '-1' pragma: @@ -523,107 +528,40 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - vmss create Connection: - keep-alive + ParameterSetName: + - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n - \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": - {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2019Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_yNcwXoovus2H3pgERqZ1lEwIum9KeRUJ","name":"vmss_deploy_yNcwXoovus2H3pgERqZ1lEwIum9KeRUJ","properties":{"templateHash":"9666389603314196611","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:34:29.515898Z","duration":"PT1M5.1641414S","correlationId":"ac87903d-3f59-4a72-ae73-1cbcbe532c57","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1118b","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1118bNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1118bIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"429cf55f-e01c-45d9-a18c-4f49283b0422","timeCreated":"2023-10-17T02:33:52.5298438+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' cache-control: - - max-age=300 - connection: - - keep-alive + - no-cache content-length: - - '3463' - content-security-policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox + - '5709' content-type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:19 GMT - etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - Tue, 17 Oct 2023 02:35:00 GMT expires: - - Thu, 23 Jun 2022 11:37:19 GMT - source-age: - - '282' + - '-1' + pragma: + - no-cache strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains vary: - - Authorization,Accept-Encoding,Origin - via: - - 1.1 varnish - x-cache: - - HIT - x-cache-hits: - - '1' + - Accept-Encoding x-content-type-options: - nosniff - x-fastly-request-id: - - bab2032f285e1dfb7793a166bb906979cdd88220 - x-frame-options: - - deny - x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 - x-served-by: - - cache-qpg1227-QPG - x-timer: - - S1655983940.993966,VS0,VE2 - x-xss-protection: - - 1; mode=block status: code: 200 message: OK @@ -641,23 +579,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '273' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:21 GMT + - Tue, 17 Oct 2023 02:35:01 GMT expires: - '-1' pragma: @@ -674,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986 status: code: 200 message: OK @@ -692,9 +630,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2017-12-01 response: body: string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": @@ -703,19 +641,21 @@ interactions: {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1008' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:22 GMT + - Tue, 17 Oct 2023 02:35:02 GMT expires: - '-1' pragma: @@ -732,7 +672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73987 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73992 status: code: 200 message: OK @@ -740,7 +680,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -750,27 +690,27 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\r\n - \ \"etag\": \"W/\\\"ff74fea5-2954-40df-a39c-2daf857bfc08\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e9f6c0b1-ed8c-4d33-8ff6-6c2345933668\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c06f9353-e0d8-46b8-aa0f-c73f23eb721d\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"38e50784-ce53-4f00-b5d8-9a9205f83679\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmss1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\r\n - \ \"etag\": \"W/\\\"ff74fea5-2954-40df-a39c-2daf857bfc08\\\"\",\r\n + \ \"etag\": \"W/\\\"e9f6c0b1-ed8c-4d33-8ff6-6c2345933668\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16044Nic/ipConfigurations/vmss16044IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss16044Nic/ipConfigurations/vmss16044IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss16044Nic/ipConfigurations/vmss16044IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss16044Nic/ipConfigurations/vmss16044IPConfig\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSX2ZOWPIYGMG7AIINX4GIEXQAXO2LFT457KONJWTFG2TS3RT/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/0/NETWORKINTERFACES/VMSS1118BNIC/ipConfigurations/VMSS1118BIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSX2ZOWPIYGMG7AIINX4GIEXQAXO2LFT457KONJWTFG2TS3RT/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/1/NETWORKINTERFACES/VMSS1118BNIC/ipConfigurations/VMSS1118BIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSX2ZOWPIYGMG7AIINX4GIEXQAXO2LFT457KONJWTFG2TS3RT/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS1118BNIC/ipConfigurations/VMSS1118BIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSX2ZOWPIYGMG7AIINX4GIEXQAXO2LFT457KONJWTFG2TS3RT/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS1118BNIC/ipConfigurations/VMSS1118BIPCONFIG\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -779,11 +719,11 @@ interactions: cache-control: - no-cache content-length: - - '2587' + - '2751' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:23 GMT + - Tue, 17 Oct 2023 02:35:04 GMT expires: - '-1' pragma: @@ -800,7 +740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ce8bb93-c9f4-4e5e-939a-3171c74bb332 + - 6a4b1715-7f95-46bf-8260-729d68369e78 status: code: 200 message: OK @@ -824,12 +764,12 @@ interactions: null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss27512", "adminUsername": + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss24846", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss27512Nic", "properties": {"ipConfigurations": [{"name": "vmss27512IPConfig", + [{"name": "vmss24846Nic", "properties": {"ipConfigurations": [{"name": "vmss24846IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}], @@ -853,23 +793,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uh9z75m7GuVdNYcj0ogTUw2jFnkNFbxK","name":"vmss_deploy_Uh9z75m7GuVdNYcj0ogTUw2jFnkNFbxK","properties":{"templateHash":"14190690820000428691","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T11:32:37.3483842Z","duration":"PT0.0001286S","correlationId":"49194a44-dbb2-42bf-96bc-28e8cfa612ba","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_7RskJo9t8XowFC3IK438IHCuSdAJTLPY","name":"vmss_deploy_7RskJo9t8XowFC3IK438IHCuSdAJTLPY","properties":{"templateHash":"4193681009274783036","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:35:14.2715462Z","duration":"PT0.0008052S","correlationId":"4c7d46d6-bf3b-4400-8d66-bc462cb2efa8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uh9z75m7GuVdNYcj0ogTUw2jFnkNFbxK/operationStatuses/08585456229304598320?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_7RskJo9t8XowFC3IK438IHCuSdAJTLPY/operationStatuses/08585040967742515302?api-version=2018-05-01 cache-control: - no-cache content-length: - - '1821' + - '1820' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:32:38 GMT + - Tue, 17 Oct 2023 02:35:16 GMT expires: - '-1' pragma: @@ -879,7 +819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -897,9 +837,51 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040967742515302?api-version=2018-05-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:35:17 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: + - --image -l -g -n --authentication-type --admin-username --ssh-key-value + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456229304598320?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040967742515302?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -911,7 +893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:33:10 GMT + - Tue, 17 Oct 2023 02:35:47 GMT expires: - '-1' pragma: @@ -939,9 +921,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456229304598320?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040967742515302?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -953,7 +935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:33:41 GMT + - Tue, 17 Oct 2023 02:36:19 GMT expires: - '-1' pragma: @@ -981,23 +963,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uh9z75m7GuVdNYcj0ogTUw2jFnkNFbxK","name":"vmss_deploy_Uh9z75m7GuVdNYcj0ogTUw2jFnkNFbxK","properties":{"templateHash":"14190690820000428691","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T11:33:33.9073358Z","duration":"PT56.5590802S","correlationId":"49194a44-dbb2-42bf-96bc-28e8cfa612ba","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss27512","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_7RskJo9t8XowFC3IK438IHCuSdAJTLPY","name":"vmss_deploy_7RskJo9t8XowFC3IK438IHCuSdAJTLPY","properties":{"templateHash":"4193681009274783036","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:36:08.8808096Z","duration":"PT54.6100686S","correlationId":"4c7d46d6-bf3b-4400-8d66-bc462cb2efa8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss24846","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss27512Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss27512IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"6e842988-7bf1-4397-bd8b-116edc9dfe35","timeCreated":"2022-06-23T11:32:54.0457135+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' + test@example.com\n"}]},"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss24846Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss24846IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"46eef49a-e842-4e44-ac39-cbf935f0c910","timeCreated":"2023-10-17T02:35:31.3749988+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4856' + - '4917' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 11:33:42 GMT + - Tue, 17 Oct 2023 02:36:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_existing_lb.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_existing_lb.yaml index baf1e922597..6ce4c25a34d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_existing_lb.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_existing_lb.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T12:08:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-17T02:35:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '355' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:08:49 GMT + - Tue, 17 Oct 2023 02:35:47 GMT expires: - '-1' pragma: @@ -55,21 +55,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_existing_lb000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2018-05-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2018-05-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTQ0IU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxWZFpWVTVEU0VrdFRVbERVazlUVDBaVU9qSkZUa1ZVVjA5U1N6b3lSazVGVkZkUFVrdFRSVU5WVWtsVVdVZFNUMVZRVXpveVJsUkZVMVE2TWtST1UwY3RSVUZUVkZWVCJ9"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '579' + - '12' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:08:50 GMT + - Tue, 17 Oct 2023 02:35:47 GMT expires: - '-1' pragma: @@ -84,7 +84,17 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2017-10-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": + {}, "apiVersion": "2017-10-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], + "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": + [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, + "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": + "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -94,95 +104,85 @@ interactions: - network lb create Connection: - keep-alive + Content-Length: + - '1103' + Content-Type: + - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2018-05-01&%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTQ0IU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxWZFpWVTVEU0VrdFRVbERVazlUVDBaVU9qSkZUa1ZVVjA5U1N6b3lSazVGVkZkUFVrdFRSVU5WVWtsVVdVZFNUMVZRVXpveVJsUkZVMVE2TWtST1UwY3RSVUZUVkZWVCJ9 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_8fUpdmc9W5AEUZgng3jkv87R1osf73JS","name":"lb_deploy_8fUpdmc9W5AEUZgng3jkv87R1osf73JS","properties":{"templateHash":"4197878718785523353","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:35:54.4348868Z","duration":"PT0.0000804S","correlationId":"04c5ffd8-126b-492b-b445-001783c7ece8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_8fUpdmc9W5AEUZgng3jkv87R1osf73JS/operationStatuses/08585040967335368768?api-version=2018-05-01 cache-control: - no-cache content-length: - - '12' + - '1194' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:08:50 GMT + - Tue, 17 Oct 2023 02:35:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2017-10-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": - {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": - {}, "apiVersion": "2017-10-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], - "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, - "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": - "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network lb create Connection: - keep-alive - Content-Length: - - '1103' - Content-Type: - - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040967335368768?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_h5RXZBUN5Y6FDQtsZwLozT1rprAVdeVm","name":"lb_deploy_h5RXZBUN5Y6FDQtsZwLozT1rprAVdeVm","properties":{"templateHash":"8630449602695253196","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T12:08:55.9103146Z","duration":"PT0.0001853S","correlationId":"99cd7527-8376-4a59-8b04-d58652cbda96","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' + string: '{"status":"Accepted"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_h5RXZBUN5Y6FDQtsZwLozT1rprAVdeVm/operationStatuses/08585456207517876095?api-version=2018-05-01 cache-control: - no-cache content-length: - - '1194' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:08:56 GMT + - Tue, 17 Oct 2023 02:35:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -197,9 +197,9 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456207517876095?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040967335368768?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -211,13 +211,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:27 GMT + - Tue, 17 Oct 2023 02:36:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -237,27 +239,29 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_h5RXZBUN5Y6FDQtsZwLozT1rprAVdeVm","name":"lb_deploy_h5RXZBUN5Y6FDQtsZwLozT1rprAVdeVm","properties":{"templateHash":"8630449602695253196","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T12:09:14.9247457Z","duration":"PT19.0146164S","correlationId":"99cd7527-8376-4a59-8b04-d58652cbda96","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"5f14a443-8178-427d-8640-41f819801719","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"fdc1058a-134a-4464-bf72-84664251ab82\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"fdc1058a-134a-4464-bf72-84664251ab82\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_8fUpdmc9W5AEUZgng3jkv87R1osf73JS","name":"lb_deploy_8fUpdmc9W5AEUZgng3jkv87R1osf73JS","properties":{"templateHash":"4197878718785523353","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:36:17.8378024Z","duration":"PT23.402996S","correlationId":"04c5ffd8-126b-492b-b445-001783c7ece8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6aadcb1b-e380-49e6-aba6-5f26e4a5921a","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"43e8d18d-4a98-41c8-a643-082e81a443d8\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"43e8d18d-4a98-41c8-a643-082e81a443d8\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' headers: cache-control: - no-cache content-length: - - '2813' + - '2812' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:28 GMT + - Tue, 17 Oct 2023 02:36:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -277,21 +281,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T12:08:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-17T02:35:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '355' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:28 GMT + - Tue, 17 Oct 2023 02:36:27 GMT expires: - '-1' pragma: @@ -315,7 +319,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -323,26 +327,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -365,7 +370,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -376,19 +381,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 23 Jun 2022 12:09:29 GMT + - Tue, 17 Oct 2023 02:36:27 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 23 Jun 2022 12:14:29 GMT + - Tue, 17 Oct 2023 02:41:27 GMT source-age: - - '82' + - '128' strict-transport-security: - max-age=31536000 vary: @@ -402,15 +409,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 74873631de0be9cbfae25bc41ee86c4643d64b9c + - 9080b19c788cccf1af293f929a1dd42c97ba9cf0 x-frame-options: - deny x-github-request-id: - - 21B0:36D2:2D43B3:3CFF7D:62B40BF8 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1283-QPG + - cache-qpg1240-QPG x-timer: - - S1655986170.793889,VS0,VE2 + - S1697510188.771776,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -430,23 +437,23 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:31 GMT + - Tue, 17 Oct 2023 02:36:28 GMT expires: - '-1' pragma: @@ -463,7 +470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -481,33 +488,34 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202206150?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2017-12-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n - \ \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1043' + - '1158' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:33 GMT + - Tue, 17 Oct 2023 02:36:29 GMT expires: - '-1' pragma: @@ -524,7 +532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73990 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -532,7 +540,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -542,7 +550,7 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -556,7 +564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:33 GMT + - Tue, 17 Oct 2023 02:36:30 GMT expires: - '-1' pragma: @@ -574,7 +582,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -584,26 +592,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5f14a443-8178-427d-8640-41f819801719\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"6aadcb1b-e380-49e6-aba6-5f26e4a5921a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -617,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:34 GMT + - Tue, 17 Oct 2023 02:36:33 GMT etag: - - W/"fdc1058a-134a-4464-bf72-84664251ab82" + - W/"43e8d18d-4a98-41c8-a643-082e81a443d8" expires: - '-1' pragma: @@ -636,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 451cd113-ade5-4969-bf43-caf3e4c7a095 + - a1b27b23-4955-4ce0-a759-f03deca48591 status: code: 200 message: OK @@ -644,7 +652,7 @@ interactions: body: null headers: Accept: - - application/json, text/json + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -654,26 +662,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-10-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5f14a443-8178-427d-8640-41f819801719\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"6aadcb1b-e380-49e6-aba6-5f26e4a5921a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"fdc1058a-134a-4464-bf72-84664251ab82\\\"\",\r\n + \ \"etag\": \"W/\\\"43e8d18d-4a98-41c8-a643-082e81a443d8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -687,9 +695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:36 GMT + - Tue, 17 Oct 2023 02:36:34 GMT etag: - - W/"fdc1058a-134a-4464-bf72-84664251ab82" + - W/"43e8d18d-4a98-41c8-a643-082e81a443d8" expires: - '-1' pragma: @@ -706,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 50d8720e-529d-442a-bb80-4e5f425d3572 + - 6cf66501-1deb-4c3f-a34a-7d131071858d status: code: 200 message: OK @@ -723,11 +731,11 @@ interactions: "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss12e94", - "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss12e94Nic", - "properties": {"ipConfigurations": [{"name": "vmss12e94IPConfig", "properties": + "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerNamePrefix": + "vmss10ef3", "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss10ef3Nic", + "properties": {"ipConfigurations": [{"name": "vmss10ef3IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}], "primary": "true"}}]}}}, "sku": {"name": "Standard_DS1_v2", "capacity": 2}}], @@ -744,29 +752,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2251' + - '2272' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_MjWZfMxkiqrZBdza2OmZS80IkDLw1h1Z","name":"vmss_deploy_MjWZfMxkiqrZBdza2OmZS80IkDLw1h1Z","properties":{"templateHash":"3442547908447815096","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-23T12:09:53.1184404Z","duration":"PT0.0004913S","correlationId":"bc94b8e0-65f0-4651-b667-2638b70c4833","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_5kVtfn1hnQ7POVMaUvS1RydSx3yoUoRa","name":"vmss_deploy_5kVtfn1hnQ7POVMaUvS1RydSx3yoUoRa","properties":{"templateHash":"17624831035765151016","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:36:44.3815812Z","duration":"PT0.0007392S","correlationId":"7ff25cd1-4633-4e79-b10a-02fe5f661e52","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_MjWZfMxkiqrZBdza2OmZS80IkDLw1h1Z/operationStatuses/08585456206948782835?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_5kVtfn1hnQ7POVMaUvS1RydSx3yoUoRa/operationStatuses/08585040966840321153?api-version=2018-05-01 cache-control: - no-cache content-length: - - '1313' + - '1314' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:09:55 GMT + - Tue, 17 Oct 2023 02:36:46 GMT expires: - '-1' pragma: @@ -776,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -794,9 +802,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456206948782835?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966840321153?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -808,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:10:25 GMT + - Tue, 17 Oct 2023 02:36:48 GMT expires: - '-1' pragma: @@ -836,9 +844,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456206948782835?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966840321153?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -850,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:10:56 GMT + - Tue, 17 Oct 2023 02:37:18 GMT expires: - '-1' pragma: @@ -878,9 +886,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456206948782835?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040966840321153?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -892,7 +900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:11:27 GMT + - Tue, 17 Oct 2023 02:37:50 GMT expires: - '-1' pragma: @@ -920,21 +928,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_MjWZfMxkiqrZBdza2OmZS80IkDLw1h1Z","name":"vmss_deploy_MjWZfMxkiqrZBdza2OmZS80IkDLw1h1Z","properties":{"templateHash":"3442547908447815096","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-23T12:11:15.1396409Z","duration":"PT1M22.0216918S","correlationId":"bc94b8e0-65f0-4651-b667-2638b70c4833","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss12e94","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"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":"vmss12e94Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss12e94IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"5c6d150e-83cf-42d2-8a7f-80c159ff9e61","timeCreated":"2022-06-23T12:10:11.6789182+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_5kVtfn1hnQ7POVMaUvS1RydSx3yoUoRa","name":"vmss_deploy_5kVtfn1hnQ7POVMaUvS1RydSx3yoUoRa","properties":{"templateHash":"17624831035765151016","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:37:42.3901146Z","duration":"PT58.0092726S","correlationId":"7ff25cd1-4633-4e79-b10a-02fe5f661e52","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss10ef3","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"0001-com-ubuntu-server-jammy","sku":"22_04-lts-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss10ef3Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss10ef3IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"5544419e-6c21-4ce5-99d1-fa078192883a","timeCreated":"2023-10-17T02:37:05.6575643+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3151' + - '3261' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Jun 2022 12:11:28 GMT + - Tue, 17 Oct 2023 02:37:50 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_update_instance_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_update_instance_disks.yaml index f8e465e14bf..fa0f916d691 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_update_instance_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/recordings/test_vmss_update_instance_disks.yaml @@ -17,43 +17,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -91,7 +71,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -99,13 +79,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Wed, 11 Oct 2023 07:38:24 GMT + - Tue, 17 Oct 2023 02:33:11 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Wed, 11 Oct 2023 07:43:24 GMT + - Tue, 17 Oct 2023 02:38:11 GMT source-age: - - '169' + - '264' strict-transport-security: - max-age=31536000 vary: @@ -119,15 +99,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 07c9edb382a1e51d1c671e89bcba22697fcff9c9 + - 253f43afb4743e672765c0853ff26b145ff2bdf1 x-frame-options: - deny x-github-request-id: - - D05A:304CC8:8F7D8:B8585:6520A04A + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1224-QPG + - cache-qpg1248-QPG x-timer: - - S1697009904.220247,VS0,VE1 + - S1697509992.763329,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -147,23 +127,23 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2017-12-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:38:25 GMT + - Tue, 17 Oct 2023 02:33:12 GMT expires: - '-1' pragma: @@ -180,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 status: code: 200 message: OK @@ -198,32 +178,34 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2017-12-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:38:26 GMT + - Tue, 17 Oct 2023 02:33:12 GMT expires: - '-1' pragma: @@ -240,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73996 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73988 status: code: 200 message: OK @@ -258,7 +240,7 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-10-01 response: @@ -272,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:38:27 GMT + - Tue, 17 Oct 2023 02:33:14 GMT expires: - '-1' pragma: @@ -311,10 +293,10 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": "Standard_LRS"}}, "imageReference": {"publisher": - "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vmss1fefc", "adminUsername": "clitest1", "adminPassword": - "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss1fefcNic", "properties": {"ipConfigurations": [{"name": "vmss1fefcIPConfig", + "Debian", "offer": "debian-11", "sku": "11-backports-gen2", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss18f2d", "adminUsername": "clitest1", + "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmss18f2dNic", "properties": {"ipConfigurations": [{"name": "vmss18f2dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}], @@ -332,21 +314,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3648' + - '3663' Content-Type: - application/json ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_qYD48nVSOYBMEKwpjznvM9appH3paX3K","name":"vmss_deploy_qYD48nVSOYBMEKwpjznvM9appH3paX3K","properties":{"templateHash":"9773616301351345941","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-11T07:38:36.1174901Z","duration":"PT0.0006318S","correlationId":"993d576a-8f2d-4476-a378-d5b01ab8803d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_L3rqnHEmIjLcSoDx0uUhxeqVdP3UYpBk","name":"vmss_deploy_L3rqnHEmIjLcSoDx0uUhxeqVdP3UYpBk","properties":{"templateHash":"4254680496464156558","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:33:23.6822144Z","duration":"PT0.0005497S","correlationId":"b76bae65-8060-4799-a25d-b346ccdf4c4c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_qYD48nVSOYBMEKwpjznvM9appH3paX3K/operationStatuses/08585045969717555527?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_L3rqnHEmIjLcSoDx0uUhxeqVdP3UYpBk/operationStatuses/08585040968848507288?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -354,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:38:38 GMT + - Tue, 17 Oct 2023 02:33:25 GMT expires: - '-1' pragma: @@ -382,9 +364,9 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045969717555527?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968848507288?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -396,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:38:39 GMT + - Tue, 17 Oct 2023 02:33:26 GMT expires: - '-1' pragma: @@ -424,9 +406,9 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045969717555527?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968848507288?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -438,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:09 GMT + - Tue, 17 Oct 2023 02:33:57 GMT expires: - '-1' pragma: @@ -466,9 +448,9 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045969717555527?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040968848507288?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -480,7 +462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:40 GMT + - Tue, 17 Oct 2023 02:34:28 GMT expires: - '-1' pragma: @@ -508,21 +490,21 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_qYD48nVSOYBMEKwpjznvM9appH3paX3K","name":"vmss_deploy_qYD48nVSOYBMEKwpjznvM9appH3paX3K","properties":{"templateHash":"9773616301351345941","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-11T07:39:32.0656703Z","duration":"PT55.948812S","correlationId":"993d576a-8f2d-4476-a378-d5b01ab8803d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1fefc","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1fefcNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1fefcIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"f598aad0-138a-4bab-a71a-be7746696c0b","timeCreated":"2023-10-11T07:38:53.6634258+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_L3rqnHEmIjLcSoDx0uUhxeqVdP3UYpBk","name":"vmss_deploy_L3rqnHEmIjLcSoDx0uUhxeqVdP3UYpBk","properties":{"templateHash":"4254680496464156558","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:34:15.8172374Z","duration":"PT52.1355727S","correlationId":"b76bae65-8060-4799-a25d-b346ccdf4c4c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss18f2d","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"enableVMAgentPlatformUpdates":false},"secrets":[]},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss18f2dNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss18f2dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e97363ea-abf3-412d-af83-0654c38ae1d4","timeCreated":"2023-10-17T02:33:43.2797057+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4842' + - '4886' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:40 GMT + - Tue, 17 Oct 2023 02:34:28 GMT expires: - '-1' pragma: @@ -550,21 +532,21 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_instance_disks","date":"2023-10-11T07:38:43Z","module":"vm","DateCreated":"2023-10-11T07:39:26Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_instance_disks","date":"2023-10-17T02:33:06Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '427' + - '357' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:42 GMT + - Tue, 17 Oct 2023 02:34:28 GMT expires: - '-1' pragma: @@ -597,7 +579,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2017-03-30 response: @@ -610,7 +592,7 @@ interactions: \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2f15787c-af95-41a0-ac57-e6e04c9e7fe6?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/954c4050-8e28-4b6b-9e43-f6716b2fda6e?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 cache-control: - no-cache content-length: @@ -618,11 +600,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:47 GMT + - Tue, 17 Oct 2023 02:34:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2f15787c-af95-41a0-ac57-e6e04c9e7fe6?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/954c4050-8e28-4b6b-9e43-f6716b2fda6e?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2017-03-30 pragma: - no-cache server: @@ -653,13 +635,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2f15787c-af95-41a0-ac57-e6e04c9e7fe6?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/954c4050-8e28-4b6b-9e43-f6716b2fda6e?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2017-03-30 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:39:48.0101098+00:00\",\r\n \"endTime\": - \"2023-10-11T07:39:48.1507596+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2023-10-17T02:34:34.0795644+00:00\",\r\n \"endTime\": + \"2023-10-17T02:34:34.1890156+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -667,8 +649,8 @@ interactions: \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n \ \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": - \"2023-10-11T07:39:48.0257362+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n \"name\": \"2f15787c-af95-41a0-ac57-e6e04c9e7fe6\"\r\n}" + \"2023-10-17T02:34:34.0952651+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\"\r\n }\r\n}\r\n },\r\n \"name\": \"954c4050-8e28-4b6b-9e43-f6716b2fda6e\"\r\n}" headers: cache-control: - no-cache @@ -677,7 +659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:48 GMT + - Tue, 17 Oct 2023 02:34:34 GMT expires: - '-1' pragma: @@ -694,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399996 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -712,7 +694,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2017-03-30 response: @@ -722,7 +704,7 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n - \ \"timeCreated\": \"2023-10-11T07:39:48.0257362+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2023-10-17T02:34:34.0952651+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n }\r\n}" headers: cache-control: @@ -732,7 +714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:48 GMT + - Tue, 17 Oct 2023 02:34:34 GMT expires: - '-1' pragma: @@ -749,7 +731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119991 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119979 status: code: 200 message: OK @@ -767,63 +749,63 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2017-12-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_2\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": - true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": {\r\n + \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss1fefc000002\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss18f2d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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 \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": + true,\r\n \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"9dee6d98-7082-4c58-83c4-e23ce2632b6e\",\r\n \"storageProfile\": {\r\n + \"e5b23757-a95e-40b5-a766-e225778d279a\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss1fefc000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss18f2d000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1fefcNic\"}]}\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4154' + - '4182' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:50 GMT + - Tue, 17 Oct 2023 02:34:36 GMT expires: - '-1' pragma: @@ -840,7 +822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1077,Microsoft.Compute/HighCostGetVMScaleSetResource;28 + - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079,Microsoft.Compute/HighCostGetVMScaleSetResource;29 x-ms-request-charge: - '4' status: @@ -860,40 +842,40 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": - \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": - []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1867' + - '1881' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:52 GMT + - Tue, 17 Oct 2023 02:34:37 GMT expires: - '-1' pragma: @@ -910,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5998,Microsoft.Compute/GetVMScaleSetVMResource;35 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5999,Microsoft.Compute/GetVMScaleSetVMResource;35 x-ms-request-charge: - '1' status: @@ -919,13 +901,13 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24", + "vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b", "storageAccountType": "Standard_LRS"}}, "dataDisks": [{"lun": 0, "caching": "ReadWrite", "createOption": "Attach", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1"}}]}, - "osProfile": {"computerName": "vmss1fefc000002", "adminUsername": "clitest1", + "osProfile": {"computerName": "vmss18f2d000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": false}, "secrets": []}, - "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic"}]}}}' + "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic"}]}}}' headers: Accept: - application/json @@ -942,49 +924,49 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n },\r\n - \ \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n \"adminUsername\": + \ \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7ba8b155-6d24-446d-81d9-015b3c5e410e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 cache-control: - no-cache content-length: - - '2294' + - '2309' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:54 GMT + - Tue, 17 Oct 2023 02:34:41 GMT expires: - '-1' pragma: @@ -1001,7 +983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1999,Microsoft.Compute/VMScaleSetVMActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1999,Microsoft.Compute/VMScaleSetVMActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5991,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1023,13 +1005,13 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7ba8b155-6d24-446d-81d9-015b3c5e410e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:39:52.8829512+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7ba8b155-6d24-446d-81d9-015b3c5e410e\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:34:39.1867575+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"79a1a5e4-5058-4b59-a39f-55e0fdc6d117\"\r\n}" headers: cache-control: - no-cache @@ -1038,7 +1020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:39:54 GMT + - Tue, 17 Oct 2023 02:34:41 GMT expires: - '-1' pragma: @@ -1055,7 +1037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14990 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14985 status: code: 200 message: OK @@ -1073,23 +1055,22 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7ba8b155-6d24-446d-81d9-015b3c5e410e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:39:52.8829512+00:00\",\r\n \"endTime\": - \"2023-10-11T07:40:25.6645394+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7ba8b155-6d24-446d-81d9-015b3c5e410e\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:34:39.1867575+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"79a1a5e4-5058-4b59-a39f-55e0fdc6d117\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:31 GMT + - Tue, 17 Oct 2023 02:34:43 GMT expires: - '-1' pragma: @@ -1106,7 +1087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14984 status: code: 200 message: OK @@ -1124,45 +1105,196 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"startTime\": \"2023-10-17T02:34:39.1867575+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"79a1a5e4-5058-4b59-a39f-55e0fdc6d117\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:34:46 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/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14983 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:34:39.1867575+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"79a1a5e4-5058-4b59-a39f-55e0fdc6d117\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:34:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;56,Microsoft.Compute/GetOperationSubscriptionMaximum;14981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/79a1a5e4-5058-4b59-a39f-55e0fdc6d117?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:34:39.1867575+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:12.906055+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"79a1a5e4-5058-4b59-a39f-55e0fdc6d117\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:35:25 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/GetOperationResource;55,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 + response: + body: + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n },\r\n - \ \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n \"adminUsername\": + \ \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2295' + - '2310' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:32 GMT + - Tue, 17 Oct 2023 02:35:26 GMT expires: - '-1' pragma: @@ -1179,7 +1311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5996,Microsoft.Compute/GetVMScaleSetVMResource;34 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5998,Microsoft.Compute/GetVMScaleSetVMResource;34 x-ms-request-charge: - '1' status: @@ -1199,68 +1331,68 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2017-12-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_2\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": {\r\n + \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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 \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"9dee6d98-7082-4c58-83c4-e23ce2632b6e\",\r\n \"storageProfile\": {\r\n + \"e5b23757-a95e-40b5-a766-e225778d279a\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss1fefc000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss18f2d000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1fefcNic\"}]}\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4630' + - '4660' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:34 GMT + - Tue, 17 Oct 2023 02:35:28 GMT expires: - '-1' pragma: @@ -1277,7 +1409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1072,Microsoft.Compute/HighCostGetVMScaleSetResource;27 + - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1076,Microsoft.Compute/HighCostGetVMScaleSetResource;27 x-ms-request-charge: - '2' status: @@ -1297,45 +1429,45 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1\r\n }\r\n ]\r\n },\r\n - \ \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n \"adminUsername\": + \ \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2295' + - '2310' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:35 GMT + - Tue, 17 Oct 2023 02:35:29 GMT expires: - '-1' pragma: @@ -1352,7 +1484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5995,Microsoft.Compute/GetVMScaleSetVMResource;33 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5997,Microsoft.Compute/GetVMScaleSetVMResource;33 x-ms-request-charge: - '1' status: @@ -1361,11 +1493,11 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24", + "vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b", "storageAccountType": "Standard_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": - "vmss1fefc000002", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": - false}, "secrets": []}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic"}]}}}' + "vmss18f2d000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": + false}, "secrets": []}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic"}]}}}' headers: Accept: - application/json @@ -1382,44 +1514,44 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": - []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/244e41ef-4d7b-4149-aa12-d85bbb92cded?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/12836d1d-654f-43d4-8f33-607725b50b6b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 cache-control: - no-cache content-length: - - '1866' + - '1881' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:38 GMT + - Tue, 17 Oct 2023 02:35:31 GMT expires: - '-1' pragma: @@ -1436,7 +1568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1998,Microsoft.Compute/VMScaleSetVMActionsResource;10,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5996,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1998,Microsoft.Compute/VMScaleSetVMActionsResource;10,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1458,13 +1590,13 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/244e41ef-4d7b-4149-aa12-d85bbb92cded?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/12836d1d-654f-43d4-8f33-607725b50b6b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:40:36.7427984+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"244e41ef-4d7b-4149-aa12-d85bbb92cded\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:30.1718564+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"12836d1d-654f-43d4-8f33-607725b50b6b\"\r\n}" headers: cache-control: - no-cache @@ -1473,7 +1605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:40:38 GMT + - Tue, 17 Oct 2023 02:35:31 GMT expires: - '-1' pragma: @@ -1490,7 +1622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 status: code: 200 message: OK @@ -1508,23 +1640,22 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/244e41ef-4d7b-4149-aa12-d85bbb92cded?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/12836d1d-654f-43d4-8f33-607725b50b6b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:40:36.7427984+00:00\",\r\n \"endTime\": - \"2023-10-11T07:40:53.2118146+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"244e41ef-4d7b-4149-aa12-d85bbb92cded\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:35:30.1718564+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"12836d1d-654f-43d4-8f33-607725b50b6b\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:41:16 GMT + - Tue, 17 Oct 2023 02:35:34 GMT expires: - '-1' pragma: @@ -1559,40 +1690,91 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/2?api-version=2017-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/12836d1d-654f-43d4-8f33-607725b50b6b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2017-12-01 response: body: - string: "{\r\n \"name\": \"vmss1_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"startTime\": \"2023-10-17T02:35:30.1718564+00:00\",\r\n \"endTime\": + \"2023-10-17T02:35:37.0625791+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"12836d1d-654f-43d4-8f33-607725b50b6b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:35:36 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/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk detach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --lun + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2017-12-01 + response: + body: + string: "{\r\n \"name\": \"vmss1_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n - \ },\r\n \"vmId\": \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": + \ },\r\n \"vmId\": \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1fefc000002\",\r\n + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss18f2d000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": - []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1867' + - '1882' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:41:16 GMT + - Tue, 17 Oct 2023 02:35:36 GMT expires: - '-1' pragma: @@ -1609,7 +1791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5999,Microsoft.Compute/GetVMScaleSetVMResource;35 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5996,Microsoft.Compute/GetVMScaleSetVMResource;32 x-ms-request-charge: - '1' status: @@ -1629,63 +1811,63 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2017-12-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_2\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cb03761c-4bd6-4823-93f3-26d8f87d5144\",\r\n \"storageProfile\": {\r\n + \"ef7b5cdc-d634-4c91-9dc3-f0e1eaf63860\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_2_OsDisk_1_06ccdb0bfcb943f5bad53c23ff5c5b24\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_d9662fd285dd481b82147937b626970b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss1fefc000002\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss18f2d000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1fefcNic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18f2dNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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 \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"9dee6d98-7082-4c58-83c4-e23ce2632b6e\",\r\n \"storageProfile\": {\r\n + \"e5b23757-a95e-40b5-a766-e225778d279a\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\",\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"0.20230912.1501\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_b99cbe9452894a64aae046428b1d2c6d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_c13ee7513516462c9583e4fef1201940\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss1fefc000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss18f2d000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n - \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1fefcNic\"}]}\r\n + \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18f2dNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4154' + - '4184' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:41:18 GMT + - Tue, 17 Oct 2023 02:35:39 GMT expires: - '-1' pragma: @@ -1702,7 +1884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1078,Microsoft.Compute/HighCostGetVMScaleSetResource;29 + - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079,Microsoft.Compute/HighCostGetVMScaleSetResource;29 x-ms-request-charge: - '2' status: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py index 1a65d549f8d..ef0d2d194e6 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2019_03_01/test_vm_commands.py @@ -549,7 +549,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image CentOS85Gen2 --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -926,7 +926,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image ubuntu2204 --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -1659,7 +1659,7 @@ def test_vmss_update_instance_disks(self, resource_group): 'sku': 'Standard_LRS' }) - self.cmd('vmss create --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') + self.cmd('vmss create --image Debian11 --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') self.cmd('disk create -g {rg} -n {disk} --size-gb 1 --sku {sku}') instances = self.cmd('vmss list-instances -g {rg} -n {vmss}').get_output_in_json() self.kwargs['instance_id'] = instances[0]['instanceId'] @@ -1682,7 +1682,7 @@ def test_vmss_create_auth(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, }) - self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_1} --authentication-type all ' + self.cmd('vmss create --image Debian11 -l westus -g {rg} -n {vmss_1} --authentication-type all ' ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), @@ -1748,7 +1748,7 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image ubuntu2204 --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml index 37f9f5e1d91..2e998b12034 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_create_by_attach_os_and_data_disks.yaml @@ -13,22 +13,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '376' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:02:16 GMT + - Tue, 17 Oct 2023 01:51:40 GMT expires: - '-1' pragma: @@ -52,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -60,26 +59,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -102,7 +102,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -113,19 +113,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Mon, 26 Sep 2022 16:02:17 GMT + - Tue, 17 Oct 2023 01:51:41 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Mon, 26 Sep 2022 16:07:17 GMT + - Tue, 17 Oct 2023 01:56:41 GMT source-age: - - '213' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -139,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - dde8d87fa3e6799c1dccf7095246cabefdc2481a + - ff1e351f5897c31c93da7378b799fa52f84424d0 x-frame-options: - deny x-github-request-id: - - 0803:20A7:EBE1:12F4E:633169BD + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1241-QPG + - cache-qpg1223-QPG x-timer: - - S1664208138.517723,VS0,VE1 + - S1697507501.110543,VS0,VE298 x-xss-protection: - 1; mode=block status: @@ -167,24 +169,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:02:20 GMT + - Tue, 17 Oct 2023 01:51:42 GMT expires: - '-1' pragma: @@ -201,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -219,29 +220,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:02:27 GMT + - Tue, 17 Oct 2023 01:51:43 GMT expires: - '-1' pragma: @@ -258,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -276,8 +282,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: @@ -291,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:02:28 GMT + - Tue, 17 Oct 2023 01:51:45 GMT expires: - '-1' pragma: @@ -334,7 +339,7 @@ interactions: "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": - "7.5", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": + "8_5-gen2", "version": "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "empty", "diskSizeGB": 2}]}, "osProfile": {"computerName": "vm1", "adminUsername": "centosadmin", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, @@ -349,30 +354,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3219' + - '3224' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dSN430dYopYDW97yQeYA7P6LtbUKiZJX","name":"vm_deploy_dSN430dYopYDW97yQeYA7P6LtbUKiZJX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5697736448860180818","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-09-26T16:02:34.3977846Z","duration":"PT0.0007721S","correlationId":"41b7c0f2-3ab4-4945-8a4e-2692c85009c3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_s9kEk94cQfsze2xU0Hp5yp4JKgcgpiOJ","name":"vm_deploy_s9kEk94cQfsze2xU0Hp5yp4JKgcgpiOJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13123550374815916006","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T01:51:52.8530896Z","duration":"PT0.0007326S","correlationId":"be4ebd12-85eb-42c1-b5dc-aa268a7b8b9c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dSN430dYopYDW97yQeYA7P6LtbUKiZJX/operationStatuses/08585373987337813757?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_s9kEk94cQfsze2xU0Hp5yp4JKgcgpiOJ/operationStatuses/08585040993757594523?api-version=2019-10-01 cache-control: - no-cache content-length: - - '2368' + - '2369' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:02:35 GMT + - Tue, 17 Oct 2023 01:51:54 GMT expires: - '-1' pragma: @@ -400,10 +404,51 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585373987337813757?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040993757594523?api-version=2019-10-01 + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:51:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040993757594523?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -415,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:03:05 GMT + - Tue, 17 Oct 2023 01:52:24 GMT expires: - '-1' pragma: @@ -443,10 +488,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585373987337813757?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040993757594523?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -458,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:03:36 GMT + - Tue, 17 Oct 2023 01:52:55 GMT expires: - '-1' pragma: @@ -486,10 +530,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585373987337813757?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040993757594523?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -501,7 +544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:06 GMT + - Tue, 17 Oct 2023 01:53:26 GMT expires: - '-1' pragma: @@ -529,22 +572,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dSN430dYopYDW97yQeYA7P6LtbUKiZJX","name":"vm_deploy_dSN430dYopYDW97yQeYA7P6LtbUKiZJX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5697736448860180818","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-09-26T16:04:04.7430291Z","duration":"PT1M30.3460166S","correlationId":"41b7c0f2-3ab4-4945-8a4e-2692c85009c3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_s9kEk94cQfsze2xU0Hp5yp4JKgcgpiOJ","name":"vm_deploy_s9kEk94cQfsze2xU0Hp5yp4JKgcgpiOJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13123550374815916006","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T01:53:05.1369363Z","duration":"PT1M12.2845793S","correlationId":"be4ebd12-85eb-42c1-b5dc-aa268a7b8b9c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3140' + - '3141' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:06 GMT + - Tue, 17 Oct 2023 01:53:26 GMT expires: - '-1' pragma: @@ -572,29 +614,29 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3a560fd-d9a0-4e45-99be-08fe131e467f\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"2f13fc79-5d07-4676-bfb8-7b4817595c5b\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.5.2022101801\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": @@ -603,26 +645,26 @@ interactions: \ }\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.8.0.11\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2022-09-26T16:04:02+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": + \"centos\",\r\n \"osVersion\": \"8.5.2111\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T01:53:14+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-09-26T16:02:52.4583791+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T01:52:20.0415334+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n \"statuses\": + \"vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-09-26T16:02:52.4583791+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T01:52:20.0415334+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-09-26T16:04:01.5685352+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T01:53:00.7139595+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}" @@ -630,11 +672,11 @@ interactions: cache-control: - no-cache content-length: - - '3952' + - '3957' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:08 GMT + - Tue, 17 Oct 2023 01:53:30 GMT expires: - '-1' pragma: @@ -651,7 +693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31953 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -669,18 +711,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"5988a64d-e0f9-488d-9547-5cb1832e565d\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"24ded5fc-d68c-4249-b554-de050a1f052e\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fbfacf88-c173-4cfe-b712-4db7949aef23\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"953c3007-256e-47b5-8788-308fb85e21f2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"5988a64d-e0f9-488d-9547-5cb1832e565d\\\"\",\r\n + \ \"etag\": \"W/\\\"24ded5fc-d68c-4249-b554-de050a1f052e\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -689,8 +730,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\": - \"nxcagmwpj5fe5pvc5vya3webvc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-09-5F-9D\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"njvfwxnfwoku1htyi4tsi30rna.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-5C-D9-32\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n @@ -705,9 +746,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:09 GMT + - Tue, 17 Oct 2023 01:53:30 GMT etag: - - W/"5988a64d-e0f9-488d-9547-5cb1832e565d" + - W/"24ded5fc-d68c-4249-b554-de050a1f052e" expires: - '-1' pragma: @@ -724,7 +765,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 067af499-3051-492a-97d7-62cae1480575 + - 4f7c22cf-33fa-4633-a026-50d79c41e8f3 status: code: 200 message: OK @@ -742,17 +783,16 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"ff4edefd-20fb-4c23-9ee1-e5b9aa727dd8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c32ef62b-cb11-4088-a591-14fcb00115e1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b373e614-53a1-4bbe-a875-b271002ca987\",\r\n - \ \"ipAddress\": \"20.253.142.33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"a2ce495b-0504-477e-8e78-3d04cea71f2a\",\r\n + \ \"ipAddress\": \"104.42.72.242\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -765,9 +805,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:10 GMT + - Tue, 17 Oct 2023 01:53:32 GMT etag: - - W/"ff4edefd-20fb-4c23-9ee1-e5b9aa727dd8" + - W/"c32ef62b-cb11-4088-a591-14fcb00115e1" expires: - '-1' pragma: @@ -784,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc0c7f47-613a-4bf9-8202-8f3920f53ef5 + - 5f86b14a-3629-47a1-83db-3cf1f7e5f859 status: code: 200 message: OK @@ -802,29 +842,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3a560fd-d9a0-4e45-99be-08fe131e467f\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"2f13fc79-5d07-4676-bfb8-7b4817595c5b\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.5.2022101801\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": @@ -832,17 +872,17 @@ interactions: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2296' + - '2302' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:11 GMT + - Tue, 17 Oct 2023 01:53:34 GMT expires: - '-1' pragma: @@ -859,7 +899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31952 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -877,13 +917,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2?api-version=2019-07-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -894,7 +933,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:11 GMT + - Tue, 17 Oct 2023 01:53:35 GMT expires: - '-1' pragma: @@ -922,35 +961,34 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2?api-version=2019-07-01 response: body: - string: "{\r\n \"name\": \"vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n + string: "{\r\n \"name\": \"vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n - \ \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n + \ \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2022-09-26T16:02:50.9348079+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2023-10-17T01:52:18.12916+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"57018d4c-cc32-4679-b07d-b7764509f350\"\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"51093fd8-cb3d-43e7-a37e-8925049e6fe2\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1302' + - '1306' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:12 GMT + - Tue, 17 Oct 2023 01:53:36 GMT expires: - '-1' pragma: @@ -967,7 +1005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39921 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119997 status: code: 200 message: OK @@ -985,28 +1023,29 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm","DateCreated":"2023-10-17T01:52:34Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '451' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:13 GMT + - Tue, 17 Oct 2023 01:53:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -1015,7 +1054,7 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2"}}}' headers: Accept: - application/json @@ -1032,35 +1071,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2019-07-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": - \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n - \ \"sourceUniqueId\": \"57018d4c-cc32-4679-b07d-b7764509f350\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n - \ \"osState\": \"Generalized\"\r\n }\r\n}" + string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/540d35e7-8a9c-4aa8-b400-bfb38141e73d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1fcacfc6-b24c-429c-a392-01804045be6b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 cache-control: - no-cache content-length: - - '729' + - '647' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:17 GMT + - Tue, 17 Oct 2023 01:53:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/540d35e7-8a9c-4aa8-b400-bfb38141e73d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1fcacfc6-b24c-429c-a392-01804045be6b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 pragma: - no-cache server: @@ -1091,36 +1127,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/540d35e7-8a9c-4aa8-b400-bfb38141e73d?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1fcacfc6-b24c-429c-a392-01804045be6b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 response: body: - string: "{\r\n \"startTime\": \"2022-09-26T16:04:18.0157339+00:00\",\r\n \"endTime\": - \"2022-09-26T16:04:19.0626399+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"oSnapshot\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n - \ \"sourceUniqueId\": \"57018d4c-cc32-4679-b07d-b7764509f350\"\r\n },\r\n - \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:18.0157339+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"540d35e7-8a9c-4aa8-b400-bfb38141e73d\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T01:53:42.6927908+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fcacfc6-b24c-429c-a392-01804045be6b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:53: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;49999,Microsoft.Compute/GetOperation30Min;399999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1fcacfc6-b24c-429c-a392-01804045be6b?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T01:53:42.6927908+00:00\",\r\n \"endTime\": + \"2023-10-17T01:53:43.818074+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"oSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\"sourceUniqueId\":\"51093fd8-cb3d-43e7-a37e-8925049e6fe2\"},\"diskSizeGB\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2023-10-17T01:53:42.6927908+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"9270295f-a6bd-4158-b96f-2b2e0d7d936f\"}}\r\n + \ },\r\n \"name\": \"1fcacfc6-b24c-429c-a392-01804045be6b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1296' + - '1111' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:19 GMT + - Tue, 17 Oct 2023 01:53:52 GMT expires: - '-1' pragma: @@ -1137,7 +1211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399971 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -1155,8 +1229,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2019-07-01 response: @@ -1166,12 +1239,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n - \ \"sourceUniqueId\": \"57018d4c-cc32-4679-b07d-b7764509f350\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\r\n + \ \"sourceUniqueId\": \"51093fd8-cb3d-43e7-a37e-8925049e6fe2\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:18.0157339+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2023-10-17T01:53:42.6927908+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"9270295f-a6bd-4158-b96f-2b2e0d7d936f\"\r\n \ }\r\n}" headers: cache-control: @@ -1181,7 +1254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:20 GMT + - Tue, 17 Oct 2023 01:53:53 GMT expires: - '-1' pragma: @@ -1198,7 +1271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39920 + - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994 status: code: 200 message: OK @@ -1216,8 +1289,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2019-07-01 response: @@ -1227,12 +1299,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_57018d4ccc324679b07db7764509f350\",\r\n - \ \"sourceUniqueId\": \"57018d4c-cc32-4679-b07d-b7764509f350\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_51093fd8cb3d43e7a37e8925049e6fe2\",\r\n + \ \"sourceUniqueId\": \"51093fd8-cb3d-43e7-a37e-8925049e6fe2\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:18.0157339+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2023-10-17T01:53:42.6927908+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"9270295f-a6bd-4158-b96f-2b2e0d7d936f\"\r\n \ }\r\n}" headers: cache-control: @@ -1242,7 +1314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:21 GMT + - Tue, 17 Oct 2023 01:53:55 GMT expires: - '-1' pragma: @@ -1252,10 +1324,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39919 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -1273,22 +1349,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm","DateCreated":"2023-10-17T01:52:34Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '451' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:22 GMT + - Tue, 17 Oct 2023 01:53:56 GMT expires: - '-1' pragma: @@ -1322,35 +1397,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2019-07-01 response: body: string: "{\r\n \"name\": \"sDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": - \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n - \ \"osState\": \"Generalized\"\r\n }\r\n}" + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c8a1feb8-2379-4dfb-bae2-aab67ef1d1e3?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/09152bbc-6cf1-4135-a984-c9b8bc1be882?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 cache-control: - no-cache content-length: - - '708' + - '598' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:27 GMT + - Tue, 17 Oct 2023 01:54:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c8a1feb8-2379-4dfb-bae2-aab67ef1d1e3?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/09152bbc-6cf1-4135-a984-c9b8bc1be882?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 pragma: - no-cache server: @@ -1361,9 +1433,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;2999,Microsoft.Compute/CreateUpdateDisks30Min;24999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1381,37 +1453,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c8a1feb8-2379-4dfb-bae2-aab67ef1d1e3?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/09152bbc-6cf1-4135-a984-c9b8bc1be882?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 response: body: - string: "{\r\n \"startTime\": \"2022-09-26T16:04:27.3285618+00:00\",\r\n \"endTime\": - \"2022-09-26T16:04:27.9067005+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"sDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n },\r\n - \ \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2022-09-26T16:04:27.3285618+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6323941d-bfd8-4c2e-ad7c-be61c58d4e06\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"c8a1feb8-2379-4dfb-bae2-aab67ef1d1e3\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T01:54:00.6776484+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"09152bbc-6cf1-4135-a984-c9b8bc1be882\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:54: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/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/09152bbc-6cf1-4135-a984-c9b8bc1be882?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T01:54:00.6776484+00:00\",\r\n \"endTime\": + \"2023-10-17T01:54:01.3808424+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"sDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\"sourceUniqueId\":\"9270295f-a6bd-4158-b96f-2b2e0d7d936f\"},\"diskSizeGB\":30,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2023-10-17T01:54:00.6776484+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":32212254720,\"uniqueId\":\"db0d1bcb-43ab-42fd-90cb-dc0507b12d67\"}}\r\n + \ },\r\n \"name\": \"09152bbc-6cf1-4135-a984-c9b8bc1be882\"\r\n}" headers: cache-control: - no-cache content-length: - - '1280' + - '1089' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:29 GMT + - Tue, 17 Oct 2023 01:54:11 GMT expires: - '-1' pragma: @@ -1428,7 +1537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399969 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -1446,8 +1555,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2019-07-01 response: @@ -1458,12 +1566,12 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n - \ \"sourceUniqueId\": \"fec29e46-8847-4c9f-8179-032ce77637ff\"\r\n },\r\n + \ \"sourceUniqueId\": \"9270295f-a6bd-4158-b96f-2b2e0d7d936f\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2022-09-26T16:04:27.3285618+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2023-10-17T01:54:00.6776484+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6323941d-bfd8-4c2e-ad7c-be61c58d4e06\"\r\n + \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"db0d1bcb-43ab-42fd-90cb-dc0507b12d67\"\r\n \ }\r\n}" headers: cache-control: @@ -1473,7 +1581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:29 GMT + - Tue, 17 Oct 2023 01:54:11 GMT expires: - '-1' pragma: @@ -1490,7 +1598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39916 + - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119990 status: code: 200 message: OK @@ -1508,13 +1616,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65?api-version=2019-07-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65'' under resource group ''clitest.rg000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1525,7 +1632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:31 GMT + - Tue, 17 Oct 2023 01:54:12 GMT expires: - '-1' pragma: @@ -1553,33 +1660,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65?api-version=2019-07-01 response: body: - string: "{\r\n \"name\": \"vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n + string: "{\r\n \"name\": \"vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2022-09-26T16:02:50.9348079+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2023-10-17T01:52:18.12916+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"c0e50e2e-cdfa-4447-9f80-3d086a67eeeb\"\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"25bcd6ba-53c2-461e-be0a-e7fc47016e65\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '995' + - '993' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:31 GMT + - Tue, 17 Oct 2023 01:54:13 GMT expires: - '-1' pragma: @@ -1596,7 +1702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39915 + - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119989 status: code: 200 message: OK @@ -1614,22 +1720,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm","DateCreated":"2023-10-17T01:52:34Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '451' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:32 GMT + - Tue, 17 Oct 2023 01:54:14 GMT expires: - '-1' pragma: @@ -1646,7 +1751,7 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65"}}}' headers: Accept: - application/json @@ -1663,35 +1768,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2019-07-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": - \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n - \ \"sourceUniqueId\": \"c0e50e2e-cdfa-4447-9f80-3d086a67eeeb\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n + \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/52f973a9-0c97-48fb-8555-60c3e97d5a6c?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4157ae8f-ab6c-47ba-8751-927db7de99d1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 cache-control: - no-cache content-length: - - '671' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:36 GMT + - Tue, 17 Oct 2023 01:54:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/52f973a9-0c97-48fb-8555-60c3e97d5a6c?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4157ae8f-ab6c-47ba-8751-927db7de99d1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 pragma: - no-cache server: @@ -1704,7 +1806,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1722,36 +1824,22 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/52f973a9-0c97-48fb-8555-60c3e97d5a6c?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4157ae8f-ab6c-47ba-8751-927db7de99d1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 response: body: - string: "{\r\n \"startTime\": \"2022-09-26T16:04:36.6726228+00:00\",\r\n \"endTime\": - \"2022-09-26T16:04:37.3288988+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dSnapshot\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n - \ \"sourceUniqueId\": \"c0e50e2e-cdfa-4447-9f80-3d086a67eeeb\"\r\n },\r\n - \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:36.6726228+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"52f973a9-0c97-48fb-8555-60c3e97d5a6c\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T01:54:18.162278+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4157ae8f-ab6c-47ba-8751-927db7de99d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1267' + - '133' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:39 GMT + - Tue, 17 Oct 2023 01:54:18 GMT expires: - '-1' pragma: @@ -1768,7 +1856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399967 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -1786,8 +1874,59 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4157ae8f-ab6c-47ba-8751-927db7de99d1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T01:54:18.162278+00:00\",\r\n \"endTime\": + \"2023-10-17T01:54:18.8966375+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dSnapshot\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\"sourceUniqueId\":\"25bcd6ba-53c2-461e-be0a-e7fc47016e65\"},\"diskSizeGB\":2,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2023-10-17T01:54:18.162278+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":2147483648,\"uniqueId\":\"6565f6e6-2268-4467-b009-7fedd3cbbea7\"}}\r\n + \ },\r\n \"name\": \"4157ae8f-ab6c-47ba-8751-927db7de99d1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1088' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:54:28 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;49991,Microsoft.Compute/GetOperation30Min;399991 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2019-07-01 response: @@ -1797,22 +1936,22 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n - \ \"sourceUniqueId\": \"c0e50e2e-cdfa-4447-9f80-3d086a67eeeb\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n + \ \"sourceUniqueId\": \"25bcd6ba-53c2-461e-be0a-e7fc47016e65\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:36.6726228+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2023-10-17T01:54:18.162278+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"6565f6e6-2268-4467-b009-7fedd3cbbea7\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1042' + - '1041' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:39 GMT + - Tue, 17 Oct 2023 01:54:28 GMT expires: - '-1' pragma: @@ -1829,7 +1968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39912 + - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119986 status: code: 200 message: OK @@ -1847,8 +1986,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2019-07-01 response: @@ -1858,22 +1996,22 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c0e50e2ecdfa44479f803d086a67eeeb\",\r\n - \ \"sourceUniqueId\": \"c0e50e2e-cdfa-4447-9f80-3d086a67eeeb\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_25bcd6ba53c2461ebe0ae7fc47016e65\",\r\n + \ \"sourceUniqueId\": \"25bcd6ba-53c2-461e-be0a-e7fc47016e65\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2022-09-26T16:04:36.6726228+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2023-10-17T01:54:18.162278+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"6565f6e6-2268-4467-b009-7fedd3cbbea7\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1042' + - '1041' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:40 GMT + - Tue, 17 Oct 2023 01:54:30 GMT expires: - '-1' pragma: @@ -1890,7 +2028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39911 + - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119985 status: code: 200 message: OK @@ -1908,22 +2046,21 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm","DateCreated":"2023-10-17T01:52:34Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '451' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:41 GMT + - Tue, 17 Oct 2023 01:54:30 GMT expires: - '-1' pragma: @@ -1957,35 +2094,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2019-07-01 response: body: string: "{\r\n \"name\": \"dDisk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": - \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n - \ }\r\n}" + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n + \ \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a93c959f-c0d2-4cd9-85df-ebb4d94a17b1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fb8962c-e9c8-4cc7-89a4-811c527d37af?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 cache-control: - no-cache content-length: - - '653' + - '598' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:46 GMT + - Tue, 17 Oct 2023 01:54:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a93c959f-c0d2-4cd9-85df-ebb4d94a17b1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fb8962c-e9c8-4cc7-89a4-811c527d37af?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 pragma: - no-cache server: @@ -1996,9 +2130,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;2998,Microsoft.Compute/CreateUpdateDisks30Min;24998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2016,37 +2150,74 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a93c959f-c0d2-4cd9-85df-ebb4d94a17b1?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fb8962c-e9c8-4cc7-89a4-811c527d37af?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 response: body: - string: "{\r\n \"startTime\": \"2022-09-26T16:04:47.0170119+00:00\",\r\n \"endTime\": - \"2022-09-26T16:04:47.6107803+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dDisk\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n },\r\n - \ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2022-09-26T16:04:47.0326677+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"9f781ad8-f87d-436e-b1db-f22fe7c90bc6\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"a93c959f-c0d2-4cd9-85df-ebb4d94a17b1\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T01:54:36.7718113+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5fb8962c-e9c8-4cc7-89a4-811c527d37af\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:54:36 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;49990,Microsoft.Compute/GetOperation30Min;399990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fb8962c-e9c8-4cc7-89a4-811c527d37af?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T01:54:36.7718113+00:00\",\r\n \"endTime\": + \"2023-10-17T01:54:37.3968214+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"dDisk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\"sourceUniqueId\":\"6565f6e6-2268-4467-b009-7fedd3cbbea7\"},\"diskSizeGB\":2,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"timeCreated\":\"2023-10-17T01:54:36.7718113+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":2147483648,\"uniqueId\":\"31d68007-1fe2-450a-aa2e-8a1d7366e99d\"}}\r\n + \ },\r\n \"name\": \"5fb8962c-e9c8-4cc7-89a4-811c527d37af\"\r\n}" headers: cache-control: - no-cache content-length: - - '1254' + - '1070' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:48 GMT + - Tue, 17 Oct 2023 01:54:46 GMT expires: - '-1' pragma: @@ -2063,7 +2234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399965 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988 status: code: 200 message: OK @@ -2081,8 +2252,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2019-07-01 response: @@ -2093,12 +2263,12 @@ interactions: \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n - \ \"sourceUniqueId\": \"49212fbd-fc72-4c61-a03b-f329345c2abc\"\r\n },\r\n + \ \"sourceUniqueId\": \"6565f6e6-2268-4467-b009-7fedd3cbbea7\"\r\n },\r\n \ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2022-09-26T16:04:47.0326677+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2023-10-17T01:54:36.7718113+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"9f781ad8-f87d-436e-b1db-f22fe7c90bc6\"\r\n + \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"31d68007-1fe2-450a-aa2e-8a1d7366e99d\"\r\n \ }\r\n}" headers: cache-control: @@ -2108,7 +2278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:49 GMT + - Tue, 17 Oct 2023 01:54:47 GMT expires: - '-1' pragma: @@ -2125,7 +2295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39908 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119982 status: code: 200 message: OK @@ -2144,22 +2314,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-09-26T16:02:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_create_by_attach_os_and_data_disks","date":"2023-10-17T01:51:35Z","module":"vm","DateCreated":"2023-10-17T01:52:34Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '310' + - '451' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:50 GMT + - Tue, 17 Oct 2023 01:54:48 GMT expires: - '-1' pragma: @@ -2188,25 +2357,24 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"66ed6654-53d9-49f0-8f6d-80fe3317847b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"96ba4605-11c8-44b0-9393-1651f0d531f3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3203c46d-4fcf-4fca-bea2-fd700ed881aa\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"5d5b6a6a-b3a5-4d95-9e78-47a724775168\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"66ed6654-53d9-49f0-8f6d-80fe3317847b\\\"\",\r\n + \ \"etag\": \"W/\\\"96ba4605-11c8-44b0-9393-1651f0d531f3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGHDCZDEVWDC45SJA2CV2OQRJNE7WWCN6SZUJXSSU3CGYXDUUSRAX3F6ZCZHBBBWMT7/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\r\n \ }\r\n ],\r\n \"delegations\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -2215,11 +2383,11 @@ interactions: cache-control: - no-cache content-length: - - '1569' + - '1628' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:52 GMT + - Tue, 17 Oct 2023 01:54:50 GMT expires: - '-1' pragma: @@ -2236,7 +2404,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 893f3282-c81b-4a70-883d-2bd6ebe757b1 + - 7f43baa9-ccff-471c-b25f-70c8664887b7 status: code: 200 message: OK @@ -2284,24 +2452,23 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JVbvUoh2iyc4Jdye7whOohyLuUYC9iR6","name":"vm_deploy_JVbvUoh2iyc4Jdye7whOohyLuUYC9iR6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4088710931722762995","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-09-26T16:04:58.4493588Z","duration":"PT0.0009984S","correlationId":"980442bd-9ec9-4706-8fa3-f7df487f7f51","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8QpF4VPYP45J3SJwtDv7kp6YeP3cDVD1","name":"vm_deploy_8QpF4VPYP45J3SJwtDv7kp6YeP3cDVD1","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3894951092139176390","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T01:54:59.5981883Z","duration":"PT0.000971S","correlationId":"0ccbe68a-a598-4af0-a223-d51985441334","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JVbvUoh2iyc4Jdye7whOohyLuUYC9iR6/operationStatuses/08585373985893672845?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8QpF4VPYP45J3SJwtDv7kp6YeP3cDVD1/operationStatuses/08585040991889426120?api-version=2019-10-01 cache-control: - no-cache content-length: - - '2050' + - '2049' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:04:58 GMT + - Tue, 17 Oct 2023 01:55:00 GMT expires: - '-1' pragma: @@ -2311,7 +2478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -2330,10 +2497,52 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585373985893672845?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040991889426120?api-version=2019-10-01 + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:55:01 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 --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb + --os-type + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040991889426120?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -2345,7 +2554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:05:30 GMT + - Tue, 17 Oct 2023 01:55:31 GMT expires: - '-1' pragma: @@ -2374,10 +2583,52 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585373985893672845?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040991889426120?api-version=2019-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 01:56:02 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 --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb + --os-type + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040991889426120?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2389,7 +2640,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:00 GMT + - Tue, 17 Oct 2023 01:56:32 GMT expires: - '-1' pragma: @@ -2418,22 +2669,21 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JVbvUoh2iyc4Jdye7whOohyLuUYC9iR6","name":"vm_deploy_JVbvUoh2iyc4Jdye7whOohyLuUYC9iR6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4088710931722762995","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-09-26T16:05:44.4388483Z","duration":"PT45.9904879S","correlationId":"980442bd-9ec9-4706-8fa3-f7df487f7f51","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8QpF4VPYP45J3SJwtDv7kp6YeP3cDVD1","name":"vm_deploy_8QpF4VPYP45J3SJwtDv7kp6YeP3cDVD1","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3894951092139176390","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T01:56:10.1815242Z","duration":"PT1M10.5843069S","correlationId":"0ccbe68a-a598-4af0-a223-d51985441334","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '2675' + - '2677' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:00 GMT + - Tue, 17 Oct 2023 01:56:33 GMT expires: - '-1' pragma: @@ -2462,25 +2712,25 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"726b4753-01ad-4b72-8988-d61f381e805c\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"a99c7104-ce3d-408f-8e3e-b605193432d2\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5f9fb2b14e7c4bddac5b957605265aa8\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_efd34d71f18b43869de4eef6ea7f66cb\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5f9fb2b14e7c4bddac5b957605265aa8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_efd34d71f18b43869de4eef6ea7f66cb\"\r\n \ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": @@ -2488,42 +2738,42 @@ interactions: \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2022-09-26T16:06:02+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"sDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": - \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n - \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-09-26T16:05:19.460191+00:00\"\r\n }\r\n ]\r\n },\r\n - \ {\r\n \"name\": \"vm2_disk2_5f9fb2b14e7c4bddac5b957605265aa8\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"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\": + \"2023-10-17T01:56:35+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"sDisk\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2022-09-26T16:05:19.460191+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T01:55:18.5752618+00:00\"\r\n + \ }\r\n ]\r\n },\r\n {\r\n \"name\": + \"vm2_disk2_efd34d71f18b43869de4eef6ea7f66cb\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-17T01:55:18.5752618+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"dDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2022-09-26T16:05:19.460191+00:00\"\r\n }\r\n ]\r\n }\r\n - \ ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": - \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2022-09-26T16:05:38.773013+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}" + \"2023-10-17T01:55:18.5752618+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\": \"2023-10-17T01:56:05.9197184+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}" headers: cache-control: - no-cache content-length: - - '3894' + - '3898' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:02 GMT + - Tue, 17 Oct 2023 01:56:35 GMT expires: - '-1' pragma: @@ -2540,7 +2790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31949 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -2559,18 +2809,17 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"00b0ffac-b7f0-4527-9045-0e4b74504a57\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"33f4cb9b-81fe-467b-9186-f67517b2e1a7\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3db7dfc2-07a0-4454-bf6e-9563426879fd\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"a7a16df2-6ee2-48f9-b023-52c48c4e1892\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"00b0ffac-b7f0-4527-9045-0e4b74504a57\\\"\",\r\n + \ \"etag\": \"W/\\\"33f4cb9b-81fe-467b-9186-f67517b2e1a7\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2579,8 +2828,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\": - \"nxcagmwpj5fe5pvc5vya3webvc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-0A-1D-54\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"njvfwxnfwoku1htyi4tsi30rna.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"60-45-BD-08-0D-95\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\"\r\n @@ -2595,9 +2844,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:03 GMT + - Tue, 17 Oct 2023 01:56:37 GMT etag: - - W/"00b0ffac-b7f0-4527-9045-0e4b74504a57" + - W/"33f4cb9b-81fe-467b-9186-f67517b2e1a7" expires: - '-1' pragma: @@ -2614,7 +2863,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e906e795-16ca-41ba-a2b5-095c1e59e7c2 + - ce1f0c23-b8c3-4360-a4aa-25cdd95876ac status: code: 200 message: OK @@ -2633,17 +2882,16 @@ interactions: - -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb --os-type User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"64903151-55f7-48ce-8261-08303a20a647\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6b0ddace-2c96-4d51-9566-c93631ef743b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"eee8aed2-987b-4ad2-ac0d-4a0cd61c6c61\",\r\n - \ \"ipAddress\": \"20.253.140.83\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"eb767d86-8480-4eab-86f0-7118587e36c0\",\r\n + \ \"ipAddress\": \"104.42.47.165\",\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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2656,9 +2904,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:04 GMT + - Tue, 17 Oct 2023 01:56:38 GMT etag: - - W/"64903151-55f7-48ce-8261-08303a20a647" + - W/"6b0ddace-2c96-4d51-9566-c93631ef743b" expires: - '-1' pragma: @@ -2675,7 +2923,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0878db23-154a-4132-9c60-1faf35288579 + - 02c9bcf7-c7b7-4459-9be1-b962a608ba90 status: code: 200 message: OK @@ -2693,33 +2941,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.40.0 (PIP) azsdk-python-azure-mgmt-compute/27.1.0 Python/3.8.0 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"726b4753-01ad-4b72-8988-d61f381e805c\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n - \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"a99c7104-ce3d-408f-8e3e-b605193432d2\",\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n \ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5f9fb2b14e7c4bddac5b957605265aa8\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_efd34d71f18b43869de4eef6ea7f66cb\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5f9fb2b14e7c4bddac5b957605265aa8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_efd34d71f18b43869de4eef6ea7f66cb\"\r\n \ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\"\r\n \ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\": - false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -2728,7 +2976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Sep 2022 16:06:07 GMT + - Tue, 17 Oct 2023 01:56:39 GMT expires: - '-1' pragma: @@ -2745,7 +2993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31948 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_extension.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_extension.yaml index e157619eca0..f195bbc9341 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_extension.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vm_extension.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-06-25T06:35:50Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001","name":"cli_test_vm_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_extension","date":"2023-10-17T02:00:20Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:49 GMT + - Tue, 17 Oct 2023 02:00:25 GMT expires: - '-1' pragma: @@ -59,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -133,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -141,13 +121,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Sun, 25 Jun 2023 06:35:50 GMT + - Tue, 17 Oct 2023 02:00:26 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Sun, 25 Jun 2023 06:40:50 GMT + - Tue, 17 Oct 2023 02:05:26 GMT source-age: - - '0' + - '212' strict-transport-security: - max-age=31536000 vary: @@ -161,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 4d15d53d5594261f99a04065e6df25423059fb45 + - dabb2c294f69b8f893232ae1be6365543649ee57 x-frame-options: - deny x-github-request-id: - - 2558:0363:A6C2B:CE301:6497D9DF + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-tyo11935-TYO + - cache-qpg1238-QPG x-timer: - - S1687674950.192188,VS0,VE232 + - S1697508027.740938,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -189,23 +169,23 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:51 GMT + - Tue, 17 Oct 2023 02:00:27 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996 status: code: 200 message: OK @@ -240,33 +220,34 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:51 GMT + - Tue, 17 Oct 2023 02:00:28 GMT expires: - '-1' pragma: @@ -283,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -301,7 +282,7 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: @@ -315,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:53 GMT + - Tue, 17 Oct 2023 02:00:28 GMT expires: - '-1' pragma: @@ -357,9 +338,9 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "myvm", - "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "myvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "incremental"}}' headers: @@ -372,21 +353,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3173' + - '3194' Content-Type: - application/json ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U499y5hjNyvmeN0UpoJI4YocNETXXfal","name":"vm_deploy_U499y5hjNyvmeN0UpoJI4YocNETXXfal","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8227484351116778656","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-06-25T06:35:58.8536191Z","duration":"PT0.0001742S","correlationId":"e2a67333-b7a0-4e93-9d1d-a06496b44d06","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_CNxkl3i4dnqoabLlOK20vsG3aS7cHYlY","name":"vm_deploy_CNxkl3i4dnqoabLlOK20vsG3aS7cHYlY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3478943886334150702","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:00:37.3644818Z","duration":"PT0.0004009S","correlationId":"45244cbf-243c-4e80-8b69-d41481fe948a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U499y5hjNyvmeN0UpoJI4YocNETXXfal/operationStatuses/08585139319286270357?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_CNxkl3i4dnqoabLlOK20vsG3aS7cHYlY/operationStatuses/08585040988512809470?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -394,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:59 GMT + - Tue, 17 Oct 2023 02:00:38 GMT expires: - '-1' pragma: @@ -422,21 +403,21 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139319286270357?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040988512809470?api-version=2019-10-01 response: body: - string: '{"status":"Accepted"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '21' + - '20' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:35:59 GMT + - Tue, 17 Oct 2023 02:00:39 GMT expires: - '-1' pragma: @@ -464,9 +445,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139319286270357?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040988512809470?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -478,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:36:30 GMT + - Tue, 17 Oct 2023 02:01:09 GMT expires: - '-1' pragma: @@ -506,9 +487,9 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585139319286270357?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040988512809470?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -520,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:00 GMT + - Tue, 17 Oct 2023 02:01:39 GMT expires: - '-1' pragma: @@ -548,12 +529,12 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_U499y5hjNyvmeN0UpoJI4YocNETXXfal","name":"vm_deploy_U499y5hjNyvmeN0UpoJI4YocNETXXfal","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8227484351116778656","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-06-25T06:36:30.9896414Z","duration":"PT32.1361965S","correlationId":"e2a67333-b7a0-4e93-9d1d-a06496b44d06","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_CNxkl3i4dnqoabLlOK20vsG3aS7cHYlY","name":"vm_deploy_CNxkl3i4dnqoabLlOK20vsG3aS7cHYlY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3478943886334150702","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:01:19.3734963Z","duration":"PT42.0094154S","correlationId":"45244cbf-243c-4e80-8b69-d41481fe948a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"myvmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"myvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"myvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"myvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/virtualNetworks/myvmVNET"}]}}' headers: cache-control: - no-cache @@ -562,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:00 GMT + - Tue, 17 Oct 2023 02:01:40 GMT expires: - '-1' pragma: @@ -590,23 +571,24 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a86b61a5-05dd-41ff-86af-01d904a14d37\",\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.202306070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_7143eaa4526447a4ac228679b31e440a\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"74c2b685-7cec-43fe-802e-732780d3d43c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_0826fc75136547278b1b38dad2413274\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -615,21 +597,21 @@ interactions: \ }\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"myvm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:36:38+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:01:31+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:36:16.2180748+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:01:03.9396493+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:36:28.5307294+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:01:13.1273306+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}" @@ -637,11 +619,11 @@ interactions: cache-control: - no-cache content-length: - - '3113' + - '3134' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:02 GMT + - Tue, 17 Oct 2023 02:01:42 GMT expires: - '-1' pragma: @@ -658,7 +640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31862 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -676,17 +658,17 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"myvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\",\r\n - \ \"etag\": \"W/\\\"62ac751c-6cdf-418c-87e4-7a37bd1f142f\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"a9e938d3-722b-4bed-936f-e49407119827\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"45e01091-37ac-43f4-a636-4a8e11f90d4e\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"7d060071-e7df-4aa4-a667-b2861f01e71d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigmyvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\",\r\n - \ \"etag\": \"W/\\\"62ac751c-6cdf-418c-87e4-7a37bd1f142f\\\"\",\r\n + \ \"etag\": \"W/\\\"a9e938d3-722b-4bed-936f-e49407119827\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -695,8 +677,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\": - \"rbry53p5rrlupp5zgx2mc3vhia.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-5B-89-C6\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + \"zpetg2tynn1efonqkrinutdilc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"60-45-BD-02-C6-50\",\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkSecurityGroups/myvmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\"\r\n @@ -711,9 +693,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:04 GMT + - Tue, 17 Oct 2023 02:01:43 GMT etag: - - W/"62ac751c-6cdf-418c-87e4-7a37bd1f142f" + - W/"a9e938d3-722b-4bed-936f-e49407119827" expires: - '-1' pragma: @@ -730,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0de9f138-710d-42e5-8387-2de98b4f3668 + - e75a5fd8-1c8b-4df5-910a-3a6f765a9040 status: code: 200 message: OK @@ -748,16 +730,16 @@ interactions: ParameterSetName: - -n -g --image --authentication-type --admin-username --admin-password User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"myvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/publicIPAddresses/myvmPublicIP\",\r\n - \ \"etag\": \"W/\\\"0482914d-32e8-40cb-a926-a54fa41a762c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"81934b42-9cde-415e-b028-20a1168d72b6\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"68e21187-ce58-4e45-bcd9-8bead12e6b9f\",\r\n - \ \"ipAddress\": \"40.78.71.133\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"080b64c6-71ba-4249-ae85-e2814fc474d8\",\r\n + \ \"ipAddress\": \"20.245.22.108\",\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic/ipConfigurations/ipconfigmyvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -766,13 +748,13 @@ interactions: cache-control: - no-cache content-length: - - '904' + - '905' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:05 GMT + - Tue, 17 Oct 2023 02:01:44 GMT etag: - - W/"0482914d-32e8-40cb-a926-a54fa41a762c" + - W/"81934b42-9cde-415e-b028-20a1168d72b6" expires: - '-1' pragma: @@ -789,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 924dd82f-03c6-4db9-8563-7f4e5444385a + - aee60b5e-0f57-477e-9456-3f5c2109a089 status: code: 200 message: OK @@ -807,23 +789,24 @@ interactions: ParameterSetName: - --vm-name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a86b61a5-05dd-41ff-86af-01d904a14d37\",\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.202306070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_7143eaa4526447a4ac228679b31e440a\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"74c2b685-7cec-43fe-802e-732780d3d43c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_0826fc75136547278b1b38dad2413274\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -831,17 +814,17 @@ interactions: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]}\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1821' + - '1842' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:07 GMT + - Tue, 17 Oct 2023 02:01:47 GMT expires: - '-1' pragma: @@ -858,7 +841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31861 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -876,23 +859,24 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a86b61a5-05dd-41ff-86af-01d904a14d37\",\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.202306070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_7143eaa4526447a4ac228679b31e440a\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"74c2b685-7cec-43fe-802e-732780d3d43c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_0826fc75136547278b1b38dad2413274\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -901,21 +885,21 @@ interactions: \ }\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"myvm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:36:38+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:01:31+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:36:16.2180748+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:01:03.9396493+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:36:28.5307294+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:01:13.1273306+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}" @@ -923,11 +907,11 @@ interactions: cache-control: - no-cache content-length: - - '3113' + - '3134' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:08 GMT + - Tue, 17 Oct 2023 02:01:48 GMT expires: - '-1' pragma: @@ -944,12 +928,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31860 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"forceUpdateTag": "319fe317-fce8-4e0b-90f5-b4295abe71f3", + body: '{"location": "westus", "properties": {"forceUpdateTag": "416d8369-316c-4bab-b391-c49c78a57e07", "publisher": "Microsoft.OSTCExtensions", "type": "VMAccessForLinux", "typeHandlerVersion": "1.2", "autoUpgradeMinorVersion": true, "protectedSettings": {"username": "foouser1", "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8InHIPLAu6lMc0d+5voyXqigZfT5r6fAM1+FQAi+mkPDdk2hNq1BG0Bwfc88Gm7BImw8TS+x2bnZmhCbVnHd6BPCDY7a+cHCSqrQMW89Cv6Vl4ueGOeAWHpJTV9CTLVz4IY1x4HBdkLI2lKIHri9+z7NIdvFk7iOkMVGyez5H1xDbF2szURxgc4I2/o5wycSwX+G8DrtsBvWLmFv9YAPx+VkEHQDjR0WWezOjuo1rDn6MQfiKfqAjPuInwNOg5AIxXAOResrin2PUlArNtdDH1zlvI4RZi36+tJO7mtm3dJiKs4Sj7G6b1CjIU6aaj27MmKy3arIFChYav9yYM3IT"}}}' @@ -969,7 +953,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2020-06-01 response: @@ -977,14 +961,14 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"319fe317-fce8-4e0b-90f5-b4295abe71f3\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"416d8369-316c-4bab-b391-c49c78a57e07\",\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/302d332a-0d90-43c7-80ba-2c83c659b9e6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fc5f1e5c-5d11-4152-9277-11bdbdf84be4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 cache-control: - no-cache content-length: @@ -992,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:13 GMT + - Tue, 17 Oct 2023 02:01:55 GMT expires: - '-1' pragma: @@ -1005,7 +989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1189 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1025,13 +1009,13 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/302d332a-0d90-43c7-80ba-2c83c659b9e6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fc5f1e5c-5d11-4152-9277-11bdbdf84be4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:37:13.1405069+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"302d332a-0d90-43c7-80ba-2c83c659b9e6\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:01:55.1904108+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fc5f1e5c-5d11-4152-9277-11bdbdf84be4\"\r\n}" headers: cache-control: - no-cache @@ -1040,7 +1024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:13 GMT + - Tue, 17 Oct 2023 02:01:56 GMT expires: - '-1' pragma: @@ -1057,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29905 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1075,14 +1059,14 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/302d332a-0d90-43c7-80ba-2c83c659b9e6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fc5f1e5c-5d11-4152-9277-11bdbdf84be4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:37:13.1405069+00:00\",\r\n \"endTime\": - \"2023-06-25T06:37:31.2500416+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"302d332a-0d90-43c7-80ba-2c83c659b9e6\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:01:55.1904108+00:00\",\r\n \"endTime\": + \"2023-10-17T02:02:05.4561214+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fc5f1e5c-5d11-4152-9277-11bdbdf84be4\"\r\n}" headers: cache-control: - no-cache @@ -1091,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:44 GMT + - Tue, 17 Oct 2023 02:02:25 GMT expires: - '-1' pragma: @@ -1108,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 status: code: 200 message: OK @@ -1126,7 +1110,7 @@ interactions: ParameterSetName: - -n --publisher --version --vm-name --resource-group --protected-settings --force-update User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2020-06-01 response: @@ -1134,7 +1118,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"319fe317-fce8-4e0b-90f5-b4295abe71f3\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"416d8369-316c-4bab-b391-c49c78a57e07\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1145,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:44 GMT + - Tue, 17 Oct 2023 02:02:27 GMT expires: - '-1' pragma: @@ -1162,7 +1146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31857 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1180,23 +1164,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"myvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a86b61a5-05dd-41ff-86af-01d904a14d37\",\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.202306070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_7143eaa4526447a4ac228679b31e440a\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"74c2b685-7cec-43fe-802e-732780d3d43c\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\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_vm_extension000001/providers/Microsoft.Compute/disks/myvm_disk1_0826fc75136547278b1b38dad2413274\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"myvm\",\r\n \ \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n @@ -1205,40 +1190,40 @@ interactions: \ }\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_vm_extension000001/providers/Microsoft.Network/networkInterfaces/myvmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"myvm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-06-25T06:37:25+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n - \ \"typeHandlerVersion\": \"1.5.15\",\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\": \"myvm_disk1_7143eaa4526447a4ac228679b31e440a\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"myvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-17T02:01:59+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n + \ \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n \"typeHandlerVersion\": + \"1.5.16\",\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\": + \"myvm_disk1_0826fc75136547278b1b38dad2413274\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-06-25T06:36:16.2180748+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:01:03.9396493+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.VMAccessForLinux\",\r\n \"typeHandlerVersion\": - \"1.5.15\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"1.5.16\",\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 - \ \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n + \ \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n - \ \"time\": \"2023-06-25T06:37:31.2344697+00:00\"\r\n },\r\n + \ \"time\": \"2023-10-17T02:02:05.4404969+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 \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"forceUpdateTag\": \"319fe317-fce8-4e0b-90f5-b4295abe71f3\",\r\n + true,\r\n \"forceUpdateTag\": \"416d8369-316c-4bab-b391-c49c78a57e07\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \ \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n }\r\n ]\r\n}" @@ -1246,11 +1231,11 @@ interactions: cache-control: - no-cache content-length: - - '4590' + - '4611' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:46 GMT + - Tue, 17 Oct 2023 02:02:29 GMT expires: - '-1' pragma: @@ -1267,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31856 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;34 status: code: 200 message: OK @@ -1285,7 +1270,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2020-06-01 response: @@ -1293,7 +1278,7 @@ interactions: string: "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n - \ \"forceUpdateTag\": \"319fe317-fce8-4e0b-90f5-b4295abe71f3\",\r\n \"provisioningState\": + \ \"forceUpdateTag\": \"416d8369-316c-4bab-b391-c49c78a57e07\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.2\"\r\n }\r\n}" headers: @@ -1304,7 +1289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:48 GMT + - Tue, 17 Oct 2023 02:02:31 GMT expires: - '-1' pragma: @@ -1321,7 +1306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31855 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;33 status: code: 200 message: OK @@ -1341,7 +1326,7 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extension000001/providers/Microsoft.Compute/virtualMachines/myvm/extensions/VMAccessForLinux?api-version=2020-06-01 response: @@ -1351,17 +1336,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9fa3f122-dbbd-47bb-8871-aa766dfc72e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3569e2ef-8d55-46a2-85d3-bb6fa76da55c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Sun, 25 Jun 2023 06:37:49 GMT + - Tue, 17 Oct 2023 02:02:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9fa3f122-dbbd-47bb-8871-aa766dfc72e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3569e2ef-8d55-46a2-85d3-bb6fa76da55c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1372,7 +1357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1188 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1392,22 +1377,22 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9fa3f122-dbbd-47bb-8871-aa766dfc72e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3569e2ef-8d55-46a2-85d3-bb6fa76da55c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:37:50.390888+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9fa3f122-dbbd-47bb-8871-aa766dfc72e9\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:02:34.0503771+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"3569e2ef-8d55-46a2-85d3-bb6fa76da55c\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:37:50 GMT + - Tue, 17 Oct 2023 02:02:33 GMT expires: - '-1' pragma: @@ -1424,7 +1409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1442,23 +1427,23 @@ interactions: ParameterSetName: - --resource-group --vm-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9fa3f122-dbbd-47bb-8871-aa766dfc72e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3569e2ef-8d55-46a2-85d3-bb6fa76da55c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-06-25T06:37:50.390888+00:00\",\r\n \"endTime\": - \"2023-06-25T06:38:00.6097532+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9fa3f122-dbbd-47bb-8871-aa766dfc72e9\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:02:34.0503771+00:00\",\r\n \"endTime\": + \"2023-10-17T02:02:44.2691655+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3569e2ef-8d55-46a2-85d3-bb6fa76da55c\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Sun, 25 Jun 2023 06:38:21 GMT + - Tue, 17 Oct 2023 02:03:04 GMT expires: - '-1' pragma: @@ -1475,7 +1460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_create_auth.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_create_auth.yaml index 1e0723e465e..0093daf813b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_create_auth.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_create_auth.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -17,26 +17,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -59,7 +60,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -70,19 +71,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Wed, 22 Jun 2022 02:28:05 GMT + - Tue, 17 Oct 2023 02:11:09 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Wed, 22 Jun 2022 02:33:05 GMT + - Tue, 17 Oct 2023 02:16:09 GMT source-age: - - '275' + - '105' strict-transport-security: - max-age=31536000 vary: @@ -96,15 +99,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - d0d1d75a3488afbf96c8fe38017b3e14ef11a226 + - 7f63e2623b717e87292dc928aeb783896492a993 x-frame-options: - deny x-github-request-id: - - 9A0E:4D95:E5AC1:12E779:62B26A94 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1283-QPG + - cache-qpg1247-QPG x-timer: - - S1655864885.392133,VS0,VE1 + - S1697508669.042395,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -124,23 +127,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:06 GMT + - Tue, 17 Oct 2023 02:11:09 GMT expires: - '-1' pragma: @@ -157,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 status: code: 200 message: OK @@ -175,30 +178,34 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:07 GMT + - Tue, 17 Oct 2023 02:11:11 GMT expires: - '-1' pragma: @@ -215,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73991 + - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990 status: code: 200 message: OK @@ -233,7 +240,7 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: @@ -247,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:09 GMT + - Tue, 17 Oct 2023 02:11:13 GMT expires: - '-1' pragma: @@ -286,13 +293,13 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": - "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vmss191ef", "adminUsername": "myadmin", "adminPassword": - "[parameters(''adminPassword'')]", "linuxConfiguration": {"disablePasswordAuthentication": + "Debian", "offer": "debian-11", "sku": "11-backports-gen2", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss110cc", "adminUsername": "myadmin", + "adminPassword": "[parameters(''adminPassword'')]", "linuxConfiguration": {"disablePasswordAuthentication": false, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss191efNic", "properties": {"ipConfigurations": [{"name": "vmss191efIPConfig", + [{"name": "vmss110ccNic", "properties": {"ipConfigurations": [{"name": "vmss110ccIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}], @@ -310,21 +317,21 @@ interactions: Connection: - keep-alive Content-Length: - - '4564' + - '4579' Content-Type: - application/json ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_tSL8d0jrRZLXWiwRAvHDdQueTogdNsTQ","name":"vmss_deploy_tSL8d0jrRZLXWiwRAvHDdQueTogdNsTQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16039770750792702517","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-22T02:28:26.8509658Z","duration":"PT0.0008599S","correlationId":"7adc8b7a-a8b6-4ced-8906-695a5c0ebae7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_DwP9m3yLuWSBEvSBIAQG6HaISqhY5drg","name":"vmss_deploy_DwP9m3yLuWSBEvSBIAQG6HaISqhY5drg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16150217595335636139","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:11:22.8071577Z","duration":"PT0.0004679S","correlationId":"20fbb6b9-76dd-4b97-8195-f2d2e97c6db5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_tSL8d0jrRZLXWiwRAvHDdQueTogdNsTQ/operationStatuses/08585457419819416121?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_DwP9m3yLuWSBEvSBIAQG6HaISqhY5drg/operationStatuses/08585040982058725255?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -332,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:28 GMT + - Tue, 17 Oct 2023 02:11:25 GMT expires: - '-1' pragma: @@ -342,7 +349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -360,9 +367,51 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982058725255?api-version=2019-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:11:25 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: + - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457419819416121?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982058725255?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -374,7 +423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:59 GMT + - Tue, 17 Oct 2023 02:11:56 GMT expires: - '-1' pragma: @@ -402,9 +451,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457419819416121?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982058725255?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -416,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:29:30 GMT + - Tue, 17 Oct 2023 02:12:27 GMT expires: - '-1' pragma: @@ -444,9 +493,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457419819416121?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982058725255?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -458,7 +507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:00 GMT + - Tue, 17 Oct 2023 02:12:57 GMT expires: - '-1' pragma: @@ -486,23 +535,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --admin-password --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_tSL8d0jrRZLXWiwRAvHDdQueTogdNsTQ","name":"vmss_deploy_tSL8d0jrRZLXWiwRAvHDdQueTogdNsTQ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16039770750792702517","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-22T02:29:32.1381122Z","duration":"PT1M5.2880063S","correlationId":"7adc8b7a-a8b6-4ced-8906-695a5c0ebae7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss191ef","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_DwP9m3yLuWSBEvSBIAQG6HaISqhY5drg","name":"vmss_deploy_DwP9m3yLuWSBEvSBIAQG6HaISqhY5drg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16150217595335636139","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:12:27.4844087Z","duration":"PT1M4.6777189S","correlationId":"20fbb6b9-76dd-4b97-8195-f2d2e97c6db5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss110cc","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":false,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss191efNic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss191efIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e1d13e46-46ca-44b3-8b87-05edcc2f3c67","timeCreated":"2022-06-22T02:28:49.7797746+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss110ccNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss110ccIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"230cba2a-9db5-4756-a4b3-9cfaa64dc158","timeCreated":"2023-10-17T02:11:44.4484413+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '5738' + - '5843' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:01 GMT + - Tue, 17 Oct 2023 02:12:57 GMT expires: - '-1' pragma: @@ -526,7 +575,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -534,26 +583,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -576,7 +626,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -587,19 +637,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Wed, 22 Jun 2022 02:30:02 GMT + - Tue, 17 Oct 2023 02:12:58 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Wed, 22 Jun 2022 02:35:02 GMT + - Tue, 17 Oct 2023 02:17:58 GMT source-age: - - '89' + - '215' strict-transport-security: - max-age=31536000 vary: @@ -613,15 +665,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 1b5b28d051a4e8377e7ec31bab9da4069b3e1246 + - 4a0c31e75bb40951bc88ffc8b74c2b4be394782f x-frame-options: - deny x-github-request-id: - - 9A0E:4D95:E5AC1:12E779:62B26A94 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1267-QPG + - cache-qpg1268-QPG x-timer: - - S1655865003.655986,VS0,VE1 + - S1697508779.812183,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -641,23 +693,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20220328.962\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '271' + - '288' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:02 GMT + - Tue, 17 Oct 2023 02:12:59 GMT expires: - '-1' pragma: @@ -674,7 +726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 status: code: 200 message: OK @@ -692,30 +744,34 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20220328.962?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": - \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20220328.962\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20220328.962\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '859' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:03 GMT + - Tue, 17 Oct 2023 02:13:01 GMT expires: - '-1' pragma: @@ -732,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73990 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73989 status: code: 200 message: OK @@ -750,27 +806,27 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\",\r\n - \ \"etag\": \"W/\\\"0e15940f-40b4-4167-b49c-f10078e793c6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"95796894-b368-4773-96ca-2e3984e961e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b250c97e-af2f-41ac-a3dd-72b6124d34e3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d7f692a1-fccf-44ec-aee3-3e2e4e95b858\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vmss1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\",\r\n - \ \"etag\": \"W/\\\"0e15940f-40b4-4167-b49c-f10078e793c6\\\"\",\r\n + \ \"etag\": \"W/\\\"95796894-b368-4773-96ca-2e3984e961e2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss191efNic/ipConfigurations/vmss191efIPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss191efNic/ipConfigurations/vmss191efIPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss191efNic/ipConfigurations/vmss191efIPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss191efNic/ipConfigurations/vmss191efIPConfig\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSU2TAV5QZUVYZALUE7JPZUTLEBH4ZEIKJ6PCZ5S4TBZ5PKJG/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/0/NETWORKINTERFACES/VMSS110CCNIC/ipConfigurations/VMSS110CCIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSU2TAV5QZUVYZALUE7JPZUTLEBH4ZEIKJ6PCZ5S4TBZ5PKJG/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/1/NETWORKINTERFACES/VMSS110CCNIC/ipConfigurations/VMSS110CCIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSU2TAV5QZUVYZALUE7JPZUTLEBH4ZEIKJ6PCZ5S4TBZ5PKJG/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS110CCNIC/ipConfigurations/VMSS110CCIPCONFIG\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VMSS_CREATE_OPTIONSU2TAV5QZUVYZALUE7JPZUTLEBH4ZEIKJ6PCZ5S4TBZ5PKJG/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/3/NETWORKINTERFACES/VMSS110CCNIC/ipConfigurations/VMSS110CCIPCONFIG\"\r\n \ }\r\n ],\r\n \"delegations\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -779,11 +835,11 @@ interactions: cache-control: - no-cache content-length: - - '2621' + - '2785' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:05 GMT + - Tue, 17 Oct 2023 02:13:03 GMT expires: - '-1' pragma: @@ -800,7 +856,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aa7e906-d1a2-457f-830a-ccfc7ef7a875 + - 1316f9d8-fa99-4b84-8cb2-874385a3c0c6 status: code: 200 message: OK @@ -823,13 +879,13 @@ interactions: "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss294c0", "adminUsername": + "imageReference": {"publisher": "Debian", "offer": "debian-11", "sku": "11-backports-gen2", + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss2cbdd", "adminUsername": "myadmin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/myadmin/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss294c0Nic", "properties": {"ipConfigurations": [{"name": "vmss294c0IPConfig", + [{"name": "vmss2cbddNic", "properties": {"ipConfigurations": [{"name": "vmss2cbddIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}], @@ -847,29 +903,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3979' + - '3994' Content-Type: - application/json ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_JHdrcdMVpFeZUQ0gIyJdHYS5TM6D3uq1","name":"vmss_deploy_JHdrcdMVpFeZUQ0gIyJdHYS5TM6D3uq1","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3992109757025135762","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-22T02:30:22.8370455Z","duration":"PT0.0008065S","correlationId":"848b919c-4992-4859-bfec-16785fe4ef70","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lncjKXrQgzEgvz1jzyLlqzKgsCzkOswJ","name":"vmss_deploy_lncjKXrQgzEgvz1jzyLlqzKgsCzkOswJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15298427997537497729","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:13:14.151549Z","duration":"PT0.000612S","correlationId":"df025829-1928-4806-bc43-03e28ee561d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_JHdrcdMVpFeZUQ0gIyJdHYS5TM6D3uq1/operationStatuses/08585457418650427013?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lncjKXrQgzEgvz1jzyLlqzKgsCzkOswJ/operationStatuses/08585040980943024926?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1861' + - '1860' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:24 GMT + - Tue, 17 Oct 2023 02:13:15 GMT expires: - '-1' pragma: @@ -897,9 +953,51 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040980943024926?api-version=2019-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:13:17 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: + - --image -l -g -n --authentication-type --admin-username --ssh-key-value + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457418650427013?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040980943024926?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -911,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:30:55 GMT + - Tue, 17 Oct 2023 02:13:47 GMT expires: - '-1' pragma: @@ -939,9 +1037,9 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457418650427013?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040980943024926?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -953,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:31:26 GMT + - Tue, 17 Oct 2023 02:14:31 GMT expires: - '-1' pragma: @@ -981,23 +1079,23 @@ interactions: ParameterSetName: - --image -l -g -n --authentication-type --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_JHdrcdMVpFeZUQ0gIyJdHYS5TM6D3uq1","name":"vmss_deploy_JHdrcdMVpFeZUQ0gIyJdHYS5TM6D3uq1","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3992109757025135762","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-22T02:31:22.5899933Z","duration":"PT59.7537543S","correlationId":"848b919c-4992-4859-bfec-16785fe4ef70","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss294c0","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_lncjKXrQgzEgvz1jzyLlqzKgsCzkOswJ","name":"vmss_deploy_lncjKXrQgzEgvz1jzyLlqzKgsCzkOswJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15298427997537497729","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:14:06.3048341Z","duration":"PT52.1538971S","correlationId":"df025829-1928-4806-bc43-03e28ee561d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss2cbdd","adminUsername":"myadmin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/myadmin/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss294c0Nic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss294c0IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"609dae4f-c21d-4bda-b1d1-e1f4c4290e3f","timeCreated":"2022-06-22T02:30:41.4674879+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' + test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss2cbddNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss2cbddIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"0dd6488c-63cc-4347-993c-0881ef427035","timeCreated":"2023-10-17T02:13:32.5595092+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4987' + - '5093' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:31:27 GMT + - Tue, 17 Oct 2023 02:14:32 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_existing_lb.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_existing_lb.yaml index 8d7b7a931d3..52067402414 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_existing_lb.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_existing_lb.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T02:26:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-16T09:51:39Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '354' + - '399' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:26:40 GMT + - Mon, 16 Oct 2023 09:51:43 GMT expires: - '-1' pragma: @@ -55,21 +55,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_existing_lb000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2019-10-01 response: body: - string: '{"value":[],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2fpublicIPAddresses%27&api-version=2019-10-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTUyIU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxVVlVTRUZPT2pKRVVrY3RUVWxEVWs5VFQwWlVPakpGVDFCRlVrRlVTVTlPUVV4SlRsTkpSMGhVVXpveVJsZFBVa3RUVUVGRFJWTTZNa1pGVkVoQlRqb3lSRmRUTFVWQlUxUlZVekktIn0%3d"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '593' + - '12' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:26:40 GMT + - Mon, 16 Oct 2023 09:51:44 GMT expires: - '-1' pragma: @@ -84,7 +84,17 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2018-11-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": + "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": + {}, "apiVersion": "2018-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], + "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": + [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, + "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": + "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -94,95 +104,85 @@ interactions: - network lb create Connection: - keep-alive + Content-Length: + - '1103' + Content-Type: + - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2019-10-01&%24filter=resourceGroup+eq+%27cli_test_vmss_create_existing_lb000001%27+and+name+eq+%27None%27+and+resourceType+eq+%27Microsoft.Network%2FpublicIPAddresses%27&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU9FTTVOa1UtIiwibmV4dFJvd0tleSI6IjEhMTUyIU1FSXhSalkwTnpFeFFrWXdORVJFUVVGRlF6TkRRamt5TnpKR01EazFPVEJmUjFKTUxVVlVTRUZPT2pKRVVrY3RUVWxEVWs5VFQwWlVPakpGVDFCRlVrRlVTVTlPUVV4SlRsTkpSMGhVVXpveVJsZFBVa3RUVUVGRFJWTTZNa1pGVkVoQlRqb3lSRmRUTFVWQlUxUlZVekktIn0%3D + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_7CdNd19ZVRYDuNGgOoESBJfuIVCIlmDU","name":"lb_deploy_7CdNd19ZVRYDuNGgOoESBJfuIVCIlmDU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8164782103034839400","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T09:51:50.7810118Z","duration":"PT0.0005176S","correlationId":"0a0de759-916f-4532-bf5a-a71eef0b5a26","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_7CdNd19ZVRYDuNGgOoESBJfuIVCIlmDU/operationStatuses/08585041569774484753?api-version=2019-10-01 cache-control: - no-cache content-length: - - '12' + - '1235' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:26:41 GMT + - Mon, 16 Oct 2023 09:51:51 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"apiVersion": "2018-11-01", "type": "Microsoft.Network/publicIPAddresses", - "name": "PublicIPlb1", "location": "westus", "tags": {}, "dependsOn": [], "properties": - {"publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}, {"type": - "Microsoft.Network/loadBalancers", "name": "lb1", "location": "westus", "tags": - {}, "apiVersion": "2018-11-01", "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], - "properties": {"backendAddressPools": [{"name": "test"}], "frontendIPConfigurations": - [{"name": "LoadBalancerFrontEnd", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}]}, - "sku": {"name": "Basic"}}], "outputs": {"loadBalancer": {"type": "object", "value": - "[reference(''lb1'')]"}}}, "parameters": {}, "mode": "incremental"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network lb create Connection: - keep-alive - Content-Length: - - '1103' - Content-Type: - - application/json ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041569774484753?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_MzYHLnR7Fs1Q5M2m5So3PMSBRhnDfwrC","name":"lb_deploy_MzYHLnR7Fs1Q5M2m5So3PMSBRhnDfwrC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13465756191163510284","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-22T02:26:46.8575266Z","duration":"PT0.0007407S","correlationId":"f55d6751-8826-44fe-b9eb-9c3e573236d8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_MzYHLnR7Fs1Q5M2m5So3PMSBRhnDfwrC/operationStatuses/08585457420808496077?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1236' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:26:47 GMT + - Mon, 16 Oct 2023 09:51:51 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -197,9 +197,9 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457420808496077?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041569774484753?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -211,7 +211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:17 GMT + - Mon, 16 Oct 2023 09:52:23 GMT expires: - '-1' pragma: @@ -239,21 +239,21 @@ interactions: ParameterSetName: - -g -n --backend-pool-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_MzYHLnR7Fs1Q5M2m5So3PMSBRhnDfwrC","name":"lb_deploy_MzYHLnR7Fs1Q5M2m5So3PMSBRhnDfwrC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13465756191163510284","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-22T02:27:01.2355783Z","duration":"PT14.3787924S","correlationId":"f55d6751-8826-44fe-b9eb-9c3e573236d8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"79c48b16-23ba-4322-bfe8-539e7ea5016e","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"48000855-4520-48c2-8b1d-f25873124794\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"48000855-4520-48c2-8b1d-f25873124794\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/lb_deploy_7CdNd19ZVRYDuNGgOoESBJfuIVCIlmDU","name":"lb_deploy_7CdNd19ZVRYDuNGgOoESBJfuIVCIlmDU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8164782103034839400","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T09:52:10.0891139Z","duration":"PT19.3086197S","correlationId":"0a0de759-916f-4532-bf5a-a71eef0b5a26","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"4c99f4b0-a808-4b09-8e6c-090d718653f4","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"3badcacb-6df6-43fb-a985-745ba09d7479\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"test","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test","etag":"W/\"3badcacb-6df6-43fb-a985-745ba09d7479\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' headers: cache-control: - no-cache content-length: - - '2855' + - '2854' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:18 GMT + - Mon, 16 Oct 2023 09:52:23 GMT expires: - '-1' pragma: @@ -281,21 +281,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T02:26:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001","name":"cli_test_vmss_create_existing_lb000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_existing_lb","date":"2023-10-16T09:51:39Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '354' + - '399' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:20 GMT + - Mon, 16 Oct 2023 09:52:24 GMT expires: - '-1' pragma: @@ -319,7 +319,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -327,26 +327,27 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n \"sku\": - \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"SLES\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": @@ -369,7 +370,7 @@ interactions: \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n }\n }\n }\n }\n }\n}" + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -380,19 +381,21 @@ interactions: connection: - keep-alive content-length: - - '3463' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Wed, 22 Jun 2022 02:27:20 GMT + - Mon, 16 Oct 2023 09:52:25 GMT etag: - - W/"41b202f4dc5098d126019dc00721a4c5e30df0c5196794514fadc3710ee2a5cb" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Wed, 22 Jun 2022 02:32:20 GMT + - Mon, 16 Oct 2023 09:57:25 GMT source-age: - - '231' + - '80' strict-transport-security: - max-age=31536000 vary: @@ -402,19 +405,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '3' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 66bd3c2287876094982779746df70de9667e7584 + - c44504ea41456305d8d921568f16bf8ba5349478 x-frame-options: - deny x-github-request-id: - - 9A0E:4D95:E5AC1:12E779:62B26A94 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1239-QPG + - cache-qpg1277-QPG x-timer: - - S1655864841.815232,VS0,VE0 + - S1697449945.270421,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -434,23 +437,23 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:22 GMT + - Mon, 16 Oct 2023 09:52:26 GMT expires: - '-1' pragma: @@ -467,7 +470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;42626 status: code: 200 message: OK @@ -485,33 +488,34 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-compute/27.1.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202206150?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n - \ \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202206150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202206150\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1043' + - '1158' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:23 GMT + - Mon, 16 Oct 2023 09:52:27 GMT expires: - '-1' pragma: @@ -528,7 +532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73988 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -546,7 +550,7 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: @@ -560,7 +564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:24 GMT + - Mon, 16 Oct 2023 09:52:27 GMT expires: - '-1' pragma: @@ -588,26 +592,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"79c48b16-23ba-4322-bfe8-539e7ea5016e\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"4c99f4b0-a808-4b09-8e6c-090d718653f4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -621,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:25 GMT + - Mon, 16 Oct 2023 09:52:29 GMT etag: - - W/"48000855-4520-48c2-8b1d-f25873124794" + - W/"3badcacb-6df6-43fb-a985-745ba09d7479" expires: - '-1' pragma: @@ -640,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3cfd163e-bf00-424c-99f2-36851af187d5 + - 2fc505c4-a055-4437-a77c-818d5d44a0bb status: code: 200 message: OK @@ -658,26 +662,26 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2018-11-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"79c48b16-23ba-4322-bfe8-539e7ea5016e\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"4c99f4b0-a808-4b09-8e6c-090d718653f4\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test\",\r\n - \ \"etag\": \"W/\\\"48000855-4520-48c2-8b1d-f25873124794\\\"\",\r\n + \ \"etag\": \"W/\\\"3badcacb-6df6-43fb-a985-745ba09d7479\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -691,9 +695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:26 GMT + - Mon, 16 Oct 2023 09:52:31 GMT etag: - - W/"48000855-4520-48c2-8b1d-f25873124794" + - W/"3badcacb-6df6-43fb-a985-745ba09d7479" expires: - '-1' pragma: @@ -710,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06d8847d-2098-477c-8d6d-c72ecd383de8 + - 1356041d-a149-484a-b584-400da7aa4ec8 status: code: 200 message: OK @@ -727,11 +731,11 @@ interactions: "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1d5ac", - "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1d5acNic", - "properties": {"ipConfigurations": [{"name": "vmss1d5acIPConfig", "properties": + "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerNamePrefix": + "vmss11aa2", "adminUsername": "clitester", "adminPassword": "[parameters(''adminPassword'')]"}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11aa2Nic", + "properties": {"ipConfigurations": [{"name": "vmss11aa2IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}], "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2", @@ -748,29 +752,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2283' + - '2304' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_21lDbKR1LenJJxh4bwtY0GCtpzhEvq3t","name":"vmss_deploy_21lDbKR1LenJJxh4bwtY0GCtpzhEvq3t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4446084889480216307","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-22T02:27:41.8314184Z","duration":"PT0.0001517S","correlationId":"a155ee1f-3217-4a4e-9f03-7ad04fa81dbe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_if1pXSY3XLSh5a6EYJLsDbAzdhNvtLCq","name":"vmss_deploy_if1pXSY3XLSh5a6EYJLsDbAzdhNvtLCq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15988212087533023989","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T09:52:39.7812973Z","duration":"PT0.0002938S","correlationId":"55058333-b9a3-446b-978c-83c1fc22d9d7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_21lDbKR1LenJJxh4bwtY0GCtpzhEvq3t/operationStatuses/08585457420265173152?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_if1pXSY3XLSh5a6EYJLsDbAzdhNvtLCq/operationStatuses/08585041569287427163?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1354' + - '1355' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:27:44 GMT + - Mon, 16 Oct 2023 09:52:41 GMT expires: - '-1' pragma: @@ -798,9 +802,51 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041569287427163?api-version=2019-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 09:52:42 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 --load-balancer --image --admin-username --admin-password + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457420265173152?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041569287427163?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -812,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:14 GMT + - Mon, 16 Oct 2023 09:53:13 GMT expires: - '-1' pragma: @@ -840,9 +886,9 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585457420265173152?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041569287427163?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -854,7 +900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:45 GMT + - Mon, 16 Oct 2023 09:53:44 GMT expires: - '-1' pragma: @@ -882,21 +928,21 @@ interactions: ParameterSetName: - -g -n --load-balancer --image --admin-username --admin-password User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_21lDbKR1LenJJxh4bwtY0GCtpzhEvq3t","name":"vmss_deploy_21lDbKR1LenJJxh4bwtY0GCtpzhEvq3t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4446084889480216307","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-22T02:28:42.9936908Z","duration":"PT1M1.1624241S","correlationId":"a155ee1f-3217-4a4e-9f03-7ad04fa81dbe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1d5ac","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1d5acNic","properties":{"primary":true,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1d5acIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"fa800be0-e00f-4555-8e0b-d63da9733cf1","timeCreated":"2022-06-22T02:27:59.7640597+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Resources/deployments/vmss_deploy_if1pXSY3XLSh5a6EYJLsDbAzdhNvtLCq","name":"vmss_deploy_if1pXSY3XLSh5a6EYJLsDbAzdhNvtLCq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15988212087533023989","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T09:53:34.2663507Z","duration":"PT54.4853472S","correlationId":"55058333-b9a3-446b-978c-83c1fc22d9d7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss11aa2","adminUsername":"clitester","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"0001-com-ubuntu-server-jammy","sku":"22_04-lts-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss11aa2Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss11aa2IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/test"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"8d69555f-0eed-4fb4-8044-f1255213f50b","timeCreated":"2023-10-16T09:52:55.9524378+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_existing_lb000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3282' + - '3393' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Jun 2022 02:28:47 GMT + - Mon, 16 Oct 2023 09:53:44 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_update_instance_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_update_instance_disks.yaml index 14dcdc84dff..44135868e64 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_update_instance_disks.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_vmss_update_instance_disks.yaml @@ -17,43 +17,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -91,7 +71,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -99,13 +79,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Wed, 11 Oct 2023 07:11:47 GMT + - Tue, 17 Oct 2023 02:09:44 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Wed, 11 Oct 2023 07:16:47 GMT + - Tue, 17 Oct 2023 02:14:44 GMT source-age: - - '193' + - '21' strict-transport-security: - max-age=31536000 vary: @@ -119,15 +99,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 850d9cd3b08a6f1f19ba4317c046b8850e42b121 + - f6e3413e1a3541f6ad38c2ec094e92bd1b637ea2 x-frame-options: - deny x-github-request-id: - - D05A:304CC8:8F7D8:B8585:6520A04A + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1253-QPG + - cache-qpg1235-QPG x-timer: - - S1697008308.854355,VS0,VE2 + - S1697508585.527729,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -147,23 +127,23 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:11:49 GMT + - Tue, 17 Oct 2023 02:09:44 GMT expires: - '-1' pragma: @@ -180,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995 status: code: 200 message: OK @@ -198,32 +178,34 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2020-06-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:11:50 GMT + - Tue, 17 Oct 2023 02:09:45 GMT expires: - '-1' pragma: @@ -240,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996 status: code: 200 message: OK @@ -258,7 +240,7 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01 response: @@ -272,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:11:50 GMT + - Tue, 17 Oct 2023 02:09:47 GMT expires: - '-1' pragma: @@ -311,10 +293,10 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": "Standard_LRS"}}, "imageReference": {"publisher": - "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile": - {"computerNamePrefix": "vmss16a18", "adminUsername": "clitest1", "adminPassword": - "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss16a18Nic", "properties": {"ipConfigurations": [{"name": "vmss16a18IPConfig", + "Debian", "offer": "debian-11", "sku": "11-backports-gen2", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss1dedc", "adminUsername": "clitest1", + "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmss1dedcNic", "properties": {"ipConfigurations": [{"name": "vmss1dedcIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}], @@ -332,21 +314,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3680' + - '3695' Content-Type: - application/json ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_HbsQGmCbv4GUrNfgEVNqrDDD7QnVHdWP","name":"vmss_deploy_HbsQGmCbv4GUrNfgEVNqrDDD7QnVHdWP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6105624419117537617","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-11T07:12:00.8611457Z","duration":"PT0.0001028S","correlationId":"a36e7163-f13e-44c3-94ab-642687d56b93","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_YmNgusEcKYPiCZbARIy7Aa3hrZ4kyTZp","name":"vmss_deploy_YmNgusEcKYPiCZbARIy7Aa3hrZ4kyTZp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1263350014144969398","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-17T02:09:58.4659275Z","duration":"PT0.0007078S","correlationId":"f0377bc4-8a7c-41ad-bad2-395f4c35fa82","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_HbsQGmCbv4GUrNfgEVNqrDDD7QnVHdWP/operationStatuses/08585045985678538534?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_YmNgusEcKYPiCZbARIy7Aa3hrZ4kyTZp/operationStatuses/08585040982906983952?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -354,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:12:02 GMT + - Tue, 17 Oct 2023 02:10:01 GMT expires: - '-1' pragma: @@ -382,21 +364,21 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045985678538534?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982906983952?api-version=2019-10-01 response: body: - string: '{"status":"Accepted"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '21' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:12:03 GMT + - Tue, 17 Oct 2023 02:10:02 GMT expires: - '-1' pragma: @@ -424,9 +406,9 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045985678538534?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982906983952?api-version=2019-10-01 response: body: string: '{"status":"Running"}' @@ -438,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:12:34 GMT + - Tue, 17 Oct 2023 02:10:32 GMT expires: - '-1' pragma: @@ -466,9 +448,9 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585045985678538534?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585040982906983952?api-version=2019-10-01 response: body: string: '{"status":"Succeeded"}' @@ -480,7 +462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:04 GMT + - Tue, 17 Oct 2023 02:11:03 GMT expires: - '-1' pragma: @@ -508,21 +490,21 @@ interactions: ParameterSetName: - --image --admin-username --admin-password -l -g -n --storage-sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_HbsQGmCbv4GUrNfgEVNqrDDD7QnVHdWP","name":"vmss_deploy_HbsQGmCbv4GUrNfgEVNqrDDD7QnVHdWP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6105624419117537617","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-11T07:12:59.8677134Z","duration":"PT59.0066705S","correlationId":"a36e7163-f13e-44c3-94ab-642687d56b93","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss16a18","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss16a18Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss16a18IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"77afc34a-a234-46a9-b687-9632a06c14a4","timeCreated":"2023-10-11T07:12:24.1756801+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Resources/deployments/vmss_deploy_YmNgusEcKYPiCZbARIy7Aa3hrZ4kyTZp","name":"vmss_deploy_YmNgusEcKYPiCZbARIy7Aa3hrZ4kyTZp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1263350014144969398","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-17T02:10:58.7085232Z","duration":"PT1M0.2433035S","correlationId":"f0377bc4-8a7c-41ad-bad2-395f4c35fa82","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1dedc","adminUsername":"clitest1","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1dedcNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1dedcIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"509ca752-66aa-40b5-8b51-b225fe30a4c9","timeCreated":"2023-10-17T02:10:17.6035171+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4975' + - '5019' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:05 GMT + - Tue, 17 Oct 2023 02:11:04 GMT expires: - '-1' pragma: @@ -550,12 +532,12 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_options000001?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_instance_disks","date":"2023-10-11T07:12:08Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001","name":"cli_test_vmss_create_options000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_instance_disks","date":"2023-10-17T02:09:39Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -564,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:07 GMT + - Tue, 17 Oct 2023 02:11:04 GMT expires: - '-1' pragma: @@ -598,7 +580,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2019-07-01 response: @@ -611,7 +593,7 @@ interactions: \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/def10168-479d-4e7d-a636-2fd21328fbf0?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ca8f1f29-45ed-449f-8d83-4a11c48d9594?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 cache-control: - no-cache content-length: @@ -619,11 +601,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:11 GMT + - Tue, 17 Oct 2023 02:11:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/def10168-479d-4e7d-a636-2fd21328fbf0?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ca8f1f29-45ed-449f-8d83-4a11c48d9594?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&monitor=true&api-version=2019-07-01 pragma: - no-cache server: @@ -634,7 +616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;2999,Microsoft.Compute/CreateUpdateDisks30Min;24999 + - Microsoft.Compute/CreateUpdateDisks3Min;2999,Microsoft.Compute/CreateUpdateDisks30Min;24997 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -654,13 +636,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/def10168-479d-4e7d-a636-2fd21328fbf0?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ca8f1f29-45ed-449f-8d83-4a11c48d9594?p=42128af7-4c72-4222-9761-fb0d8e6cebdc&api-version=2019-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:13:12.5969712+00:00\",\r\n \"endTime\": - \"2023-10-11T07:13:12.6906911+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2023-10-17T02:11:09.5680002+00:00\",\r\n \"endTime\": + \"2023-10-17T02:11:09.6774503+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -669,10 +651,10 @@ interactions: \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2023-10-11T07:13:12.5969712+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2023-10-17T02:11:09.5680002+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"3956e7fc-2dd8-490f-be69-5ab2de263032\"\r\n - \ }\r\n}\r\n },\r\n \"name\": \"def10168-479d-4e7d-a636-2fd21328fbf0\"\r\n}" + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"81d4554f-dd28-4903-a384-683bd0dc5369\"\r\n + \ }\r\n}\r\n },\r\n \"name\": \"ca8f1f29-45ed-449f-8d83-4a11c48d9594\"\r\n}" headers: cache-control: - no-cache @@ -681,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:12 GMT + - Tue, 17 Oct 2023 02:11:09 GMT expires: - '-1' pragma: @@ -698,7 +680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399979 status: code: 200 message: OK @@ -716,7 +698,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1?api-version=2019-07-01 response: @@ -728,9 +710,9 @@ interactions: \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2023-10-11T07:13:12.5969712+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2023-10-17T02:11:09.5680002+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"3956e7fc-2dd8-490f-be69-5ab2de263032\"\r\n + \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"81d4554f-dd28-4903-a384-683bd0dc5369\"\r\n \ }\r\n}" headers: cache-control: @@ -740,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:12 GMT + - Tue, 17 Oct 2023 02:11:10 GMT expires: - '-1' pragma: @@ -757,7 +739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119955 status: code: 200 message: OK @@ -775,7 +757,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2020-06-01 response: @@ -787,61 +769,61 @@ interactions: \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n \"storageProfile\": {\r\n + \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n + \ \"name\": \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"f0a50d79-5267-4c32-aaf1-9e86470ec329\",\r\n \"storageProfile\": {\r\n + \"40cd8b1c-a3ba-4743-95f4-84ff48bb0f22\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\",\r\n + \ \"name\": \"vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss16a18Nic\"}]}\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '6557' + - '6586' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:14 GMT + - Tue, 17 Oct 2023 02:11:11 GMT expires: - '-1' pragma: @@ -878,7 +860,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?$expand=instanceView&api-version=2020-06-01 response: @@ -889,51 +871,51 @@ interactions: \ \"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 \"instanceView\": {\r\n \"placementGroupId\": - \"71f2f91c-8fdf-434c-8429-ac121d989f5e\",\r\n \"platformUpdateDomain\": - 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"vmss16a18000000\",\r\n - \ \"osName\": \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n + \"d028db1d-b313-4584-8495-41f9f52d2128\",\r\n \"platformUpdateDomain\": + 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"vmss1dedc000000\",\r\n + \ \"osName\": \"debian\",\r\n \"osVersion\": \"11\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.2.47\",\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\": - \"2023-10-11T07:12:59+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n + \"2023-10-17T02:11:01+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-10-11T07:12:57.1760741+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:10:51.2914732+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\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 \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss16a18000000\",\r\n + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1dedc000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '4421' + - '4433' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:16 GMT + - Tue, 17 Oct 2023 02:11:13 GMT expires: - '-1' pragma: @@ -950,7 +932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5998,Microsoft.Compute/GetVMScaleSetVMResource;35 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5999,Microsoft.Compute/GetVMScaleSetVMResource;35 x-ms-request-charge: - '1' status: @@ -959,17 +941,17 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895", + "vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1", "storageAccountType": "Standard_LRS"}}, "dataDisks": [{"lun": 0, "caching": "ReadWrite", "createOption": "Attach", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1"}}]}, - "osProfile": {"computerName": "vmss16a18000000", "adminUsername": "clitest1", + "osProfile": {"computerName": "vmss1dedc000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": - true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic"}]}, + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic"}]}, "networkProfileConfiguration": {"networkInterfaceConfigurations": [{"name": - "vmss16a18Nic", "properties": {"primary": true, "dnsSettings": {"dnsServers": - []}, "ipConfigurations": [{"name": "vmss16a18IPConfig", "properties": {"subnet": + "vmss1dedcNic", "properties": {"primary": true, "dnsSettings": {"dnsServers": + []}, "ipConfigurations": [{"name": "vmss1dedcIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], @@ -991,7 +973,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2020-06-01 response: @@ -1001,17 +983,17 @@ interactions: \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": - \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n @@ -1019,25 +1001,25 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/96869063-1155-4f45-8b66-8b466ba0c23a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 cache-control: - no-cache content-length: - - '3506' + - '3521' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:19 GMT + - Tue, 17 Oct 2023 02:11:16 GMT expires: - '-1' pragma: @@ -1054,9 +1036,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1999,Microsoft.Compute/VMScaleSetVMActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5981,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1998,Microsoft.Compute/VMScaleSetVMActionsResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '1' status: @@ -1076,13 +1058,13 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/96869063-1155-4f45-8b66-8b466ba0c23a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:13:17.7075705+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"96869063-1155-4f45-8b66-8b466ba0c23a\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:11:14.4167896+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17b2d137-05c0-473f-a1af-3f15294607b5\"\r\n}" headers: cache-control: - no-cache @@ -1091,7 +1073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:19 GMT + - Tue, 17 Oct 2023 02:11:17 GMT expires: - '-1' pragma: @@ -1108,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14990 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1126,14 +1108,164 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/96869063-1155-4f45-8b66-8b466ba0c23a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:13:17.7075705+00:00\",\r\n \"endTime\": - \"2023-10-11T07:13:51.6923574+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"96869063-1155-4f45-8b66-8b466ba0c23a\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:11:14.4167896+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17b2d137-05c0-473f-a1af-3f15294607b5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:11:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:11:14.4167896+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17b2d137-05c0-473f-a1af-3f15294607b5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:11:21 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/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:11:14.4167896+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17b2d137-05c0-473f-a1af-3f15294607b5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:11:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;56,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk attach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --disk --caching + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17b2d137-05c0-473f-a1af-3f15294607b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:11:14.4167896+00:00\",\r\n \"endTime\": + \"2023-10-17T02:11:46.8391028+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"17b2d137-05c0-473f-a1af-3f15294607b5\"\r\n}" headers: cache-control: - no-cache @@ -1142,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:57 GMT + - Tue, 17 Oct 2023 02:12:01 GMT expires: - '-1' pragma: @@ -1159,7 +1291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14986 + - Microsoft.Compute/GetOperationResource;55,Microsoft.Compute/GetOperationSubscriptionMaximum;14989 status: code: 200 message: OK @@ -1177,7 +1309,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --disk --caching User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2020-06-01 response: @@ -1187,17 +1319,17 @@ interactions: \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": - \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n @@ -1205,21 +1337,21 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3507' + - '3522' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:57 GMT + - Tue, 17 Oct 2023 02:12:01 GMT expires: - '-1' pragma: @@ -1236,7 +1368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5996,Microsoft.Compute/GetVMScaleSetVMResource;34 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5998,Microsoft.Compute/GetVMScaleSetVMResource;34 x-ms-request-charge: - '1' status: @@ -1256,7 +1388,7 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2020-06-01 response: @@ -1268,18 +1400,18 @@ interactions: \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n \"storageProfile\": {\r\n + \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n + \ \"name\": \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": @@ -1287,47 +1419,47 @@ interactions: \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmss16a18000000\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"f0a50d79-5267-4c32-aaf1-9e86470ec329\",\r\n \"storageProfile\": {\r\n + \"40cd8b1c-a3ba-4743-95f4-84ff48bb0f22\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\",\r\n + \ \"name\": \"vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss16a18Nic\"}]}\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '7072' + - '7102' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:13:59 GMT + - Tue, 17 Oct 2023 02:12:04 GMT expires: - '-1' pragma: @@ -1344,7 +1476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1071,Microsoft.Compute/HighCostGetVMScaleSetResource;27 + - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079,Microsoft.Compute/HighCostGetVMScaleSetResource;28 x-ms-request-charge: - '2' status: @@ -1364,7 +1496,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?$expand=instanceView&api-version=2020-06-01 response: @@ -1375,40 +1507,40 @@ interactions: \ \"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 \"instanceView\": {\r\n \"placementGroupId\": - \"71f2f91c-8fdf-434c-8429-ac121d989f5e\",\r\n \"platformUpdateDomain\": - 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"vmss16a18000000\",\r\n - \ \"osName\": \"debian\",\r\n \"osVersion\": \"10.13\",\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.2.45\",\r\n \"statuses\": [\r\n + \"d028db1d-b313-4584-8495-41f9f52d2128\",\r\n \"platformUpdateDomain\": + 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"vmss1dedc000000\",\r\n + \ \"osName\": \"debian\",\r\n \"osVersion\": \"11\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.2.47\",\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\": - \"2023-10-11T07:12:59+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n + \"2023-10-17T02:11:01+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-10-11T07:12:57.1760741+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:10:51.2914732+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"d1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2023-10-11T07:13:18.6294579+00:00\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": + \"2023-10-17T02:11:15.3542967+00:00\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"hyperVGeneration\": \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-10-11T07:13:50.614213+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-17T02:11:45.7453383+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 \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n @@ -1416,21 +1548,21 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '5273' + - '5286' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:01 GMT + - Tue, 17 Oct 2023 02:12:06 GMT expires: - '-1' pragma: @@ -1447,7 +1579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5995,Microsoft.Compute/GetVMScaleSetVMResource;33 + - Microsoft.Compute/GetVMScaleSetVMSubscriptionMaximum;5997,Microsoft.Compute/GetVMScaleSetVMResource;33 x-ms-request-charge: - '1' status: @@ -1456,16 +1588,16 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895", "caching": "ReadWrite", - "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895", + "vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1", "caching": "ReadWrite", + "createOption": "FromImage", "diskSizeGB": 30, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1", "storageAccountType": "Standard_LRS"}}, "dataDisks": []}, "osProfile": {"computerName": - "vmss16a18000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": + "vmss1dedc000000", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic"}]}, "networkProfileConfiguration": {"networkInterfaceConfigurations": [{"name": - "vmss16a18Nic", "properties": {"primary": true, "dnsSettings": {"dnsServers": - []}, "ipConfigurations": [{"name": "vmss16a18IPConfig", "properties": {"subnet": + "vmss1dedcNic", "properties": {"primary": true, "dnsSettings": {"dnsServers": + []}, "ipConfigurations": [{"name": "vmss1dedcIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], @@ -1487,7 +1619,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2020-06-01 response: @@ -1497,17 +1629,17 @@ interactions: \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": - \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Updating\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"d1\",\r\n \ \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n @@ -1515,25 +1647,25 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/d1\"\r\n \ },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f05ace17-97a4-4ec3-b3e5-6922cc62bb5a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81e8d4ba-cd38-4878-b369-e2edf60abfec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 cache-control: - no-cache content-length: - - '3505' + - '3520' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:04 GMT + - Tue, 17 Oct 2023 02:12:09 GMT expires: - '-1' pragma: @@ -1550,7 +1682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1998,Microsoft.Compute/VMScaleSetVMActionsResource;10,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5997,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetVMActionsSubscriptionMaximum;1999,Microsoft.Compute/VMScaleSetVMActionsResource;10,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1572,22 +1704,22 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f05ace17-97a4-4ec3-b3e5-6922cc62bb5a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81e8d4ba-cd38-4878-b369-e2edf60abfec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:14:02.9581127+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"f05ace17-97a4-4ec3-b3e5-6922cc62bb5a\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:12:07.261257+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81e8d4ba-cd38-4878-b369-e2edf60abfec\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:04 GMT + - Tue, 17 Oct 2023 02:12:10 GMT expires: - '-1' pragma: @@ -1622,23 +1754,123 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f05ace17-97a4-4ec3-b3e5-6922cc62bb5a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81e8d4ba-cd38-4878-b369-e2edf60abfec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2023-10-11T07:14:02.9581127+00:00\",\r\n \"endTime\": - \"2023-10-11T07:14:14.2394963+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f05ace17-97a4-4ec3-b3e5-6922cc62bb5a\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-17T02:12:07.261257+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81e8d4ba-cd38-4878-b369-e2edf60abfec\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:12: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/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk detach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --lun + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81e8d4ba-cd38-4878-b369-e2edf60abfec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:12:07.261257+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81e8d4ba-cd38-4878-b369-e2edf60abfec\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Oct 2023 02:12:14 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/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss disk detach + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --instance-id --lun + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81e8d4ba-cd38-4878-b369-e2edf60abfec?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-17T02:12:07.261257+00:00\",\r\n \"endTime\": + \"2023-10-17T02:12:16.152022+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"81e8d4ba-cd38-4878-b369-e2edf60abfec\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '182' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:42 GMT + - Tue, 17 Oct 2023 02:12:16 GMT expires: - '-1' pragma: @@ -1655,7 +1887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 + - Microsoft.Compute/GetOperationResource;56,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK @@ -1673,7 +1905,7 @@ interactions: ParameterSetName: - -g --vmss-name --instance-id --lun User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualmachines/0?api-version=2020-06-01 response: @@ -1683,34 +1915,34 @@ interactions: \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \ \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": - \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n - \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n + \ \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \"Debian\",\r\n \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n \"createOption\": + \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss16a18000000\",\r\n + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss1dedc000000\",\r\n \ \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \ \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3045' + - '3060' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:43 GMT + - Tue, 17 Oct 2023 02:12:17 GMT expires: - '-1' pragma: @@ -1747,7 +1979,7 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.19045-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2020-06-01 response: @@ -1759,61 +1991,61 @@ interactions: \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"cd9acc7e-9831-4b01-b912-8ef43f3da7d3\",\r\n \"storageProfile\": {\r\n + \"1f5e59f0-695d-4d40-8ea5-1f731e356433\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\",\r\n + \ \"name\": \"vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_3a4553eccb3744599f54fd84f614b895\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_ccb55786c9364690989befa1743332c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000000\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16a18Nic\"}]}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1dedcNic\"}]}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"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\":\"vmss16a18Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss16a18IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1dedcNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1dedcIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"vmId\": - \"f0a50d79-5267-4c32-aaf1-9e86470ec329\",\r\n \"storageProfile\": {\r\n + \"40cd8b1c-a3ba-4743-95f4-84ff48bb0f22\",\r\n \"storageProfile\": {\r\n \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230802.1460\"\r\n + \ \"offer\": \"debian-11\",\r\n \"sku\": \"11-backports-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"0.20230912.1501\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n - \ \"name\": \"vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\",\r\n + \ \"name\": \"vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_8a40db9fef194c538800e0f669200445\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_bf3079f01e9546998ad8176b609fca8d\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss16a18000003\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": + \"vmss1dedc000001\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\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_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss16a18Nic\"}]}\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_options000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1dedcNic\"}]}\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '6558' + - '6588' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Oct 2023 07:14:45 GMT + - Tue, 17 Oct 2023 02:12:19 GMT expires: - '-1' pragma: @@ -1830,7 +2062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079,Microsoft.Compute/HighCostGetVMScaleSetResource;29 + - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1076,Microsoft.Compute/HighCostGetVMScaleSetResource;28 x-ms-request-charge: - '2' status: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py index fa1a99e0126..18eba1aa313 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py @@ -546,7 +546,7 @@ def test_vm_create_by_attach_os_and_data_disks(self, resource_group): # the testing below follow a real custom's workflow requiring the support of attaching data disks on create # creating a vm - self.cmd('vm create -g {rg} -n vm1 --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') + self.cmd('vm create -g {rg} -n vm1 --image CentOS85Gen2 --admin-username centosadmin --admin-password testPassword0 --authentication-type password --data-disk-sizes-gb 2') result = self.cmd('vm show -g {rg} -n vm1').get_output_in_json() self.kwargs.update({ @@ -731,7 +731,7 @@ def test_vm_extension(self, resource_group): 'user': user_name }) - self.cmd('vm create -n {vm} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password --admin-username user11 --admin-password testPassword0') + self.cmd('vm create -n {vm} -g {rg} --image ubuntu2204 --authentication-type password --admin-username user11 --admin-password testPassword0') self.cmd('vm extension list --vm-name {vm} --resource-group {rg}', checks=self.check('length([])', 0)) @@ -1069,7 +1069,7 @@ def test_vmss_update_instance_disks(self, resource_group): 'sku': 'Standard_LRS' }) - self.cmd('vmss create --image Debian:debian-10:10:latest --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') + self.cmd('vmss create --image Debian11 --admin-username clitest1 --admin-password testPassword0 -l westus -g {rg} -n {vmss} --storage-sku {sku}') self.cmd('disk create -g {rg} -n {disk} --size-gb 1 --sku {sku}') instances = self.cmd('vmss list-instances -g {rg} -n {vmss}').get_output_in_json() self.kwargs['instance_id'] = instances[0]['instanceId'] @@ -1092,14 +1092,14 @@ def test_vmss_create_auth(self, resource_group): 'ssh_key': TEST_SSH_KEY_PUB, }) - self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_1} --authentication-type all ' + self.cmd('vmss create --image Debian11 -l westus -g {rg} -n {vmss_1} --authentication-type all ' ' --admin-username myadmin --admin-password testPassword0 --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', False), self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[0].keyData', TEST_SSH_KEY_PUB) ]) - self.cmd('vmss create --image Debian:debian-10:10:latest -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' + self.cmd('vmss create --image Debian11 -l westus -g {rg} -n {vmss_2} --authentication-type ssh ' ' --admin-username myadmin --ssh-key-value \'{ssh_key}\'', checks=[ self.check('vmss.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication', True) @@ -1147,7 +1147,7 @@ def test_vmss_existing_lb(self, resource_group): 'lb': 'lb1' }) self.cmd('network lb create -g {rg} -n {lb} --backend-pool-name test') - self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username clitester --admin-password TestTest12#$') + self.cmd('vmss create -g {rg} -n {vmss} --load-balancer {lb} --image ubuntu2204 --admin-username clitester --admin-password TestTest12#$') @ResourceGroupPreparer() def test_vmss_single_placement_group_default_to_std_lb(self, resource_group): diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml index 2cd1b38e01d..80860ea6c00 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-07-10T13:16:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T07:36:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:45 GMT + - Mon, 16 Oct 2023 07:36:52 GMT expires: - '-1' pragma: @@ -42,6 +41,3822 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 07:36:53 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 07:41:53 GMT + source-age: + - '85' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - b7f220391fbb2b0bf27987c7fa9ded6a7a5283b8 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1267-QPG + x-timer: + - S1697441814.606390,VS0,VE5 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:36:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:36: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/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:36:56 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 + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 07:36:58 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 07:41:58 GMT + source-age: + - '89' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 8d264cfcc8222af215cf420909bff9331d6cf8de + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1236-QPG + x-timer: + - S1697441818.041141,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:36:59 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/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37: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/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37:01 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/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37:03 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/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"name": "vm_000006VNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vm_000006Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm_000006NSG", "apiVersion": + "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"securityRules": [{"name": "default-allow-ssh", "properties": {"protocol": + "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": + "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": + "Inbound"}}]}}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "vm_000006PublicIP", "location": "westus", "tags": {}, "dependsOn": + [], "properties": {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", + "type": "Microsoft.Network/networkInterfaces", "name": "vm_000006VMNic", "location": + "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm_000006VNET", + "Microsoft.Network/networkSecurityGroups/vm_000006NSG", "Microsoft.Network/publicIpAddresses/vm_000006PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm_000006", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET/subnets/vm_000006Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"}}}, + {"apiVersion": "2022-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm_000006", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm_000006VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic", + "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": + "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "vmvberitirulbq", "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n", "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3863' + Content-Type: + - application/json + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_YoTgCbzPBkzxybShGKkLa1HUwHr37yEC","name":"vm_deploy_YoTgCbzPBkzxybShGKkLa1HUwHr37yEC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5458437863509287733","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T07:37:10.8097902Z","duration":"PT0.0001104S","correlationId":"a29ffeb9-0864-45b4-bb69-614636e28198","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_YoTgCbzPBkzxybShGKkLa1HUwHr37yEC/operationStatuses/08585041650574041212?api-version=2022-09-01 + cache-control: + - no-cache + content-length: + - '2541' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041650574041212?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37:12 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041650574041212?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:37:42 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041650574041212?api-version=2022-09-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:13 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_YoTgCbzPBkzxybShGKkLa1HUwHr37yEC","name":"vm_deploy_YoTgCbzPBkzxybShGKkLa1HUwHr37yEC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5458437863509287733","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T07:38:02.0488196Z","duration":"PT51.2391398S","correlationId":"a29ffeb9-0864-45b4-bb69-614636e28198","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '3441' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:13 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006?$expand=instanceView&api-version=2022-11-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"9e2c224c-5b7f-45ca-8010-ba39002752a5\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\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_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmvberitirulbq\",\r\n + \ \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vmvberitirulbq\",\r\n + \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.9.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\": + \"2023-10-16T07:38:09+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-16T07:37:35.9788509+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-16T07:37:56.8385433+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-16T07:37:33.7288289+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4201' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\",\r\n + \ \"etag\": \"W/\\\"74b953ad-9d41-4706-9c5f-6448f5b689b3\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f0ed8271-3673-4a9c-a58a-4ccb94f79eb8\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm_000006\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\",\r\n + \ \"etag\": \"W/\\\"74b953ad-9d41-4706-9c5f-6448f5b689b3\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET/subnets/vm_000006Subnet\"\r\n + \ },\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\": + \"uht4e1fspbmetbkktaeonux25f.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-32-83-0F\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n + \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"auxiliaryMode\": + \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2557' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:17 GMT + etag: + - W/"74b953ad-9d41-4706-9c5f-6448f5b689b3" + 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-arm-service-request-id: + - 0e8fffb0-c127-4eee-a631-5707623a78c1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\",\r\n + \ \"etag\": \"W/\\\"db8ca3ac-5641-404d-87ef-7fbe4741c0f1\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"ee0aa0f3-ae22-4fb6-8d68-667d13cfa201\",\r\n + \ \"ipAddress\": \"104.42.149.113\",\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_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:18 GMT + etag: + - W/"db8ca3ac-5641-404d-87ef-7fbe4741c0f1" + 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-arm-service-request-id: + - 0f7e0121-4f8e-485e-ac9f-84251dd6e411 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + ParameterSetName: + - -g --collection-name --source-id + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T07:36:44Z","module":"vm","DateCreated":"2023-10-16T07:38:02Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '475' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:19 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: '{"location": "westus", "properties": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - -g --collection-name --source-id + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"collection_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\",\r\n + \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n + \ },\r\n \"restorePointCollectionId\": \"0ea46771-ada8-483a-a326-8e821bb9a93e\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:25 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/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "eastus", "properties": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json + ParameterSetName: + - -g --collection-name --source-id -l + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"collection_000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003\",\r\n + \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\"\r\n + \ },\r\n \"restorePointCollectionId\": \"2b2ca7da-2294-40a6-9d5f-a8bdc83fdb0c\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '681' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:32 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/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"9e2c224c-5b7f-45ca-8010-ba39002752a5\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmvberitirulbq\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": + \"2023-10-16T07:38:34.4952501+00:00\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + cache-control: + - no-cache + content-length: + - '2466' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:34 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/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T07:38:34.479698+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:38:34 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T07:38:34.479698+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:39:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T07:38:34.479698+00:00\",\r\n \"endTime\": + \"2023-10-16T07:39:20.0271102+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b068b6d3-6a7e-430f-8f50-c7ea57a6f3e5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:39:35 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14979 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"9e2c224c-5b7f-45ca-8010-ba39002752a5\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\"\r\n + \ },\r\n \"diskRestorePoint\": {\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763_e2c788c5-82fe-49cc-b895-de760264e368\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmvberitirulbq\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-10-16T07:38:34.4952501+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2990' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:39:36 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/LowCostGetRestorePointSubscriptionMaximum;599 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"sourceRestorePoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + Content-Length: + - '250' + Content-Type: + - application/json + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"9e2c224c-5b7f-45ca-8010-ba39002752a5\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmvberitirulbq\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n + \ },\r\n \"timeCreated\": \"2023-10-16T07:38:34.4952501+00:00\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/baf057e6-5853-409c-b1e3-7ae25ba1ce26?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + cache-control: + - no-cache + content-length: + - '2767' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:39: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/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/baf057e6-5853-409c-b1e3-7ae25ba1ce26?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T07:39:38.4020603+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"baf057e6-5853-409c-b1e3-7ae25ba1ce26\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:39: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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/baf057e6-5853-409c-b1e3-7ae25ba1ce26?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T07:39:38.4020603+00:00\",\r\n \"endTime\": + \"2023-10-16T07:39:44.8082576+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"baf057e6-5853-409c-b1e3-7ae25ba1ce26\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:40:09 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/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"9e2c224c-5b7f-45ca-8010-ba39002752a5\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763\"\r\n + \ },\r\n \"diskRestorePoint\": {\r\n \"sourceDiskRestorePoint\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763_e2c788c5-82fe-49cc-b895-de760264e368\"\r\n + \ },\r\n \"encryption\": {\r\n \"type\": + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_dff1bf7f47f64db18d879a1fa7a4c763_9cbd910c-2af6-4265-b13e-edff0d7f584e\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmvberitirulbq\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n + \ },\r\n \"timeCreated\": \"2023-10-16T07:38:34.4952501+00:00\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3628' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 07:40:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T08:16:46Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:50 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 + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 08:16:52 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 08:21:52 GMT + source-age: + - '0' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 8aef3b8740e736282dddd2aa72dc6593dcef2387 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1247-QPG + x-timer: + - S1697444212.836986,VS0,VE316 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 (AAZ) azsdk-python-core/1.29.4 Python/3.11.0 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 08:16:55 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 08:21:55 GMT + source-age: + - '4' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - ec62998c5f0eea64c87f6859666c6c176630d624 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1260-QPG + x-timer: + - S1697444216.970454,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:57 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/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + response: + body: + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:58 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/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:16:59 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/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73984 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"name": "vm_000006VNET", "type": "Microsoft.Network/virtualNetworks", "location": + "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties": + {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": + "vm_000006Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm_000006NSG", "apiVersion": + "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": + {"securityRules": [{"name": "default-allow-ssh", "properties": {"protocol": + "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": + "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": + "Inbound"}}]}}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses", + "name": "vm_000006PublicIP", "location": "westus", "tags": {}, "dependsOn": + [], "properties": {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", + "type": "Microsoft.Network/networkInterfaces", "name": "vm_000006VMNic", "location": + "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm_000006VNET", + "Microsoft.Network/networkSecurityGroups/vm_000006NSG", "Microsoft.Network/publicIpAddresses/vm_000006PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm_000006", "properties": + {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET/subnets/vm_000006Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"}}}, + {"apiVersion": "2022-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm_000006", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm_000006VMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic", + "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": + "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "vmrkpj44xd6r6v", "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n", "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3863' + Content-Type: + - application/json + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_6fKeCT9UjkiXtjniGdbgQgxCKBoLjZZD","name":"vm_deploy_6fKeCT9UjkiXtjniGdbgQgxCKBoLjZZD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7749696141372489218","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T08:17:06.323862Z","duration":"PT0.000378S","correlationId":"0d899973-3bbb-4f48-8f49-82de4a647dd8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_6fKeCT9UjkiXtjniGdbgQgxCKBoLjZZD/operationStatuses/08585041626620968965?api-version=2022-09-01 + cache-control: + - no-cache + content-length: + - '2539' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:17:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041626620968965?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:17:07 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041626620968965?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:17:38 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041626620968965?api-version=2022-09-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:10 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_6fKeCT9UjkiXtjniGdbgQgxCKBoLjZZD","name":"vm_deploy_6fKeCT9UjkiXtjniGdbgQgxCKBoLjZZD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7749696141372489218","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T08:17:43.3425638Z","duration":"PT37.0190798S","correlationId":"0d899973-3bbb-4f48-8f49-82de4a647dd8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '3441' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:10 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006?$expand=instanceView&api-version=2022-11-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"26e53fbf-63b2-4911-80d0-a78c74622fbd\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\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_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n + \ \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n + \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.9.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\": + \"2023-10-16T08:17:52+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-16T08:17:25.590293+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-10-16T08:17:39.0123829+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-16T08:17:23.824704+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4199' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18: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/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;32 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 (AAZ) azsdk-python-core/1.29.4 Python/3.11.0 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\",\r\n + \ \"etag\": \"W/\\\"d447a41f-6c21-43b0-acf8-af2ecfddb6d6\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"313b81e0-36f9-4eef-875d-9c704fa559c0\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfigvm_000006\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\",\r\n + \ \"etag\": \"W/\\\"d447a41f-6c21-43b0-acf8-af2ecfddb6d6\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET/subnets/vm_000006Subnet\"\r\n + \ },\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\": + \"ftxrkx1dacuevnzxsubw0jktug.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-34-70-95\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n + \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"auxiliaryMode\": + \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2557' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:15 GMT + etag: + - W/"d447a41f-6c21-43b0-acf8-af2ecfddb6d6" + 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-arm-service-request-id: + - 332f9ec8-c305-445e-9af0-b47a0d4b4859 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0.post20231016053517 (AAZ) azsdk-python-core/1.29.4 Python/3.11.0 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vm_000006PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\",\r\n + \ \"etag\": \"W/\\\"d56cd629-2227-4e6b-af0c-78fd9642237b\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"16a24d2d-9281-4abe-a3d6-264e92d9a70b\",\r\n + \ \"ipAddress\": \"137.135.51.95\",\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_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:17 GMT + etag: + - W/"d56cd629-2227-4e6b-af0c-78fd9642237b" + 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-arm-service-request-id: + - 2c0a7285-d68f-44ea-ae14-4ae41a3e0d5c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + ParameterSetName: + - -g --collection-name --source-id + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-resource/23.1.0b2 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T08:16:46Z","module":"vm","Creator":"v-taoxuzeng@microsoft.com","DateCreated":"2023-10-16T08:17:54Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '475' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:17 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: '{"location": "westus", "properties": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - -g --collection-name --source-id + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"collection_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\",\r\n + \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n + \ },\r\n \"restorePointCollectionId\": \"9c7b91db-c45f-46f3-9f41-304f87c2c59e\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:24 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/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "eastus", "properties": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point collection create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json + ParameterSetName: + - -g --collection-name --source-id -l + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"collection_000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003\",\r\n + \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\"\r\n + \ },\r\n \"restorePointCollectionId\": \"449f9ce4-4c5a-4ec6-b79e-997b2eb00677\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '681' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:30 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/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"26e53fbf-63b2-4911-80d0-a78c74622fbd\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": + \"2023-10-16T08:18:32.9351285+00:00\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f92d56d3-fa7d-4d56-8546-5ef42670832e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + cache-control: + - no-cache + content-length: + - '2466' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:32 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/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f92d56d3-fa7d-4d56-8546-5ef42670832e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T08:18:32.9195025+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f92d56d3-fa7d-4d56-8546-5ef42670832e\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:18:33 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f92d56d3-fa7d-4d56-8546-5ef42670832e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T08:18:32.9195025+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f92d56d3-fa7d-4d56-8546-5ef42670832e\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:19:03 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/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f92d56d3-fa7d-4d56-8546-5ef42670832e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T08:18:32.9195025+00:00\",\r\n \"endTime\": + \"2023-10-16T08:19:18.5608734+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f92d56d3-fa7d-4d56-8546-5ef42670832e\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:19:35 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"26e53fbf-63b2-4911-80d0-a78c74622fbd\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\"\r\n + \ },\r\n \"diskRestorePoint\": {\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0_b2583fe9-bb19-4892-8fdc-c2d55479dbeb\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-10-16T08:18:32.9351285+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2990' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:19:37 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/LowCostGetRestorePointSubscriptionMaximum;599 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"sourceRestorePoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + Content-Length: + - '250' + Content-Type: + - application/json + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"26e53fbf-63b2-4911-80d0-a78c74622fbd\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n + \ },\r\n \"timeCreated\": \"2023-10-16T08:18:32.9351285+00:00\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2bc13d17-6a16-4d1f-906d-c7af761325dd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + cache-control: + - no-cache + content-length: + - '2767' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:19:37 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/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2bc13d17-6a16-4d1f-906d-c7af761325dd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T08:19:38.0230392+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"2bc13d17-6a16-4d1f-906d-c7af761325dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:19:39 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/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2bc13d17-6a16-4d1f-906d-c7af761325dd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2023-10-16T08:19:38.0230392+00:00\",\r\n \"endTime\": + \"2023-10-16T08:19:43.7886226+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2bc13d17-6a16-4d1f-906d-c7af761325dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - restore-point create + Connection: + - keep-alive + ParameterSetName: + - -g -n --collection-name --source-restore-point + User-Agent: + - AZURECLI/2.53.0.post20231016053517 azsdk-python-azure-mgmt-compute/30.0.0 + Python/3.11.0 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 + response: + body: + string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"26e53fbf-63b2-4911-80d0-a78c74622fbd\",\r\n + \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\",\r\n + \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0\"\r\n + \ },\r\n \"diskRestorePoint\": {\r\n \"sourceDiskRestorePoint\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0_b2583fe9-bb19-4892-8fdc-c2d55479dbeb\"\r\n + \ },\r\n \"encryption\": {\r\n \"type\": + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_3ed90c6a4e1046cca7fecc0372d2f5c0_2bddb127-7961-40ac-8727-dc9c83729c46\"\r\n + \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vmrkpj44xd6r6v\",\r\n \"adminUsername\": + \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n + \ },\r\n \"timeCreated\": \"2023-10-16T08:18:32.9351285+00:00\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3628' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T08:56:15Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '400' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:56:20 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 + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 08:56:21 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 09:01:21 GMT + source-age: + - '134' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - e3e87e4f2f9201bcfc6f437866fd8dc06ebc4ed1 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1222-QPG + x-timer: + - S1697446581.451207,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK - request: body: null headers: @@ -56,24 +3871,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:45 GMT + - Mon, 16 Oct 2023 08:56:22 GMT expires: - '-1' pragma: @@ -90,7 +3904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991 status: code: 200 message: OK @@ -108,34 +3922,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:46 GMT + - Mon, 16 Oct 2023 08:56:22 GMT expires: - '-1' pragma: @@ -152,7 +3966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73976 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73993 status: code: 200 message: OK @@ -170,8 +3984,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -185,7 +3998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:46 GMT + - Mon, 16 Oct 2023 08:56:24 GMT expires: - '-1' pragma: @@ -199,6 +4012,120 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Mon, 16 Oct 2023 08:56:25 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Mon, 16 Oct 2023 09:01:25 GMT + source-age: + - '138' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 0849d41d3060578a3f687b373e0b1d6e632ec100 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1233-QPG + x-timer: + - S1697446585.404553,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK - request: body: null headers: @@ -213,24 +4140,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:47 GMT + - Mon, 16 Oct 2023 08:56:25 GMT expires: - '-1' pragma: @@ -240,10 +4166,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990 status: code: 200 message: OK @@ -261,34 +4191,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:47 GMT + - Mon, 16 Oct 2023 08:56:27 GMT expires: - '-1' pragma: @@ -305,7 +4235,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73975 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73992 status: code: 200 message: OK @@ -323,24 +4253,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:47 GMT + - Mon, 16 Oct 2023 08:56:29 GMT expires: - '-1' pragma: @@ -357,7 +4286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 status: code: 200 message: OK @@ -375,34 +4304,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1048' + - '1158' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:47 GMT + - Mon, 16 Oct 2023 08:56:30 GMT expires: - '-1' pragma: @@ -419,7 +4348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73974 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73991 status: code: 200 message: OK @@ -451,12 +4380,12 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vmira4d5pw7kxc", - "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ", - "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "incremental"}}' + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "vmk3gnxwpbuawx", "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n", "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -467,22 +4396,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3642' + - '3863' Content-Type: - application/json ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_eAXgH5LXhImLt6X7UrxCbDeRgv6PI70i","name":"vm_deploy_eAXgH5LXhImLt6X7UrxCbDeRgv6PI70i","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11310194173319344598","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-07-10T13:16:50.2805069Z","duration":"PT0.0001814S","correlationId":"3e64728e-5737-4905-8d91-08f017ddd06a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_Sa7t3k7979RpqSlJmJW9dsdOGq0LmQDp","name":"vm_deploy_Sa7t3k7979RpqSlJmJW9dsdOGq0LmQDp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10883247580332096308","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T08:56:37.1602724Z","duration":"PT0.0002848S","correlationId":"3a2a12fd-9af3-4324-bea7-c7f9a73a643e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_eAXgH5LXhImLt6X7UrxCbDeRgv6PI70i/operationStatuses/08585126118764222761?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_Sa7t3k7979RpqSlJmJW9dsdOGq0LmQDp/operationStatuses/08585041602911007962?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -490,7 +4418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:50 GMT + - Mon, 16 Oct 2023 08:56:37 GMT expires: - '-1' pragma: @@ -518,10 +4446,51 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041602911007962?api-version=2022-09-01 + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 08:56:38 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: + - -n -g --image --admin-username + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585126118764222761?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041602911007962?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -533,7 +4502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:16:50 GMT + - Mon, 16 Oct 2023 08:57:09 GMT expires: - '-1' pragma: @@ -561,10 +4530,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585126118764222761?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041602911007962?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -576,7 +4544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:20 GMT + - Mon, 16 Oct 2023 08:57:39 GMT expires: - '-1' pragma: @@ -604,22 +4572,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_eAXgH5LXhImLt6X7UrxCbDeRgv6PI70i","name":"vm_deploy_eAXgH5LXhImLt6X7UrxCbDeRgv6PI70i","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11310194173319344598","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-07-10T13:17:14.0421411Z","duration":"PT23.7618156S","correlationId":"3e64728e-5737-4905-8d91-08f017ddd06a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_Sa7t3k7979RpqSlJmJW9dsdOGq0LmQDp","name":"vm_deploy_Sa7t3k7979RpqSlJmJW9dsdOGq0LmQDp","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10883247580332096308","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T08:57:18.6760416Z","duration":"PT41.516054S","correlationId":"3a2a12fd-9af3-4324-bea7-c7f9a73a643e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3442' + - '3441' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:20 GMT + - Mon, 16 Oct 2023 08:57:39 GMT expires: - '-1' pragma: @@ -647,65 +4614,65 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006?$expand=instanceView&api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm_000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"53d4a5d8-2d15-43f6-9692-1918d66c6bd0\",\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.202306070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\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_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\"\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"ee5ede23-b0f9-44bd-ac6b-625d02ffe7d9\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\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_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmira4d5pw7kxc\",\r\n \"adminUsername\": - \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\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\": \"2023-07-10T13:17:21+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n + \ \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n + \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.9.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\": + \"2023-10-16T08:57:26+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-07-10T13:17:00.1953647+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T08:57:03.8117297+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-07-10T13:17:10.8518008+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T08:57:14.4994314+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-07-10T13:16:58.3202832+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-16T08:57:01.5304476+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3845' + - '4201' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:20 GMT + - Mon, 16 Oct 2023 08:57:42 GMT expires: - '-1' pragma: @@ -722,7 +4689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31913 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23992,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -740,19 +4707,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm_000006VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\",\r\n - \ \"etag\": \"W/\\\"429ca962-db09-45d4-941e-5751fabcb30f\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"64f9aa6b-d4ba-4068-948b-7947ab624ac0\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f2a0de15-1f65-4ee5-a91b-6cde6b618555\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"e444852b-3ccf-452a-b52d-81d02ec5b594\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm_000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\",\r\n - \ \"etag\": \"W/\\\"429ca962-db09-45d4-941e-5751fabcb30f\\\"\",\r\n + \ \"etag\": \"W/\\\"64f9aa6b-d4ba-4068-948b-7947ab624ac0\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -761,26 +4727,26 @@ 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\": - \"v2jzosq2sgoefoargdh4tj5mcc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-0A-76-D5\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + \"kp0v0sskkosuxnqixp1pejl4mh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"60-45-BD-01-90-FA\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n - \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n - \ \"kind\": \"Regular\"\r\n}" + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"auxiliaryMode\": + \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" headers: cache-control: - no-cache content-length: - - '2527' + - '2557' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:21 GMT + - Mon, 16 Oct 2023 08:57:43 GMT etag: - - W/"429ca962-db09-45d4-941e-5751fabcb30f" + - W/"64f9aa6b-d4ba-4068-948b-7947ab624ac0" expires: - '-1' pragma: @@ -797,7 +4763,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 632a1acc-4452-4411-9239-28159fee7631 + - eb9a648c-3016-4c9e-b79b-d582887e66a5 status: code: 200 message: OK @@ -815,17 +4781,16 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm_000006PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\",\r\n - \ \"etag\": \"W/\\\"dcf0e2f0-69c4-41f1-94f2-4430822eb94c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a4b1ad04-59da-4819-8135-926e9cd54db2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"f7c17664-21db-431e-8df8-278675159fa7\",\r\n - \ \"ipAddress\": \"20.237.189.20\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"5c509684-5f80-45f1-8ca0-0df3365ffd66\",\r\n + \ \"ipAddress\": \"20.245.144.42\",\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_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -839,9 +4804,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:21 GMT + - Mon, 16 Oct 2023 08:57:45 GMT etag: - - W/"dcf0e2f0-69c4-41f1-94f2-4430822eb94c" + - W/"a4b1ad04-59da-4819-8135-926e9cd54db2" expires: - '-1' pragma: @@ -858,7 +4823,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77742d99-398b-433c-9503-cf530c70666c + - c4d6d6c1-6802-459e-a6da-0658de9257aa status: code: 200 message: OK @@ -876,13 +4841,12 @@ interactions: ParameterSetName: - -g --collection-name --source-id User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-07-10T13:16:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-16T08:56:15Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -891,7 +4855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:21 GMT + - Mon, 16 Oct 2023 08:57:46 GMT expires: - '-1' pragma: @@ -923,8 +4887,7 @@ interactions: ParameterSetName: - -g --collection-name --source-id User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002?api-version=2023-03-01 response: @@ -933,7 +4896,7 @@ interactions: \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n - \ },\r\n \"restorePointCollectionId\": \"4b8ca19c-4c0a-4f8d-9792-f42fadfe71ae\",\r\n + \ },\r\n \"restorePointCollectionId\": \"ec9f338f-1c46-41a2-9b2e-b0c24e6a3c77\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -943,7 +4906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:23 GMT + - Mon, 16 Oct 2023 08:57:51 GMT expires: - '-1' pragma: @@ -956,9 +4919,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599 + - Microsoft.Compute/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -980,8 +4943,7 @@ interactions: ParameterSetName: - -g --collection-name --source-id -l User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003?api-version=2023-03-01 response: @@ -990,7 +4952,7 @@ interactions: \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\"\r\n - \ },\r\n \"restorePointCollectionId\": \"3b108f0f-ff3b-4927-9094-c629441476aa\",\r\n + \ },\r\n \"restorePointCollectionId\": \"a3e3d226-31b6-4e82-9e30-37df0a6e7579\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1000,7 +4962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:25 GMT + - Mon, 16 Oct 2023 08:57:57 GMT expires: - '-1' pragma: @@ -1013,9 +4975,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599 + - Microsoft.Compute/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1037,46 +4999,46 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 response: body: string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"53d4a5d8-2d15-43f6-9692-1918d66c6bd0\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"ee5ede23-b0f9-44bd-ac6b-625d02ffe7d9\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmira4d5pw7kxc\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": - \"2023-07-10T13:17:26.4926097+00:00\"\r\n }\r\n}" + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": + \"2023-10-16T08:57:59.7187612+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52ab4a8c-3191-465e-a851-966ac2584271?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e4a04eda-1c17-4723-9586-087900882a92?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 cache-control: - no-cache content-length: - - '2266' + - '2466' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:25 GMT + - Mon, 16 Oct 2023 08:57:58 GMT expires: - '-1' pragma: @@ -1089,9 +5051,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598 + - Microsoft.Compute/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -1109,14 +5071,13 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52ab4a8c-3191-465e-a851-966ac2584271?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e4a04eda-1c17-4723-9586-087900882a92?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-10T13:17:26.4770745+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"52ab4a8c-3191-465e-a851-966ac2584271\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T08:57:59.7187612+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e4a04eda-1c17-4723-9586-087900882a92\"\r\n}" headers: cache-control: - no-cache @@ -1125,7 +5086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:25 GMT + - Mon, 16 Oct 2023 08:57:59 GMT expires: - '-1' pragma: @@ -1142,7 +5103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14982 status: code: 200 message: OK @@ -1160,14 +5121,13 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52ab4a8c-3191-465e-a851-966ac2584271?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e4a04eda-1c17-4723-9586-087900882a92?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-10T13:17:26.4770745+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"52ab4a8c-3191-465e-a851-966ac2584271\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T08:57:59.7187612+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e4a04eda-1c17-4723-9586-087900882a92\"\r\n}" headers: cache-control: - no-cache @@ -1176,7 +5136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:17:57 GMT + - Mon, 16 Oct 2023 08:58:30 GMT expires: - '-1' pragma: @@ -1193,7 +5153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29925 + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1211,15 +5171,14 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52ab4a8c-3191-465e-a851-966ac2584271?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e4a04eda-1c17-4723-9586-087900882a92?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-10T13:17:26.4770745+00:00\",\r\n \"endTime\": - \"2023-07-10T13:18:18.4465599+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"52ab4a8c-3191-465e-a851-966ac2584271\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T08:57:59.7187612+00:00\",\r\n \"endTime\": + \"2023-10-16T08:58:46.4537826+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e4a04eda-1c17-4723-9586-087900882a92\"\r\n}" headers: cache-control: - no-cache @@ -1228,7 +5187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:27 GMT + - Mon, 16 Oct 2023 08:59:01 GMT expires: - '-1' pragma: @@ -1245,7 +5204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1263,46 +5222,46 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-03-01 response: body: string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"53d4a5d8-2d15-43f6-9692-1918d66c6bd0\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"ee5ede23-b0f9-44bd-ac6b-625d02ffe7d9\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\"\r\n \ },\r\n \"diskRestorePoint\": {\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d_666dd80e-9424-4b16-a3ba-f8b43298c419\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819_9722b7aa-3c76-45e9-8650-c850d604ce70\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmira4d5pw7kxc\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": - \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-07-10T13:17:26.4926097+00:00\"\r\n + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-10-16T08:57:59.7187612+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2790' + - '2990' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:27 GMT + - Mon, 16 Oct 2023 08:59:02 GMT expires: - '-1' pragma: @@ -1319,7 +5278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetRestorePoint3Min;498,Microsoft.Compute/LowCostGetRestorePoint30Min;2498 + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 status: code: 200 message: OK @@ -1341,48 +5300,48 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 response: body: string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"53d4a5d8-2d15-43f6-9692-1918d66c6bd0\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"ee5ede23-b0f9-44bd-ac6b-625d02ffe7d9\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmira4d5pw7kxc\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n - \ },\r\n \"timeCreated\": \"2023-07-10T13:17:26.4926097+00:00\"\r\n }\r\n}" + \ },\r\n \"timeCreated\": \"2023-10-16T08:57:59.7187612+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/35d36da6-6f30-4736-8cb8-492e10116e36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6af4bf7b-207b-4fc3-a4ff-258ca81cb125?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 cache-control: - no-cache content-length: - - '2567' + - '2767' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:28 GMT + - Mon, 16 Oct 2023 08:59:04 GMT expires: - '-1' pragma: @@ -1395,9 +5354,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598 + - Microsoft.Compute/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1415,14 +5374,13 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/35d36da6-6f30-4736-8cb8-492e10116e36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6af4bf7b-207b-4fc3-a4ff-258ca81cb125?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-10T13:18:27.9361285+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"35d36da6-6f30-4736-8cb8-492e10116e36\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T08:59:05.3630395+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6af4bf7b-207b-4fc3-a4ff-258ca81cb125\"\r\n}" headers: cache-control: - no-cache @@ -1431,7 +5389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:28 GMT + - Mon, 16 Oct 2023 08:59:06 GMT expires: - '-1' pragma: @@ -1448,7 +5406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29960 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1466,15 +5424,14 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/35d36da6-6f30-4736-8cb8-492e10116e36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6af4bf7b-207b-4fc3-a4ff-258ca81cb125?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-10T13:18:27.9361285+00:00\",\r\n \"endTime\": - \"2023-07-10T13:18:34.6080262+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"35d36da6-6f30-4736-8cb8-492e10116e36\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T08:59:05.3630395+00:00\",\r\n \"endTime\": + \"2023-10-16T08:59:11.0973642+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6af4bf7b-207b-4fc3-a4ff-258ca81cb125\"\r\n}" headers: cache-control: - no-cache @@ -1483,7 +5440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:58 GMT + - Mon, 16 Oct 2023 08:59:35 GMT expires: - '-1' pragma: @@ -1500,7 +5457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29956 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1518,49 +5475,49 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.12 (Linux-5.15.0-1040-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-03-01 response: body: string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"53d4a5d8-2d15-43f6-9692-1918d66c6bd0\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"ee5ede23-b0f9-44bd-ac6b-625d02ffe7d9\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819\"\r\n \ },\r\n \"diskRestorePoint\": {\r\n \"sourceDiskRestorePoint\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d_666dd80e-9424-4b16-a3ba-f8b43298c419\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819_9722b7aa-3c76-45e9-8650-c850d604ce70\"\r\n \ },\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_4476003e89ea4ff18aa27a136223568d_55352a59-3d3e-402a-8a05-9cfc0c7926de\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_f5d948b05aad43708dba233ae4aa6819_c85acd75-4752-4b26-ad5c-0966c4a327a9\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmira4d5pw7kxc\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vmk3gnxwpbuawx\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIjOP/LncUCAHNwYozdXFbjzg7zFGXLmrTCtVOuiOO0CKrY0vZo3D2SVF3B15Ovlbwj+2Ak32LehDpWUClT6Ou8Zrhm9Hnn2ieczJplQX1k/dtvCFrTzvkusCfW1olyuSnb4uDN9xT3bVo8T4B6VEjrO5bkAoDHGr5Q8fLtSatfGKOO30PgqDJAdAAeyLZZZJMHqPa5JWhp4pnwpI0I0HnPIWTRuLHQq6joI4MyyZATAkvHM+RtrbOMURpR7wtlPcM1wgsrAwFPYu1BvrJ6dvBFKASJ99/QIUYVm6kSmWxwJcTUICr/byfFEhcvXd7by2PEYt22UF28nRnvBOXeDYZ\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n - \ },\r\n \"timeCreated\": \"2023-07-10T13:17:26.4926097+00:00\"\r\n }\r\n}" + \ },\r\n \"timeCreated\": \"2023-10-16T08:57:59.7187612+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3428' + - '3628' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 13:18:58 GMT + - Mon, 16 Oct 2023 08:59:36 GMT expires: - '-1' pragma: @@ -1577,7 +5534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetRestorePoint3Min;499,Microsoft.Compute/LowCostGetRestorePoint30Min;2499 + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_reimage.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_reimage.yaml index 33f1403313c..8bb7bf4b369 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_reimage.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_reimage.yaml @@ -14,22 +14,21 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001","name":"cli_test_vm_reimage_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-05-25T08:13:50Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001","name":"cli_test_vm_reimage_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_reimage","date":"2023-10-16T09:20:36Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '330' + - '369' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:51 GMT + - Mon, 16 Oct 2023 09:20:38 GMT expires: - '-1' pragma: @@ -53,7 +52,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -61,68 +60,50 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2204\": {\n \"publisher\": - \ \"Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n - \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n }\n },\n \"Windows\": - {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2022AzureEditionCore\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2022-datacenter-azure-edition-core\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"Win2019Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2012R2Datacenter\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2012Datacenter\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2008R2SP1\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n }\n }\n - \ }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -133,19 +114,21 @@ interactions: connection: - keep-alive content-length: - - '4813' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 25 May 2023 08:13:52 GMT + - Mon, 16 Oct 2023 09:20:38 GMT etag: - - W/"7298e22031c19603efeacd7c6d414e8a6440da9719a7667ec308696559a1f0ba" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 25 May 2023 08:18:52 GMT + - Mon, 16 Oct 2023 09:25:38 GMT source-age: - - '159' + - '119' strict-transport-security: - max-age=31536000 vary: @@ -159,15 +142,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 13eebaad4dc36c855a3d201161f63784744a8520 + - ac7d2c1fd4c909fa9aabf3f38b4d8c4ffa657772 x-frame-options: - deny x-github-request-id: - - 7184:5C68:339C996:3CA5CF4:6463A799 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-iad-kiad7000056-IAD + - cache-qpg1282-QPG x-timer: - - S1685002432.197763,VS0,VE1 + - S1697448039.940701,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -188,24 +171,23 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:51 GMT + - Mon, 16 Oct 2023 09:20:39 GMT expires: - '-1' pragma: @@ -222,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -241,29 +223,34 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:52 GMT + - Mon, 16 Oct 2023 09:20:40 GMT expires: - '-1' pragma: @@ -280,7 +267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73988 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -299,8 +286,7 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -314,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:52 GMT + - Mon, 16 Oct 2023 09:20:41 GMT expires: - '-1' pragma: @@ -338,7 +324,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.26.0 + - python-requests/2.31.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json response: @@ -346,68 +332,50 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"UbuntuLTS\": {\n \"publisher\": - \"Canonical\",\n \"offer\": \"UbuntuServer\",\n \"sku\": - \"18.04-LTS\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Ubuntu2204\": {\n \"publisher\": - \ \"Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n - \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n }\n },\n \"Windows\": - {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n - \ \"offer\": \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Win2022AzureEditionCore\": {\n \"publisher\": - \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": - \"2022-datacenter-azure-edition-core\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"Win2019Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2016Datacenter\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2012R2Datacenter\": + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-R2-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2012Datacenter\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2008R2SP1\": - {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": - \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n }\n }\n - \ }\n }\n }\n}\n" + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" headers: accept-ranges: - bytes @@ -418,19 +386,21 @@ interactions: connection: - keep-alive content-length: - - '4813' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin date: - - Thu, 25 May 2023 08:13:53 GMT + - Mon, 16 Oct 2023 09:20:42 GMT etag: - - W/"7298e22031c19603efeacd7c6d414e8a6440da9719a7667ec308696559a1f0ba" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Thu, 25 May 2023 08:18:53 GMT + - Mon, 16 Oct 2023 09:25:42 GMT source-age: - - '160' + - '122' strict-transport-security: - max-age=31536000 vary: @@ -440,19 +410,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '2' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 574875f32f93d522d4e2c084eb7e971ee7cd8c93 + - 7842d3043f128993db431cdea0daff9314d2d78c x-frame-options: - deny x-github-request-id: - - 7184:5C68:339C996:3CA5CF4:6463A799 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-iad-kiad7000084-IAD + - cache-qpg1260-QPG x-timer: - - S1685002433.037141,VS0,VE0 + - S1697448043.520750,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -473,24 +443,23 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:53 GMT + - Mon, 16 Oct 2023 09:20:43 GMT expires: - '-1' pragma: @@ -507,7 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -526,29 +495,34 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:53 GMT + - Mon, 16 Oct 2023 09:20:45 GMT expires: - '-1' pragma: @@ -565,7 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73987 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -584,24 +558,23 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.5.2022101801\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '270' + - '277' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:53 GMT + - Mon, 16 Oct 2023 09:20:46 GMT expires: - '-1' pragma: @@ -618,7 +591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -637,29 +610,34 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.5/versions/7.5.201808150?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/8_5-gen2/versions/8.5.2022101801?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n - \ \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": - 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"7.5.201808150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n + \ \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": + \"8.5.2022101801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/8_5-gen2/Versions/8.5.2022101801\"\r\n}" headers: cache-control: - no-cache content-length: - - '737' + - '1123' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:53 GMT + - Mon, 16 Oct 2023 09:20:48 GMT expires: - '-1' pragma: @@ -676,7 +654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -705,7 +683,7 @@ interactions: "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}, "deleteOption": "Delete"}, "imageReference": {"publisher": "OpenLogic", - "offer": "CentOS", "sku": "7.5", "version": "latest"}}, "osProfile": {"computerName": + "offer": "CentOS", "sku": "8_5-gen2", "version": "latest"}}, "osProfile": {"computerName": "vm", "adminUsername": "centosadmin", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "incremental"}}' @@ -719,31 +697,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2877' + - '2882' Content-Type: - application/json ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_VvQq6CQeqvbpKH4qpqNSXcZ91ahYpu8z","name":"vm_deploy_VvQq6CQeqvbpKH4qpqNSXcZ91ahYpu8z","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16947458751902499247","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-05-25T08:13:56.7260261Z","duration":"PT0.0004596S","correlationId":"916fe7c1-5873-4240-8bde-6e49c7cfa112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_YNppPSg0mqm3LyXzVFBSbyKHc1VC3aLZ","name":"vm_deploy_YNppPSg0mqm3LyXzVFBSbyKHc1VC3aLZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5890649790749703566","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T09:20:53.6173895Z","duration":"PT0.0002782S","correlationId":"a1ea2746-c6bb-479a-8813-ee6fc90faed8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_VvQq6CQeqvbpKH4qpqNSXcZ91ahYpu8z/operationStatuses/08585166044500646751?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_YNppPSg0mqm3LyXzVFBSbyKHc1VC3aLZ/operationStatuses/08585041588347982922?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2427' + - '2426' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:13:56 GMT + - Mon, 16 Oct 2023 09:20:54 GMT expires: - '-1' pragma: @@ -772,10 +749,9 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585166044500646751?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588347982922?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -787,13 +763,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:14:26 GMT + - Mon, 16 Oct 2023 09:20:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -814,10 +792,9 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585166044500646751?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588347982922?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -829,13 +806,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:14:56 GMT + - Mon, 16 Oct 2023 09:21:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -856,10 +835,52 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585166044500646751?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588347982922?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Oct 2023 09:21:56 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 --admin-username --admin-password --authentication-type --os-disk-delete-option + --nsg-rule + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588347982922?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -871,13 +892,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:28 GMT + - Mon, 16 Oct 2023 09:22:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -898,28 +921,29 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_VvQq6CQeqvbpKH4qpqNSXcZ91ahYpu8z","name":"vm_deploy_VvQq6CQeqvbpKH4qpqNSXcZ91ahYpu8z","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16947458751902499247","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-05-25T08:15:16.5604613Z","duration":"PT1M19.8348948S","correlationId":"916fe7c1-5873-4240-8bde-6e49c7cfa112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Resources/deployments/vm_deploy_YNppPSg0mqm3LyXzVFBSbyKHc1VC3aLZ","name":"vm_deploy_YNppPSg0mqm3LyXzVFBSbyKHc1VC3aLZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5890649790749703566","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T09:22:02.6154058Z","duration":"PT1M8.9982945S","correlationId":"a1ea2746-c6bb-479a-8813-ee6fc90faed8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/virtualNetworks/vmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '3244' + - '3242' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:28 GMT + - Mon, 16 Oct 2023 09:22:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -940,62 +964,62 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm?$expand=instanceView&api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dc463d81-a5f0-4db2-97e1-b03f26cde53e\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm_OsDisk_1_dd94911a7c914db4a8b97e0540b07526\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"5e7bfa23-8f0d-4a81-a1d2-119cce05bac7\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.5.2022101801\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_OsDisk_1_4f841c76f67b4f34bf0fbfcb98c977b0\",\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_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_dd94911a7c914db4a8b97e0540b07526\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_4f841c76f67b4f34bf0fbfcb98c977b0\"\r\n \ },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"centosadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n + \ \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"vm\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\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\": - \"2023-05-25T08:15:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_OsDisk_1_dd94911a7c914db4a8b97e0540b07526\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm\",\r\n \"osName\": + \"centos\",\r\n \"osVersion\": \"8.5.2111\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.9.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\": \"2023-10-16T09:22:16+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm_OsDisk_1_4f841c76f67b4f34bf0fbfcb98c977b0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-05-25T08:14:08.3828949+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T09:21:18.816265+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-05-25T08:15:13.4614813+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T09:21:59.363683+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-05-25T08:14:05.6482188+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-16T09:21:15.6912194+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3282' + - '3323' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:28 GMT + - Mon, 16 Oct 2023 09:22:28 GMT expires: - '-1' pragma: @@ -1012,7 +1036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31959 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -1031,18 +1055,17 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\",\r\n - \ \"etag\": \"W/\\\"f9b6557f-af98-49c0-9c17-cd77c4a7d601\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"a136946f-2163-4046-802e-74353007f292\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"942a9adc-666c-4af3-ab63-3f894d00333e\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"78093bb3-f17a-4916-bd9f-e3f7d52146e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\",\r\n - \ \"etag\": \"W/\\\"f9b6557f-af98-49c0-9c17-cd77c4a7d601\\\"\",\r\n + \ \"etag\": \"W/\\\"a136946f-2163-4046-802e-74353007f292\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1051,26 +1074,26 @@ 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\": - \"mg4guqqkreaelg14atldil5gfc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-31-A6-E3\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + \"rliodjot5j5uxowulewbw3lzwd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"60-45-BD-02-C8-18\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm\"\r\n \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n - \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n - \ \"kind\": \"Regular\"\r\n}" + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"auxiliaryMode\": + \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" headers: cache-control: - no-cache content-length: - - '2397' + - '2427' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:29 GMT + - Mon, 16 Oct 2023 09:22:30 GMT etag: - - W/"f9b6557f-af98-49c0-9c17-cd77c4a7d601" + - W/"a136946f-2163-4046-802e-74353007f292" expires: - '-1' pragma: @@ -1087,7 +1110,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dff9f569-714b-4837-9aca-5f42c93a6fe0 + - 35daebc9-47e2-4e81-abd7-9e5f02f50b4f status: code: 200 message: OK @@ -1106,18 +1129,17 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --os-disk-delete-option --nsg-rule User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP\",\r\n - \ \"etag\": \"W/\\\"9654cdd5-a763-431d-8410-f19fbf0187e9\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"8536d6e0-bee5-4f36-bebf-8ee683d365b4\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"062506c9-9795-45a8-ab5a-f43687a7aa03\",\r\n - \ \"ipAddress\": \"20.245.233.176\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"47c6448c-5b37-417b-953f-9d08b236c3c5\",\r\n + \ \"ipAddress\": \"104.40.82.173\",\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_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -1126,13 +1148,13 @@ interactions: cache-control: - no-cache content-length: - - '921' + - '920' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:29 GMT + - Mon, 16 Oct 2023 09:22:32 GMT etag: - - W/"9654cdd5-a763-431d-8410-f19fbf0187e9" + - W/"8536d6e0-bee5-4f36-bebf-8ee683d365b4" expires: - '-1' pragma: @@ -1149,7 +1171,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d82df94-cf3f-486d-943d-b6c9ed720afb + - 5ebff0f3-aa7d-4c88-9fcd-7e313661a3f8 status: code: 200 message: OK @@ -1167,45 +1189,44 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dc463d81-a5f0-4db2-97e1-b03f26cde53e\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm_OsDisk_1_dd94911a7c914db4a8b97e0540b07526\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"5e7bfa23-8f0d-4a81-a1d2-119cce05bac7\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.5.2022101801\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_OsDisk_1_4f841c76f67b4f34bf0fbfcb98c977b0\",\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_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_dd94911a7c914db4a8b97e0540b07526\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_4f841c76f67b4f34bf0fbfcb98c977b0\"\r\n \ },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"centosadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n + \ \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-05-25T08:14:05.6482188+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:21:15.6912194+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1988' + - '2031' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:15:30 GMT + - Mon, 16 Oct 2023 09:22:34 GMT expires: - '-1' pragma: @@ -1222,7 +1243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31958 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -1245,8 +1266,7 @@ interactions: ParameterSetName: - --name --resource-group --temp-disk --admin-password --custom-data --exact-version User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm/reimage?api-version=2022-11-01 response: @@ -1256,17 +1276,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1ed7ddf1-4917-4d26-bad3-f0be81a24a85?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fb07dd35-c1d5-410c-918d-5a02960a784c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 25 May 2023 08:15:30 GMT + - Mon, 16 Oct 2023 09:22:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1ed7ddf1-4917-4d26-bad3-f0be81a24a85?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fb07dd35-c1d5-410c-918d-5a02960a784c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01 pragma: - no-cache server: @@ -1277,7 +1297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1297,14 +1317,13 @@ interactions: ParameterSetName: - --name --resource-group --temp-disk --admin-password --custom-data --exact-version User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1ed7ddf1-4917-4d26-bad3-f0be81a24a85?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fb07dd35-c1d5-410c-918d-5a02960a784c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-05-25T08:15:30.8367379+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1ed7ddf1-4917-4d26-bad3-f0be81a24a85\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:22:36.5360663+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fb07dd35-c1d5-410c-918d-5a02960a784c\"\r\n}" headers: cache-control: - no-cache @@ -1313,7 +1332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:16:01 GMT + - Mon, 16 Oct 2023 09:22:36 GMT expires: - '-1' pragma: @@ -1330,7 +1349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29935 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1348,14 +1367,13 @@ interactions: ParameterSetName: - --name --resource-group --temp-disk --admin-password --custom-data --exact-version User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1ed7ddf1-4917-4d26-bad3-f0be81a24a85?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fb07dd35-c1d5-410c-918d-5a02960a784c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-05-25T08:15:30.8367379+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1ed7ddf1-4917-4d26-bad3-f0be81a24a85\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:22:36.5360663+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fb07dd35-c1d5-410c-918d-5a02960a784c\"\r\n}" headers: cache-control: - no-cache @@ -1364,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:16:30 GMT + - Mon, 16 Oct 2023 09:23:07 GMT expires: - '-1' pragma: @@ -1381,7 +1399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29932 + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1399,15 +1417,14 @@ interactions: ParameterSetName: - --name --resource-group --temp-disk --admin-password --custom-data --exact-version User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1ed7ddf1-4917-4d26-bad3-f0be81a24a85?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fb07dd35-c1d5-410c-918d-5a02960a784c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-05-25T08:15:30.8367379+00:00\",\r\n \"endTime\": - \"2023-05-25T08:16:41.2592392+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1ed7ddf1-4917-4d26-bad3-f0be81a24a85\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:22:36.5360663+00:00\",\r\n \"endTime\": + \"2023-10-16T09:23:24.0679759+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fb07dd35-c1d5-410c-918d-5a02960a784c\"\r\n}" headers: cache-control: - no-cache @@ -1416,7 +1433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:17:00 GMT + - Mon, 16 Oct 2023 09:23:38 GMT expires: - '-1' pragma: @@ -1433,7 +1450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29930 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK @@ -1451,45 +1468,44 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.10.11 (Linux-5.15.0-1036-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dc463d81-a5f0-4db2-97e1-b03f26cde53e\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm_OsDisk_1_015a1981d673451681b78dd14392a869\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"5e7bfa23-8f0d-4a81-a1d2-119cce05bac7\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n + \ \"offer\": \"CentOS\",\r\n \"sku\": \"8_5-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.5.2022101801\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm_OsDisk_1_26c3e69c5174457d9857ddabe7476cab\",\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_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_015a1981d673451681b78dd14392a869\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_26c3e69c5174457d9857ddabe7476cab\"\r\n \ },\r\n \"deleteOption\": \"Delete\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm\",\r\n \"adminUsername\": \"centosadmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": - {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": - \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n + \ \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\": + {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n + \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_reimage_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-05-25T08:14:05.6482188+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:21:15.6912194+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1988' + - '2031' content-type: - application/json; charset=utf-8 date: - - Thu, 25 May 2023 08:17:02 GMT + - Mon, 16 Oct 2023 09:23:43 GMT expires: - '-1' pragma: @@ -1499,10 +1515,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31952 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_secret_e2e_test.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_secret_e2e_test.yaml index 25a6b803eb6..47a0c7c91c8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_secret_e2e_test.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_secret_e2e_test.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001","name":"cli_test_vm_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_secret_e2e_test","date":"2023-07-25T06:37:38Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001","name":"cli_test_vm_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_secret_e2e_test","date":"2023-10-16T09:20:36Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:24 GMT + - Mon, 16 Oct 2023 09:21:26 GMT expires: - '-1' pragma: @@ -59,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -133,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -141,13 +121,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 25 Jul 2023 06:38:24 GMT + - Mon, 16 Oct 2023 09:21:26 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 25 Jul 2023 06:43:24 GMT + - Mon, 16 Oct 2023 09:26:26 GMT source-age: - - '290' + - '166' strict-transport-security: - max-age=31536000 vary: @@ -157,19 +137,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '1' + - '2' x-content-type-options: - nosniff x-fastly-request-id: - - 20ed61280bc974c9ede6e7b5551db65e1b148687 + - 41e6171bb5b52795c8279dc493160a442e8c76b6 x-frame-options: - deny x-github-request-id: - - D4D6:240A:32A7C:40BDE:64BEF321 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1282-QPG + - cache-qpg1276-QPG x-timer: - - S1690267105.974936,VS0,VE1 + - S1697448087.553825,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -189,23 +169,23 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.8.2023081717\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '269' + - '274' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:26 GMT + - Mon, 16 Oct 2023 09:21:26 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -240,32 +220,34 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2023032012?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.8.2023081717?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n - \ \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"8.8.2023081717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n}" headers: cache-control: - no-cache content-length: - - '943' + - '1126' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:27 GMT + - Mon, 16 Oct 2023 09:21:28 GMT expires: - '-1' pragma: @@ -282,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73985 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -300,7 +282,7 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -314,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:29 GMT + - Mon, 16 Oct 2023 09:21:29 GMT expires: - '-1' pragma: @@ -346,43 +328,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -420,7 +382,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -428,13 +390,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 25 Jul 2023 06:38:29 GMT + - Mon, 16 Oct 2023 09:21:29 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 25 Jul 2023 06:43:29 GMT + - Mon, 16 Oct 2023 09:26:29 GMT source-age: - - '295' + - '170' strict-transport-security: - max-age=31536000 vary: @@ -444,19 +406,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '2' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - e36642e6ff2ce2bc3d920acc00ef9de64354e1e6 + - 81f59c298af2503d16fee9d38425b9780ae3be9c x-frame-options: - deny x-github-request-id: - - D4D6:240A:32A7C:40BDE:64BEF321 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1266-QPG + - cache-qpg1244-QPG x-timer: - - S1690267109.495952,VS0,VE0 + - S1697448090.981405,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -476,23 +438,23 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.8.2023081717\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '269' + - '274' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:29 GMT + - Mon, 16 Oct 2023 09:21:30 GMT expires: - '-1' pragma: @@ -509,7 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -527,32 +489,34 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2023032012?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.8.2023081717?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n - \ \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"8.8.2023081717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n}" headers: cache-control: - no-cache content-length: - - '943' + - '1126' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:31 GMT + - Mon, 16 Oct 2023 09:21:31 GMT expires: - '-1' pragma: @@ -569,7 +533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73984 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -587,23 +551,23 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.8.2023081717\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '269' + - '274' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:32 GMT + - Mon, 16 Oct 2023 09:21:32 GMT expires: - '-1' pragma: @@ -620,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -638,32 +602,34 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2023032012?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.8.2023081717?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n - \ \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n - \ },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.2023032012\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2023032012\"\r\n}" + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"8.8.2023081717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.8.2023081717\"\r\n}" headers: cache-control: - no-cache content-length: - - '943' + - '1126' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:34 GMT + - Mon, 16 Oct 2023 09:21:33 GMT expires: - '-1' pragma: @@ -680,7 +646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73983 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -707,12 +673,12 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "RedHat", "offer": "RHEL", "sku": "7-LVM", + null}}, "imageReference": {"publisher": "RedHat", "offer": "RHEL", "sku": "8-lvm-gen2", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "rheladmin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz", - "path": "/home/rheladmin/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "incremental"}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n", "path": "/home/rheladmin/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -723,21 +689,21 @@ interactions: Connection: - keep-alive Content-Length: - - '3205' + - '3410' Content-Type: - application/json ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_WHhkzbebvl8C36nZ15JbfhJaYHxTomV5","name":"vm_deploy_WHhkzbebvl8C36nZ15JbfhJaYHxTomV5","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9686839909755593614","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-07-25T06:38:40.6759924Z","duration":"PT0.0004032S","correlationId":"cd3db0c0-5986-401f-ac54-78e62fd69e14","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_7129WfBmCdCUg7JntBDaq3MUDMFOJtJC","name":"vm_deploy_7129WfBmCdCUg7JntBDaq3MUDMFOJtJC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6609725212283941926","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T09:21:39.7331492Z","duration":"PT0.0007501S","correlationId":"00585070-6dff-403f-a28f-73a08bf114d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_WHhkzbebvl8C36nZ15JbfhJaYHxTomV5/operationStatuses/08585113397678281023?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_7129WfBmCdCUg7JntBDaq3MUDMFOJtJC/operationStatuses/08585041587882492889?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -745,7 +711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:41 GMT + - Mon, 16 Oct 2023 09:21:40 GMT expires: - '-1' pragma: @@ -773,21 +739,23 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585113397678281023?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041587882492889?api-version=2022-09-01 response: body: string: '{"status":"Accepted"}' headers: cache-control: - no-cache + connection: + - close content-length: - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:38:42 GMT + - Mon, 16 Oct 2023 09:21:40 GMT expires: - '-1' pragma: @@ -815,9 +783,9 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585113397678281023?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041587882492889?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -829,7 +797,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:39:12 GMT + - Mon, 16 Oct 2023 09:22:11 GMT expires: - '-1' pragma: @@ -857,9 +825,9 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585113397678281023?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041587882492889?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -871,7 +839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:39:42 GMT + - Mon, 16 Oct 2023 09:22:42 GMT expires: - '-1' pragma: @@ -899,9 +867,9 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585113397678281023?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041587882492889?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -913,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:40:13 GMT + - Mon, 16 Oct 2023 09:23:13 GMT expires: - '-1' pragma: @@ -941,21 +909,21 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_WHhkzbebvl8C36nZ15JbfhJaYHxTomV5","name":"vm_deploy_WHhkzbebvl8C36nZ15JbfhJaYHxTomV5","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9686839909755593614","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-07-25T06:39:43.9450796Z","duration":"PT1M3.2694904S","correlationId":"cd3db0c0-5986-401f-ac54-78e62fd69e14","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Resources/deployments/vm_deploy_7129WfBmCdCUg7JntBDaq3MUDMFOJtJC","name":"vm_deploy_7129WfBmCdCUg7JntBDaq3MUDMFOJtJC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6609725212283941926","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T09:22:50.7808764Z","duration":"PT1M11.0484773S","correlationId":"00585070-6dff-403f-a28f-73a08bf114d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3208' + - '3209' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:40:14 GMT + - Mon, 16 Oct 2023 09:23:13 GMT expires: - '-1' pragma: @@ -983,64 +951,64 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"vm1\",\r\n \"osName\": \"redhat\",\r\n \"osVersion\": \"7.9\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.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\": - \"2023-07-25T06:39:53+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": + \"redhat\",\r\n \"osVersion\": \"8.8\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": + \"2.9.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\": + \"2023-10-16T09:22:59+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-07-25T06:39:07.4488799+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T09:22:02.9106056+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-07-25T06:39:41.1680587+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-16T09:22:45.4580655+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3849' + - '4090' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:40:17 GMT + - Mon, 16 Oct 2023 09:23:15 GMT expires: - '-1' pragma: @@ -1057,7 +1025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31958 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;32 status: code: 200 message: OK @@ -1075,17 +1043,17 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"a83d2715-0c51-484a-b9d4-b1e8f0293491\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"0fc22b24-6176-4f91-8cb6-55bf4e3aad0d\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cc56e820-0fd9-4c96-9e45-d658577809fe\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"ad3bac78-f6db-4234-adaa-a5c932bf6b95\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"a83d2715-0c51-484a-b9d4-b1e8f0293491\\\"\",\r\n + \ \"etag\": \"W/\\\"0fc22b24-6176-4f91-8cb6-55bf4e3aad0d\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1094,26 +1062,26 @@ 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\": - \"vuj2bhpcjppupdeg52iy5zsfib.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-32-35-08\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + \"22m433s3vjle5dz54x1eczv1wh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-34-1E-71\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n - \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n - \ \"kind\": \"Regular\"\r\n}" + \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"auxiliaryMode\": + \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n + \ \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" headers: cache-control: - no-cache content-length: - - '2401' + - '2431' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:40:17 GMT + - Mon, 16 Oct 2023 09:23:16 GMT etag: - - W/"a83d2715-0c51-484a-b9d4-b1e8f0293491" + - W/"0fc22b24-6176-4f91-8cb6-55bf4e3aad0d" expires: - '-1' pragma: @@ -1130,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 28d87f14-f467-47e0-b6f7-9400c5648077 + - 192e27d7-835e-409e-b357-f791f7fa099f status: code: 200 message: OK @@ -1148,17 +1116,17 @@ interactions: ParameterSetName: - -g -n --image --generate-ssh-keys --admin-username --nsg-rule User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"e63b9c07-04a4-43ce-ac49-dd9c8abbdacc\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"119af373-df96-45fc-8f0a-8630da95587f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c150403d-0d27-4810-a17b-b799398f8881\",\r\n - \ \"ipAddress\": \"20.245.175.239\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"9ee95f76-427b-43a7-a7bf-bd8c0191242f\",\r\n + \ \"ipAddress\": \"104.40.92.14\",\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_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -1167,13 +1135,13 @@ interactions: cache-control: - no-cache content-length: - - '923' + - '921' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:40:19 GMT + - Mon, 16 Oct 2023 09:23:17 GMT etag: - - W/"e63b9c07-04a4-43ce-ac49-dd9c8abbdacc" + - W/"119af373-df96-45fc-8f0a-8630da95587f" expires: - '-1' pragma: @@ -1190,7 +1158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d680cb24-3478-4465-8e25-13830096c072 + - 3afc4b16-3405-402a-b1a7-ac9af5d420a0 status: code: 200 message: OK @@ -1208,7 +1176,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: POST uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/create?api-version=7.4 response: @@ -1223,7 +1191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:20 GMT + - Mon, 16 Oct 2023 09:24:19 GMT expires: - '-1' pragma: @@ -1236,11 +1204,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 401 message: Unauthorized @@ -1265,14 +1233,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: POST uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/create?api-version=7.4 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAzW3BfPvEReOjuJleySyvAkdU1ikzaVncvuCsCUYt/yYGboaNIej21zW6XFDxLmuLh+JYsrbkL+cuoFvX6w/By02auVseDSolsrNVajmaEegEDnAJbpA8wUYVBYgVWZXl4Vfvg/CoebU1WzUyeSdyk4/Q2nBcWRXLek2n2dWDVuYfQNP12d9ELifv3Jie54C4vmPFvN+hRT3hxut1JvilSEgbIrJmR6ximX0U7cJ5OEcBivWY24XhHsjxTpIJFoHD8GGWuSAb7HagNXiQZKzPgu8ruKDcPc5XCUS4Eb0PpGb7ez4IPtlgSv2zcGvODw+NPoMO8rkhjRdNy1wyaTmT9","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCGjQKarcPSUeTD0FtqKsYD38MOsPgD7mr5Eb0z33wo9/Q+dgmSzL9GfXZ4mrECKEYIbOXN9fKfWS9j/tFcHqzVsek6DNg2lUrQKbUgYjuPsTeWV32DNuX9YkVk31ZkXsdNVgKDK/vzlsaQBY55ousBJe1IrBe2dRTDYaih2IJVd3MJGI/b6dJbzBIS0Wqie6v9m16C+yXJCKot6BqQfqJJW0/y5WiwcYEjUs5hKK1RFPFKpmXckawQn6P4t/U62ow9vbfYqoJecMZ+cq14hfPQdy8782ErzDLFpOZIek2KZFKBu+lNnp2IbZaBD2DIZUDEnQKwfQm7O1ZOHvUaR/HI","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"f80e8a16f7dc4d51a7c1d8703d61a7dc"}' + time based on the issuer provider. Please check again later.","request_id":"b0b638a5f6f746f1a61d1552fa23e7a4"}' headers: cache-control: - no-cache @@ -1281,11 +1249,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:22 GMT + - Mon, 16 Oct 2023 09:24:21 GMT expires: - '-1' location: - - https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4&request_id=f80e8a16f7dc4d51a7c1d8703d61a7dc + - https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4&request_id=b0b638a5f6f746f1a61d1552fa23e7a4 pragma: - no-cache strict-transport-security: @@ -1293,11 +1261,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 202 message: Accepted @@ -1311,14 +1279,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAzW3BfPvEReOjuJleySyvAkdU1ikzaVncvuCsCUYt/yYGboaNIej21zW6XFDxLmuLh+JYsrbkL+cuoFvX6w/By02auVseDSolsrNVajmaEegEDnAJbpA8wUYVBYgVWZXl4Vfvg/CoebU1WzUyeSdyk4/Q2nBcWRXLek2n2dWDVuYfQNP12d9ELifv3Jie54C4vmPFvN+hRT3hxut1JvilSEgbIrJmR6ximX0U7cJ5OEcBivWY24XhHsjxTpIJFoHD8GGWuSAb7HagNXiQZKzPgu8ruKDcPc5XCUS4Eb0PpGb7ez4IPtlgSv2zcGvODw+NPoMO8rkhjRdNy1wyaTmT9","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCGjQKarcPSUeTD0FtqKsYD38MOsPgD7mr5Eb0z33wo9/Q+dgmSzL9GfXZ4mrECKEYIbOXN9fKfWS9j/tFcHqzVsek6DNg2lUrQKbUgYjuPsTeWV32DNuX9YkVk31ZkXsdNVgKDK/vzlsaQBY55ousBJe1IrBe2dRTDYaih2IJVd3MJGI/b6dJbzBIS0Wqie6v9m16C+yXJCKot6BqQfqJJW0/y5WiwcYEjUs5hKK1RFPFKpmXckawQn6P4t/U62ow9vbfYqoJecMZ+cq14hfPQdy8782ErzDLFpOZIek2KZFKBu+lNnp2IbZaBD2DIZUDEnQKwfQm7O1ZOHvUaR/HI","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"f80e8a16f7dc4d51a7c1d8703d61a7dc"}' + time based on the issuer provider. Please check again later.","request_id":"b0b638a5f6f746f1a61d1552fa23e7a4"}' headers: cache-control: - no-cache @@ -1327,7 +1295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:22 GMT + - Mon, 16 Oct 2023 09:24:21 GMT expires: - '-1' pragma: @@ -1337,11 +1305,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 200 message: OK @@ -1355,12 +1323,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAzW3BfPvEReOjuJleySyvAkdU1ikzaVncvuCsCUYt/yYGboaNIej21zW6XFDxLmuLh+JYsrbkL+cuoFvX6w/By02auVseDSolsrNVajmaEegEDnAJbpA8wUYVBYgVWZXl4Vfvg/CoebU1WzUyeSdyk4/Q2nBcWRXLek2n2dWDVuYfQNP12d9ELifv3Jie54C4vmPFvN+hRT3hxut1JvilSEgbIrJmR6ximX0U7cJ5OEcBivWY24XhHsjxTpIJFoHD8GGWuSAb7HagNXiQZKzPgu8ruKDcPc5XCUS4Eb0PpGb7ez4IPtlgSv2zcGvODw+NPoMO8rkhjRdNy1wyaTmT9","cancellation_requested":false,"status":"completed","target":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert","request_id":"f80e8a16f7dc4d51a7c1d8703d61a7dc"}' + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCGjQKarcPSUeTD0FtqKsYD38MOsPgD7mr5Eb0z33wo9/Q+dgmSzL9GfXZ4mrECKEYIbOXN9fKfWS9j/tFcHqzVsek6DNg2lUrQKbUgYjuPsTeWV32DNuX9YkVk31ZkXsdNVgKDK/vzlsaQBY55ousBJe1IrBe2dRTDYaih2IJVd3MJGI/b6dJbzBIS0Wqie6v9m16C+yXJCKot6BqQfqJJW0/y5WiwcYEjUs5hKK1RFPFKpmXckawQn6P4t/U62ow9vbfYqoJecMZ+cq14hfPQdy8782ErzDLFpOZIek2KZFKBu+lNnp2IbZaBD2DIZUDEnQKwfQm7O1ZOHvUaR/HI","cancellation_requested":false,"status":"completed","target":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert","request_id":"b0b638a5f6f746f1a61d1552fa23e7a4"}' headers: cache-control: - no-cache @@ -1369,7 +1337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:23 GMT + - Mon, 16 Oct 2023 09:24:27 GMT expires: - '-1' pragma: @@ -1379,11 +1347,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 200 message: OK @@ -1394,71 +1362,39 @@ interactions: - application/json Accept-Encoding: - gzip, deflate - CommandName: - - vm secret add Connection: - keep-alive - ParameterSetName: - - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 + uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/?api-version=7.4 response: body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/406300604ed84005a301f889549aa832","kid":"https://vmsecretkv000002.vault.azure.net/keys/vm-secrt-cert/406300604ed84005a301f889549aa832","sid":"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832","x5t":"DjisGLHapd2wKFeCoDm58J4G0EU","cer":"MIID8DCCAtigAwIBAgIQBCg+hcmVRkO+mCWroxgCxTANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIzMTAxNjA5MTQyMloXDTI4MTAxNjA5MjQyMlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFIloUMWy4LxF8bdIzbSgaCrXDX08MB0GA1UdDgQWBBSJaFDFsuC8RfG3SM20oGgq1w19PDANBgkqhkiG9w0BAQsFAAOCAQEAe4OMCRJXEfDOuolEBdM7xfph2TYwuHiH6uLgARBLJDHOlr3Q36MZom395gGTWLcyarlIXUg7YI38aqBGiXCRiZtdiZzQ56T5dXLnD0RK8jidbtv91IZW8LdWkyQLDUL/PGHZ+lTgkoXay1KIHE2TqEEQ2hRi6niA6cKDp2E85flAIHj5LGvNGWkm1YCD73h9HYRQb5XCfEOH7fNR0wMTXPpmuOAiyFv9qlU9jOcysA3LQXywz6kjsm8RRkOJPMcwV4fvszPjEW81xkgpgRsnHXJqKKkKtW/dJYv/cbE98qYrX4gOonypV7448sm0JMQiTz2QOd1fF7JTWAyDqHl5cA==","attributes":{"enabled":true,"nbf":1697447662,"exp":1855301062,"created":1697448262,"updated":1697448262,"recoveryLevel":"CustomizedRecoverable+Purgeable","recoverableDays":7},"policy":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","sans":{},"ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1697448261,"updated":1697448261}},"pending":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending"}}' headers: cache-control: - no-cache content-length: - - '2558' + - '2715' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:24 GMT + - Mon, 16 Oct 2023 09:24:28 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 + - max-age=31536000;includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31952 + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.1018.1 status: code: 200 message: OK @@ -1472,22 +1408,21 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/?api-version=7.4 + uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","kid":"https://vmsecretkv000002.vault.azure.net/keys/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","sid":"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","x5t":"yrTa9lErygTCWmdBxZTr4F1h2_s","cer":"MIID8DCCAtigAwIBAgIQR4xNSdnWRQ+GJJKOzIC7RzANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIzMDcyNTA2MzEyMloXDTI4MDcyNTA2NDEyMlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPbXjG/eFH9X0yZIz3449sD1IfWpMB0GA1UdDgQWBBT214xv3hR/V9MmSM9+OPbA9SH1qTANBgkqhkiG9w0BAQsFAAOCAQEAkD6BHKKKMuNYw6pwcX5O0NBgEOLHSGQYmjnPt/XNT4Rz2fgOhR9Wbwl3lSy+MqzDBtgHqaolqLEFxoTNjlogsVbpy9Bpltwt3jCTC4aJT+09s0ix9nwVShB/q2Jq/ZBo//gIC9iblbxuEtjDmUY6VHt2UrdgZXzntYac/OIVI/K67qysN+YTnuKrIPAX3zbqY+3nci30/sa81rGWeKulTEyDNLpjIvaPyivaewajOhWd6LX0f7yvO9uyVtmIRIhoCpRfp+pSu0oF9X1PvTmJtdsGidXb6vhkSzJLm4OSNp9eVRJiAJ3LCNCwXXTE9GUuRqrMXss/zKUUyrh+VvPzLw==","attributes":{"enabled":true,"nbf":1690266682,"exp":1848120082,"created":1690267282,"updated":1690267282,"recoveryLevel":"CustomizedRecoverable+Purgeable","recoverableDays":7},"policy":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","sans":{},"ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1690267282,"updated":1690267282}},"pending":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending"}}' + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCGjQKarcPSUeTD0FtqKsYD38MOsPgD7mr5Eb0z33wo9/Q+dgmSzL9GfXZ4mrECKEYIbOXN9fKfWS9j/tFcHqzVsek6DNg2lUrQKbUgYjuPsTeWV32DNuX9YkVk31ZkXsdNVgKDK/vzlsaQBY55ousBJe1IrBe2dRTDYaih2IJVd3MJGI/b6dJbzBIS0Wqie6v9m16C+yXJCKot6BqQfqJJW0/y5WiwcYEjUs5hKK1RFPFKpmXckawQn6P4t/U62ow9vbfYqoJecMZ+cq14hfPQdy8782ErzDLFpOZIek2KZFKBu+lNnp2IbZaBD2DIZUDEnQKwfQm7O1ZOHvUaR/HI","cancellation_requested":false,"status":"completed","target":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert","request_id":"b0b638a5f6f746f1a61d1552fa23e7a4"}' headers: cache-control: - no-cache content-length: - - '2715' + - '1333' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:26 GMT + - Mon, 16 Oct 2023 09:24:28 GMT expires: - '-1' pragma: @@ -1497,11 +1432,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 200 message: OK @@ -1512,38 +1447,71 @@ interactions: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - vm secret add Connection: - keep-alive + ParameterSetName: + - -g -n --keyvault --certificate User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending?api-version=7.4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAzW3BfPvEReOjuJleySyvAkdU1ikzaVncvuCsCUYt/yYGboaNIej21zW6XFDxLmuLh+JYsrbkL+cuoFvX6w/By02auVseDSolsrNVajmaEegEDnAJbpA8wUYVBYgVWZXl4Vfvg/CoebU1WzUyeSdyk4/Q2nBcWRXLek2n2dWDVuYfQNP12d9ELifv3Jie54C4vmPFvN+hRT3hxut1JvilSEgbIrJmR6ximX0U7cJ5OEcBivWY24XhHsjxTpIJFoHD8GGWuSAb7HagNXiQZKzPgu8ruKDcPc5XCUS4Eb0PpGb7ez4IPtlgSv2zcGvODw+NPoMO8rkhjRdNy1wyaTmT9","cancellation_requested":false,"status":"completed","target":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert","request_id":"f80e8a16f7dc4d51a7c1d8703d61a7dc"}' + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1333' + - '2799' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:27 GMT + - Mon, 16 Oct 2023 09:24:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.9.908.1 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1557,13 +1525,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/?api-version=7.4 response: body: - string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","kid":"https://vmsecretkv000002.vault.azure.net/keys/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","sid":"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e","x5t":"yrTa9lErygTCWmdBxZTr4F1h2_s","cer":"MIID8DCCAtigAwIBAgIQR4xNSdnWRQ+GJJKOzIC7RzANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIzMDcyNTA2MzEyMloXDTI4MDcyNTA2NDEyMlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJeUuc3kWhse+tpktA4Eyl0bZyCOYdbgNWH42q3cC2GgKj+SeGVn7joYuEd9S0z0E/qDaDDoB+oWX/X6o8hZvXSOF8L0OzG37iAQfw96qOMFB9ZlqtCr2WXGft6QLRGRi1mcHxmgNYuHRgJPz/ukipFUWHS2arIGmziVFxq9SInGavvPChFopFRDHIU95Dl8AWzSdfB2wzqta41xZnGc9bZxnF8ON89XyEile0xSAenoQ0Ob3nCVl7jqfc4MaSTjfCpGLPQ6hCcPp7HbWrLIBJR2ozQYu6llR9OCw0dfodSTO26EGKthKkTapasecbtkO905uYFcnS3jdrJBHOyw+q0CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPbXjG/eFH9X0yZIz3449sD1IfWpMB0GA1UdDgQWBBT214xv3hR/V9MmSM9+OPbA9SH1qTANBgkqhkiG9w0BAQsFAAOCAQEAkD6BHKKKMuNYw6pwcX5O0NBgEOLHSGQYmjnPt/XNT4Rz2fgOhR9Wbwl3lSy+MqzDBtgHqaolqLEFxoTNjlogsVbpy9Bpltwt3jCTC4aJT+09s0ix9nwVShB/q2Jq/ZBo//gIC9iblbxuEtjDmUY6VHt2UrdgZXzntYac/OIVI/K67qysN+YTnuKrIPAX3zbqY+3nci30/sa81rGWeKulTEyDNLpjIvaPyivaewajOhWd6LX0f7yvO9uyVtmIRIhoCpRfp+pSu0oF9X1PvTmJtdsGidXb6vhkSzJLm4OSNp9eVRJiAJ3LCNCwXXTE9GUuRqrMXss/zKUUyrh+VvPzLw==","attributes":{"enabled":true,"nbf":1690266682,"exp":1848120082,"created":1690267282,"updated":1690267282,"recoveryLevel":"CustomizedRecoverable+Purgeable","recoverableDays":7},"policy":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","sans":{},"ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1690267282,"updated":1690267282}},"pending":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending"}}' + string: '{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/406300604ed84005a301f889549aa832","kid":"https://vmsecretkv000002.vault.azure.net/keys/vm-secrt-cert/406300604ed84005a301f889549aa832","sid":"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832","x5t":"DjisGLHapd2wKFeCoDm58J4G0EU","cer":"MIID8DCCAtigAwIBAgIQBCg+hcmVRkO+mCWroxgCxTANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIzMTAxNjA5MTQyMloXDTI4MTAxNjA5MjQyMlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJmmewahT0Iudo6m8dKGEoNahgqSK3l4wbufGVdwiS+CATTEMYnG+2RBuOkuNltD+bCuIl7yZE1RuZpdpaHg0iJSINC0lOXBOFP1NzFHrsXQLHbiLOGn1bk/+Quxy/COEIbM16+xKQ6RFY12bdK6ZrkrTwrRY1CZg0AbmARfw/1nNX7Wugi+1AU613CgWpH6GTsAmsW7xhJ9IDYeWcCUdjmUC3PmkYFfmSSrkJBd92kZubUUkY2XqO+UZITTiKJReG4pU3exWJ6rlUKe0bnnxhc/hl3pxyH+minLKc9JxCDw+HR0OGysLP5JzIPpavmv+YU3FmWjz/IVP9nwQnRJ4/0CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFIloUMWy4LxF8bdIzbSgaCrXDX08MB0GA1UdDgQWBBSJaFDFsuC8RfG3SM20oGgq1w19PDANBgkqhkiG9w0BAQsFAAOCAQEAe4OMCRJXEfDOuolEBdM7xfph2TYwuHiH6uLgARBLJDHOlr3Q36MZom395gGTWLcyarlIXUg7YI38aqBGiXCRiZtdiZzQ56T5dXLnD0RK8jidbtv91IZW8LdWkyQLDUL/PGHZ+lTgkoXay1KIHE2TqEEQ2hRi6niA6cKDp2E85flAIHj5LGvNGWkm1YCD73h9HYRQb5XCfEOH7fNR0wMTXPpmuOAiyFv9qlU9jOcysA3LQXywz6kjsm8RRkOJPMcwV4fvszPjEW81xkgpgRsnHXJqKKkKtW/dJYv/cbE98qYrX4gOonypV7448sm0JMQiTz2QOd1fF7JTWAyDqHl5cA==","attributes":{"enabled":true,"nbf":1697447662,"exp":1855301062,"created":1697448262,"updated":1697448262,"recoveryLevel":"CustomizedRecoverable+Purgeable","recoverableDays":7},"policy":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","sans":{},"ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1697448261,"updated":1697448261}},"pending":{"id":"https://vmsecretkv000002.vault.azure.net/certificates/vm-secrt-cert/pending"}}' headers: cache-control: - no-cache @@ -1572,7 +1540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:27 GMT + - Mon, 16 Oct 2023 09:24:31 GMT expires: - '-1' pragma: @@ -1582,27 +1550,28 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.84;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.118;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.908.1 + - 1.9.1018.1 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0", "caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 64, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0", + "vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59", "caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 64, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "vm1", "adminUsername": "rheladmin", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rheladmin/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz"}]}, - "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": - "ImageDefault"}, "enableVMAgentPlatformUpdates": false}, "secrets": [{"sourceVault": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002"}, - "vaultCertificates": [{"certificateUrl": "https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e"}]}], + [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername": + "rheladmin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rheladmin/.ssh/authorized_keys", "keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n"}]}, "provisionVMAgent": true, "patchSettings": + {"patchMode": "ImageDefault", "assessmentMode": "ImageDefault"}, "enableVMAgentPlatformUpdates": + false}, "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002"}, + "vaultCertificates": [{"certificateUrl": "https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832"}]}], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}}}' headers: @@ -1615,61 +1584,61 @@ interactions: Connection: - keep-alive Content-Length: - - '1908' + - '2138' Content-Type: - application/json ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e\"\r\n + \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1b3e1cde-2d87-494b-a4b5-e84f203a1b04?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fdb61ed9-95a9-4355-8863-c8645682c67a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 cache-control: - no-cache content-length: - - '3004' + - '3245' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:30 GMT + - Mon, 16 Oct 2023 09:24:36 GMT expires: - '-1' pragma: @@ -1686,7 +1655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1191 + - Microsoft.Compute/PutVMSubscriptionMaximum;1499,Microsoft.Compute/PutVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1706,13 +1675,13 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1b3e1cde-2d87-494b-a4b5-e84f203a1b04?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fdb61ed9-95a9-4355-8863-c8645682c67a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-25T06:41:28.6542261+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1b3e1cde-2d87-494b-a4b5-e84f203a1b04\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:24:33.4439368+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fdb61ed9-95a9-4355-8863-c8645682c67a\"\r\n}" headers: cache-control: - no-cache @@ -1721,7 +1690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:41:30 GMT + - Mon, 16 Oct 2023 09:24:36 GMT expires: - '-1' pragma: @@ -1738,7 +1707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29977 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 status: code: 200 message: OK @@ -1756,23 +1725,23 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1b3e1cde-2d87-494b-a4b5-e84f203a1b04?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fdb61ed9-95a9-4355-8863-c8645682c67a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-25T06:41:28.6542261+00:00\",\r\n \"endTime\": - \"2023-07-25T06:41:34.888645+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1b3e1cde-2d87-494b-a4b5-e84f203a1b04\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:24:33.4439368+00:00\",\r\n \"endTime\": + \"2023-10-16T09:24:43.2722487+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fdb61ed9-95a9-4355-8863-c8645682c67a\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:00 GMT + - Mon, 16 Oct 2023 09:25:07 GMT expires: - '-1' pragma: @@ -1789,7 +1758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14991 status: code: 200 message: OK @@ -1807,51 +1776,51 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e\"\r\n + \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3005' + - '3246' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:01 GMT + - Mon, 16 Oct 2023 09:25:07 GMT expires: - '-1' pragma: @@ -1868,7 +1837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31950 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK @@ -1886,51 +1855,51 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e\"\r\n + \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3005' + - '3246' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:03 GMT + - Mon, 16 Oct 2023 09:25:08 GMT expires: - '-1' pragma: @@ -1947,7 +1916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31949 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;34 status: code: 200 message: OK @@ -1965,51 +1934,51 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.KeyVault/vaults/vmsecretkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": - \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/d15c6ae7a6da4a778352697bcf6ebd7e\"\r\n + \"https://vmsecretkv000002.vault.azure.net/secrets/vm-secrt-cert/406300604ed84005a301f889549aa832\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3005' + - '3246' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:04 GMT + - Mon, 16 Oct 2023 09:25:11 GMT expires: - '-1' pragma: @@ -2026,23 +1995,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31948 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;33 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name": - "vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0", "caching": "ReadWrite", "createOption": - "FromImage", "diskSizeGB": 64, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0", + "vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59", "caching": "ReadWrite", "createOption": + "FromImage", "diskSizeGB": 64, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59", "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks": - []}, "osProfile": {"computerName": "vm1", "adminUsername": "rheladmin", "linuxConfiguration": - {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/rheladmin/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz"}]}, - "provisionVMAgent": true, "patchSettings": {"patchMode": "ImageDefault", "assessmentMode": - "ImageDefault"}, "enableVMAgentPlatformUpdates": false}, "secrets": [], "allowExtensionOperations": - true, "requireGuestProvisionSignal": true}, "networkProfile": {"networkInterfaces": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}}}' + [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername": + "rheladmin", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"path": "/home/rheladmin/.ssh/authorized_keys", "keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n"}]}, "provisionVMAgent": true, "patchSettings": + {"patchMode": "ImageDefault", "assessmentMode": "ImageDefault"}, "enableVMAgentPlatformUpdates": + false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": + true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}}}' headers: Accept: - application/json @@ -2053,57 +2023,57 @@ interactions: Connection: - keep-alive Content-Length: - - '1594' + - '1824' Content-Type: - application/json ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9508b40d-d390-457c-a182-d489c9118478?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4cfec4fe-23aa-4c53-962d-88928918290d?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 cache-control: - no-cache content-length: - - '2557' + - '2798' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:08 GMT + - Mon, 16 Oct 2023 09:25:16 GMT expires: - '-1' pragma: @@ -2120,7 +2090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1190 + - Microsoft.Compute/PutVMSubscriptionMaximum;1499,Microsoft.Compute/PutVMResource;11 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2140,13 +2110,13 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9508b40d-d390-457c-a182-d489c9118478?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4cfec4fe-23aa-4c53-962d-88928918290d?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-25T06:42:06.8735515+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9508b40d-d390-457c-a182-d489c9118478\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:25:13.5696047+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4cfec4fe-23aa-4c53-962d-88928918290d\"\r\n}" headers: cache-control: - no-cache @@ -2155,7 +2125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:08 GMT + - Mon, 16 Oct 2023 09:25:16 GMT expires: - '-1' pragma: @@ -2172,7 +2142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29975 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -2190,14 +2160,14 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9508b40d-d390-457c-a182-d489c9118478?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4cfec4fe-23aa-4c53-962d-88928918290d?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-25T06:42:06.8735515+00:00\",\r\n \"endTime\": - \"2023-07-25T06:42:11.1392063+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9508b40d-d390-457c-a182-d489c9118478\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:25:13.5696047+00:00\",\r\n \"endTime\": + \"2023-10-16T09:25:17.7570922+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4cfec4fe-23aa-4c53-962d-88928918290d\"\r\n}" headers: cache-control: - no-cache @@ -2206,7 +2176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:38 GMT + - Mon, 16 Oct 2023 09:25:46 GMT expires: - '-1' pragma: @@ -2223,7 +2193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29974 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 status: code: 200 message: OK @@ -2241,47 +2211,47 @@ interactions: ParameterSetName: - -g -n --keyvault --certificate User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2558' + - '2799' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:39 GMT + - Mon, 16 Oct 2023 09:25:47 GMT expires: - '-1' pragma: @@ -2298,7 +2268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31946 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;30 status: code: 200 message: OK @@ -2316,47 +2286,47 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2022-11-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f8d28e0c-6701-4387-8733-29fe8d4f27ba\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-LVM\",\r\n - \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.9.2023032012\"\r\n - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\",\r\n \"createOption\": + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"1c8ce9c7-0a99-4395-bbd9-25db32af0227\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n + \ \"offer\": \"RHEL\",\r\n \"sku\": \"8-lvm-gen2\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"8.8.2023081717\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\",\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_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_71ffe8c064c64cb8b8c342d12c1d98f0\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_eacd32e69a514bda93fd6c6371407a59\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"rheladmin\",\r\n - \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDR9g866MdwX5/JBMcdMlbMI7pUEFWgxDq8BQfFA3iAt1eVihdea8PYBDHQQYQinwjsjg2alHw3+j9wCj2WOTlEGeC266cAVuzWtNs532IFMKAuj60MDhGboGQTPiEVNjVvWuzjVsRlrmb5tXs8jPKOSQmbbgxXC7k0HeUmLhfzgLzGcpWN+DVuwkxUMnPKxalfbp7El5tA+ycDOFcMEU9GAOR9taqvB4X3GGQjsnRMpNwvYV8OwsRhiQBNlDewtAIInXS4sF+BSenwMdy/QBQWO9hjxUAh1ehHQcDAKTcsjP0p6pjNUHfMZy2rCjHbL6GUvoCN6MIuwXonwGMu6xPz\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-07-25T06:39:04.6831557+00:00\"\r\n - \ }\r\n}" + 64\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n + \ \"adminUsername\": \"rheladmin\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/rheladmin/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_secrets000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"timeCreated\": \"2023-10-16T09:22:00.301196+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2558' + - '2799' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jul 2023 06:42:41 GMT + - Mon, 16 Oct 2023 09:25:49 GMT expires: - '-1' pragma: @@ -2373,7 +2343,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31945 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;35 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml index 54c63afe588..0b02084f1a1 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001","name":"cli_test_vmss_update_custom_data000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_custom_data","date":"2023-07-11T08:45:02Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001","name":"cli_test_vmss_update_custom_data000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_custom_data","date":"2023-10-16T09:20:36Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:05 GMT + - Mon, 16 Oct 2023 09:20:40 GMT expires: - '-1' pragma: @@ -59,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -133,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -141,13 +121,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 11 Jul 2023 08:45:05 GMT + - Mon, 16 Oct 2023 09:20:41 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 11 Jul 2023 08:50:05 GMT + - Mon, 16 Oct 2023 09:25:41 GMT source-age: - - '74' + - '122' strict-transport-security: - max-age=31536000 vary: @@ -161,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 58b4d6baff05b10032a7e225ca11cf9769e8c9e1 + - 6ae5bc9585cd873f754327b25b88a383f42000af x-frame-options: - deny x-github-request-id: - - 0F3A:50A0:4E5253:5B4AFC:64A9F25E + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1240-QPG + - cache-qpg1221-QPG x-timer: - - S1689065106.880785,VS0,VE1 + - S1697448042.984854,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -189,23 +169,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230601.1398\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:06 GMT + - Mon, 16 Oct 2023 09:20:43 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 status: code: 200 message: OK @@ -240,32 +220,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230601.1398?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230601.1398\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:07 GMT + - Mon, 16 Oct 2023 09:20:44 GMT expires: - '-1' pragma: @@ -282,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73973 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73980 status: code: 200 message: OK @@ -300,7 +282,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -314,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:07 GMT + - Mon, 16 Oct 2023 09:20:46 GMT expires: - '-1' pragma: @@ -346,43 +328,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -420,7 +382,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -428,13 +390,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 11 Jul 2023 08:45:09 GMT + - Mon, 16 Oct 2023 09:20:46 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 11 Jul 2023 08:50:09 GMT + - Mon, 16 Oct 2023 09:25:46 GMT source-age: - - '77' + - '126' strict-transport-security: - max-age=31536000 vary: @@ -448,15 +410,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 60087eee351285b3f2bb82cbe94f81925f81e547 + - c1b46d6adeeb046cedf5227e0b75fcdc7c06295f x-frame-options: - deny x-github-request-id: - - 0F3A:50A0:4E5253:5B4AFC:64A9F25E + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-qpg1262-QPG + - cache-qpg1226-QPG x-timer: - - S1689065109.997728,VS0,VE3 + - S1697448046.439709,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -476,23 +438,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230601.1398\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:09 GMT + - Mon, 16 Oct 2023 09:20:46 GMT expires: - '-1' pragma: @@ -509,7 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974 status: code: 200 message: OK @@ -527,32 +489,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230601.1398?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230601.1398\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:10 GMT + - Mon, 16 Oct 2023 09:20:48 GMT expires: - '-1' pragma: @@ -569,7 +533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73972 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73979 status: code: 200 message: OK @@ -587,23 +551,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230601.1398\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230912.1501\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:12 GMT + - Mon, 16 Oct 2023 09:20:49 GMT expires: - '-1' pragma: @@ -620,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 status: code: 200 message: OK @@ -638,32 +602,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230601.1398?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20230912.1501?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230601.1398\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230601.1398\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20230912.1501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20230912.1501\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:13 GMT + - Mon, 16 Oct 2023 09:20:50 GMT expires: - '-1' pragma: @@ -680,7 +646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73971 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73978 status: code: 200 message: OK @@ -708,13 +674,13 @@ interactions: true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {}}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmssq020f", "adminUsername": + "imageReference": {"publisher": "Debian", "offer": "debian-11", "sku": "11-backports-gen2", + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmssu4e7d", "adminUsername": "deploy", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmssq020fNic", "properties": {"ipConfigurations": [{"name": "vmssq020fIPConfig", + [{"name": "vmssu4e7dNic", "properties": {"ipConfigurations": [{"name": "vmssu4e7dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}], @@ -732,21 +698,21 @@ interactions: Connection: - keep-alive Content-Length: - - '4518' + - '4533' Content-Type: - application/json ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_0nXysWxJfIyeTMLidjCiy81CxiW7QXDA","name":"vmss_deploy_0nXysWxJfIyeTMLidjCiy81CxiW7QXDA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14519930793401411576","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-07-11T08:45:23.4402659Z","duration":"PT0.0002342S","correlationId":"fc5a2e3a-f9b2-4c88-858e-41242c3a6460","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FMV892BrElYGF4Nc1GnJOwMEM0QqyGIB","name":"vmss_deploy_FMV892BrElYGF4Nc1GnJOwMEM0QqyGIB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15801518390953953027","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-16T09:20:59.0564699Z","duration":"PT0.0004709S","correlationId":"12e50c2c-f262-407a-9460-d3302b5230d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_0nXysWxJfIyeTMLidjCiy81CxiW7QXDA/operationStatuses/08585125417649998721?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FMV892BrElYGF4Nc1GnJOwMEM0QqyGIB/operationStatuses/08585041588294015539?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -754,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:25 GMT + - Mon, 16 Oct 2023 09:21:00 GMT expires: - '-1' pragma: @@ -782,9 +748,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585125417649998721?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588294015539?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -796,7 +762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:26 GMT + - Mon, 16 Oct 2023 09:21:01 GMT expires: - '-1' pragma: @@ -824,9 +790,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585125417649998721?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588294015539?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -838,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:45:57 GMT + - Mon, 16 Oct 2023 09:21:33 GMT expires: - '-1' pragma: @@ -866,9 +832,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585125417649998721?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585041588294015539?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -880,7 +846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:46:27 GMT + - Mon, 16 Oct 2023 09:22:03 GMT expires: - '-1' pragma: @@ -908,23 +874,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_0nXysWxJfIyeTMLidjCiy81CxiW7QXDA","name":"vmss_deploy_0nXysWxJfIyeTMLidjCiy81CxiW7QXDA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14519930793401411576","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-07-11T08:46:20.1016026Z","duration":"PT56.6615709S","correlationId":"fc5a2e3a-f9b2-4c88-858e-41242c3a6460","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S","maxSurge":false,"rollbackFailedInstancesOnPolicyBreach":false}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmssq020f","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FMV892BrElYGF4Nc1GnJOwMEM0QqyGIB","name":"vmss_deploy_FMV892BrElYGF4Nc1GnJOwMEM0QqyGIB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15801518390953953027","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-16T09:21:59.7895675Z","duration":"PT1M0.7335685S","correlationId":"12e50c2c-f262-407a-9460-d3302b5230d6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S","maxSurge":false,"rollbackFailedInstancesOnPolicyBreach":false}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmssu4e7d","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmssq020fNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmssq020fIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"3c692579-013a-42c7-901d-9ffadaf21b73","timeCreated":"2023-07-11T08:45:47.1353895+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET"}]}}' + test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmssu4e7dNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmssu4e7dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e3704a9b-aac5-4c57-be97-1f924ac8c830","timeCreated":"2023-10-16T09:21:21.6756742+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET"}]}}' headers: cache-control: - no-cache content-length: - - '6147' + - '6191' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:46:28 GMT + - Mon, 16 Oct 2023 09:22:03 GMT expires: - '-1' pragma: @@ -952,7 +918,7 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-03-01 response: @@ -967,7 +933,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssq020f\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssu4e7d\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -980,22 +946,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssq020fNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssq020fIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssu4e7dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssu4e7dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"3c692579-013a-42c7-901d-9ffadaf21b73\",\r\n \"timeCreated\": \"2023-07-11T08:45:47.1353895+00:00\"\r\n + \"e3704a9b-aac5-4c57-be97-1f924ac8c830\",\r\n \"timeCreated\": \"2023-10-16T09:21:21.6756742+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:46:30 GMT + - Mon, 16 Oct 2023 09:22:04 GMT expires: - '-1' pragma: @@ -1012,7 +979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;357,Microsoft.Compute/GetVMScaleSet30Min;2320 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;31 status: code: 200 message: OK @@ -1022,7 +989,7 @@ interactions: "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S", "rollbackFailedInstancesOnPolicyBreach": false, "maxSurge": false}}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "vmssq020f", "adminUsername": "deploy", + {"osProfile": {"computerNamePrefix": "vmssu4e7d", "adminUsername": "deploy", "customData": "I2Nsb3VkLWNvbmZpZwpob3N0bmFtZTogbXlWTVNTaG9zdG5hbWU=", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== @@ -1030,9 +997,9 @@ interactions: false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "vmssq020fNic", "properties": {"primary": true, "disableTcpStateTracking": false, - "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmssq020fIPConfig", + "Premium_LRS"}}, "diskControllerType": "SCSI"}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmssu4e7dNic", "properties": {"primary": true, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmssu4e7dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}], @@ -1049,13 +1016,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2940' + - '2970' Content-Type: - application/json ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-03-01 response: @@ -1070,7 +1037,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssq020f\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssu4e7d\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1083,26 +1050,27 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssq020fNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssq020fIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssu4e7dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssu4e7dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"3c692579-013a-42c7-901d-9ffadaf21b73\",\r\n \"timeCreated\": \"2023-07-11T08:45:47.1353895+00:00\"\r\n + \"e3704a9b-aac5-4c57-be97-1f924ac8c830\",\r\n \"timeCreated\": \"2023-10-16T09:21:21.6756742+00:00\"\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/67fb33c9-d696-4ebe-b413-f6b5521b5de6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/90404a1b-0ce7-4e0c-a085-bf569e2f4172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 cache-control: - no-cache content-length: - - '3937' + - '3991' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:46:38 GMT + - Mon, 16 Oct 2023 09:22:13 GMT expires: - '-1' pragma: @@ -1119,9 +1087,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;267,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;10,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '0' status: @@ -1141,13 +1109,13 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/67fb33c9-d696-4ebe-b413-f6b5521b5de6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/90404a1b-0ce7-4e0c-a085-bf569e2f4172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-11T08:46:35.9018152+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"67fb33c9-d696-4ebe-b413-f6b5521b5de6\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:22:11.7076047+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"90404a1b-0ce7-4e0c-a085-bf569e2f4172\"\r\n}" headers: cache-control: - no-cache @@ -1156,7 +1124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:46:39 GMT + - Mon, 16 Oct 2023 09:22:13 GMT expires: - '-1' pragma: @@ -1173,7 +1141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29692 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1191,23 +1159,23 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/67fb33c9-d696-4ebe-b413-f6b5521b5de6?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/90404a1b-0ce7-4e0c-a085-bf569e2f4172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-03-01 response: body: - string: "{\r\n \"startTime\": \"2023-07-11T08:46:35.9018152+00:00\",\r\n \"endTime\": - \"2023-07-11T08:46:58.167808+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"67fb33c9-d696-4ebe-b413-f6b5521b5de6\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-16T09:22:11.7076047+00:00\",\r\n \"endTime\": + \"2023-10-16T09:22:33.6141554+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"90404a1b-0ce7-4e0c-a085-bf569e2f4172\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:47:16 GMT + - Mon, 16 Oct 2023 09:22:51 GMT expires: - '-1' pragma: @@ -1224,7 +1192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29685 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 status: code: 200 message: OK @@ -1242,7 +1210,7 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-03-01 response: @@ -1257,7 +1225,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssq020f\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssu4e7d\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1270,22 +1238,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssq020fNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssq020fIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssu4e7dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssu4e7dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"3c692579-013a-42c7-901d-9ffadaf21b73\",\r\n \"timeCreated\": \"2023-07-11T08:45:47.1353895+00:00\"\r\n + \"e3704a9b-aac5-4c57-be97-1f924ac8c830\",\r\n \"timeCreated\": \"2023-10-16T09:21:21.6756742+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:47:16 GMT + - Mon, 16 Oct 2023 09:22:51 GMT expires: - '-1' pragma: @@ -1302,7 +1271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;359,Microsoft.Compute/GetVMScaleSet30Min;2313 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2397,Microsoft.Compute/GetVMScaleSetResource;27 status: code: 200 message: OK @@ -1320,7 +1289,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.13 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-03-01 response: @@ -1335,7 +1304,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssq020f\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssu4e7d\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1348,22 +1317,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssq020fNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssq020fIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssu4e7dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssu4e7dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"3c692579-013a-42c7-901d-9ffadaf21b73\",\r\n \"timeCreated\": \"2023-07-11T08:45:47.1353895+00:00\"\r\n + \"e3704a9b-aac5-4c57-be97-1f924ac8c830\",\r\n \"timeCreated\": \"2023-10-16T09:21:21.6756742+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 11 Jul 2023 08:47:17 GMT + - Mon, 16 Oct 2023 09:22:53 GMT expires: - '-1' pragma: @@ -1380,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;358,Microsoft.Compute/GetVMScaleSet30Min;2312 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;26 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 3352efd0f53..dae66c5af9e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -73,7 +73,7 @@ def test_vm_reimage(self, resource_group): 'vm': 'vm' }) - self.cmd('vm create -g {rg} -n {vm} --image OpenLogic:CentOS:7.5:latest --admin-username centosadmin --admin-password testPassword0 ' + self.cmd('vm create -g {rg} -n {vm} --image CentOS85Gen2 --admin-username centosadmin --admin-password testPassword0 ' '--authentication-type password --os-disk-delete-option Delete --nsg-rule NONE') vm_json_before_reimage = self.cmd('vm show -n {vm} -g {rg}').get_output_in_json() self.kwargs.update({ @@ -4561,7 +4561,7 @@ def test_vmss_update_custom_data(self): 'ssh_key': TEST_SSH_KEY_PUB }) - self.cmd('vmss create -n {vmss} -g {rg} --image Debian:debian-10:10:latest --admin-username deploy --ssh-key-value "{ssh_key}"') + self.cmd('vmss create -n {vmss} -g {rg} --image Debian11 --admin-username deploy --ssh-key-value "{ssh_key}"') self.cmd('vmss update -n {vmss} -g {rg} --custom-data "#cloud-config\nhostname: myVMSShostname"') # custom data is write only, hence we have no automatic way to cross check. Here we just verify VM was provisioned self.cmd('vmss show -n {vmss} -g {rg}', checks=[ @@ -5546,7 +5546,7 @@ def test_vm_secret_e2e_test(self, resource_group, resource_group_location, key_v self.kwargs['policy_path'] = os.path.join(TEST_DIR, 'keyvault', 'policy.json') - self.cmd('vm create -g {rg} -n {vm} --image RedHat:RHEL:7-LVM:latest --generate-ssh-keys --admin-username rheladmin --nsg-rule NONE') + self.cmd('vm create -g {rg} -n {vm} --image RHELRaw8LVMGen2 --generate-ssh-keys --admin-username rheladmin --nsg-rule NONE') time.sleep(60) # ensure we don't hit the DNS exception (ignored under playback) self.cmd('keyvault certificate create --vault-name {vault} -n {cert} -p @"{policy_path}"') @@ -10193,7 +10193,7 @@ def test_copy_vm_restore_point(self, resource_group): 'vm_name': self.create_random_name('vm_', 15) }) - vm = self.cmd('vm create -n {vm_name} -g {rg} --image Canonical:UbuntuServer:18.04-LTS:latest --admin-username vmtest').get_output_in_json() + vm = self.cmd('vm create -n {vm_name} -g {rg} --image ubuntu2204 --admin-username vmtest').get_output_in_json() self.kwargs.update({ 'vm_id': vm['id'] }) From 256cc253a20a4751702e8b2459f9a50a6faf572d Mon Sep 17 00:00:00 2001 From: Zeng Taoxu Date: Tue, 17 Oct 2023 15:01:42 +0800 Subject: [PATCH 6/7] update --- src/azure-cli/azure/cli/command_modules/keyvault/_help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py index 829d9e0a9f4..02978b3a22b 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py @@ -58,7 +58,7 @@ vm_secrets=$(az vm secret format -s "$secrets") az vm create -g group-name -n vm-name --admin-username deploy \\ - --image Debian:debian-10:10:latest --secrets "$vm_secrets" + --image Debian11 --secrets "$vm_secrets" """ helps['keyvault certificate list'] = """ @@ -166,7 +166,7 @@ vm_secrets=$(az vm secret format -s "$secrets") az vm create -g group-name -n vm-name --admin-username deploy \\ - --image Debian:debian-10:10:latest --secrets "$vm_secrets" + --image Debian11 --secrets "$vm_secrets" """ helps['keyvault certificate backup'] = """ From 6cd33fc91944900711c82f999bfb0803836541f7 Mon Sep 17 00:00:00 2001 From: Zeng Taoxu Date: Fri, 20 Oct 2023 11:47:41 +0800 Subject: [PATCH 7/7] update --- .../test_copy_vm_restore_point.yaml | 760 +++++++++++------- .../test_vmss_update_custom_data.yaml | 580 ++++++------- 2 files changed, 757 insertions(+), 583 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml index 5347127e519..0667ac4a7f7 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_copy_vm_restore_point.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-09-26T15:18:27Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-20T03:41:19Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:28 GMT + - Fri, 20 Oct 2023 03:41:26 GMT expires: - '-1' pragma: @@ -42,6 +41,120 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Fri, 20 Oct 2023 03:41:26 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Fri, 20 Oct 2023 03:46:26 GMT + source-age: + - '15' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 999155dccc79c1d61de05c9ab37ffcd182339f93 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1282-QPG + x-timer: + - S1697773287.957952,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK - request: body: null headers: @@ -56,24 +169,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:29 GMT + - Fri, 20 Oct 2023 03:41:28 GMT expires: - '-1' pragma: @@ -90,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -108,33 +220,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1158' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:29 GMT + - Fri, 20 Oct 2023 03:41:29 GMT expires: - '-1' pragma: @@ -151,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73993 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -169,8 +282,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -184,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:30 GMT + - Fri, 20 Oct 2023 03:41:31 GMT expires: - '-1' pragma: @@ -198,6 +310,120 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": + \ \"22_04-lts-gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n },\n \"Windows\": {\n \"Win2022Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-Datacenter\",\n \"version\": + \"latest\",\n \"architecture\": \"x64\"\n },\n \"Win2022AzureEditionCore\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2022-datacenter-azure-edition-core\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"Win2019Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2019-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2016Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2016-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2012Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-Datacenter\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"Win2008R2SP1\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2008-R2-SP1\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '3592' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + cross-origin-resource-policy: + - cross-origin + date: + - Fri, 20 Oct 2023 03:41:31 GMT + etag: + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" + expires: + - Fri, 20 Oct 2023 03:46:31 GMT + source-age: + - '20' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding,Origin + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '2' + x-content-type-options: + - nosniff + x-fastly-request-id: + - e37899fbfce651af240e22ca70d8e9564c579d06 + x-frame-options: + - deny + x-github-request-id: + - E616:1960FA:C6186:FB00E:6529D811 + x-served-by: + - cache-qpg1282-QPG + x-timer: + - S1697773292.551142,VS0,VE0 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK - request: body: null headers: @@ -212,24 +438,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:30 GMT + - Fri, 20 Oct 2023 03:41:32 GMT expires: - '-1' pragma: @@ -246,7 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -264,33 +489,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1158' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:31 GMT + - Fri, 20 Oct 2023 03:41:33 GMT expires: - '-1' pragma: @@ -300,10 +526,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73992 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -321,24 +551,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"22.04.202310040\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '307' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:31 GMT + - Fri, 20 Oct 2023 03:41:34 GMT expires: - '-1' pragma: @@ -355,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -373,33 +602,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202306070?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202310040?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": - 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": - \"westus\",\r\n \"name\": \"18.04.202306070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202306070\"\r\n}" + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"22.04.202310040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202310040\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1158' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:31 GMT + - Fri, 20 Oct 2023 03:41:35 GMT expires: - '-1' pragma: @@ -416,7 +646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73991 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -448,12 +678,12 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vmlyp625r673ra", - "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh", - "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "incremental"}}' + null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-jammy", + "sku": "22_04-lts-gen2", "version": "latest"}}, "osProfile": {"computerName": + "vme2k6ibuscftv", "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\n", "path": "/home/vmtest/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: - application/json @@ -464,30 +694,29 @@ interactions: Connection: - keep-alive Content-Length: - - '3642' + - '3863' Content-Type: - application/json ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_StzgsyHUQHqm519xb4LJDAyL8bfGMYbM","name":"vm_deploy_StzgsyHUQHqm519xb4LJDAyL8bfGMYbM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11738560534978620044","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-09-26T15:18:34.3697341Z","duration":"PT0.00009S","correlationId":"fb2a473e-c493-4186-9757-1dc9b5d9aa57","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_X4Hiv2yqXsf4bMkadeBcTyrZ4HhTVjkX","name":"vm_deploy_X4Hiv2yqXsf4bMkadeBcTyrZ4HhTVjkX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8393471256393619874","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-20T03:41:44.8248284Z","duration":"PT0.0002344S","correlationId":"50841fda-3946-43dc-88a8-ed5170f0aeff","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_StzgsyHUQHqm519xb4LJDAyL8bfGMYbM/operationStatuses/08585058653724735862?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_X4Hiv2yqXsf4bMkadeBcTyrZ4HhTVjkX/operationStatuses/08585038335838193423?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2540' + - '2541' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:34 GMT + - Fri, 20 Oct 2023 03:41:46 GMT expires: - '-1' pragma: @@ -515,10 +744,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058653724735862?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335838193423?api-version=2022-09-01 response: body: string: '{"status":"Accepted"}' @@ -530,7 +758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:18:34 GMT + - Fri, 20 Oct 2023 03:41:46 GMT expires: - '-1' pragma: @@ -558,10 +786,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058653724735862?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335838193423?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -573,7 +800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:04 GMT + - Fri, 20 Oct 2023 03:42:16 GMT expires: - '-1' pragma: @@ -601,10 +828,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058653724735862?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335838193423?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -616,7 +842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:35 GMT + - Fri, 20 Oct 2023 03:42:46 GMT expires: - '-1' pragma: @@ -644,22 +870,21 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_StzgsyHUQHqm519xb4LJDAyL8bfGMYbM","name":"vm_deploy_StzgsyHUQHqm519xb4LJDAyL8bfGMYbM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11738560534978620044","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-09-26T15:19:20.0603987Z","duration":"PT45.6907546S","correlationId":"fb2a473e-c493-4186-9757-1dc9b5d9aa57","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Resources/deployments/vm_deploy_X4Hiv2yqXsf4bMkadeBcTyrZ4HhTVjkX","name":"vm_deploy_X4Hiv2yqXsf4bMkadeBcTyrZ4HhTVjkX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8393471256393619874","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-20T03:42:26.6543003Z","duration":"PT41.8297063S","correlationId":"50841fda-3946-43dc-88a8-ed5170f0aeff","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm_000006VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm_000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm_000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm_000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/virtualNetworks/vm_000006VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3442' + - '3441' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:35 GMT + - Fri, 20 Oct 2023 03:42:47 GMT expires: - '-1' pragma: @@ -687,8 +912,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006?$expand=instanceView&api-version=2022-11-01 response: @@ -697,56 +921,56 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vmId\": \"64a88767-1da1-48d6-9705-d5e3440e59ec\",\r\n \"storageProfile\": + \ \"vmId\": \"bce24f8b-4a04-48b7-956f-7c92f8e9c54a\",\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.202306070\"\r\n + \ \"offer\": \"0001-com-ubuntu-server-jammy\",\r\n \"sku\": \"22_04-lts-gen2\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"22.04.202310040\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n \"createOption\": + \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\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_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_cec5669b7d374d68aa8491153a310650\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\"\r\n \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n \"adminUsername\": - \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": - false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\r\n - \ \"instanceView\": {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n - \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": + 30\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\": + \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n + \ \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n + \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": + [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": + true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n + \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"22.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.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\": - \"2023-09-26T15:19:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n + \"2023-10-20T03:42:35+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-09-26T15:18:48.5351736+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-20T03:42:10.0090193+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 + \"V2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-09-26T15:19:18.4886008+00:00\"\r\n + succeeded\",\r\n \"time\": \"2023-10-20T03:42:22.0091546+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-09-26T15:18:45.0820119+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-10-20T03:42:05.8996611+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3943' + - '4201' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:36 GMT + - Fri, 20 Oct 2023 03:42:49 GMT expires: - '-1' pragma: @@ -756,10 +980,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31980 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31 status: code: 200 message: OK @@ -777,19 +1005,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm_000006VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic\",\r\n - \ \"etag\": \"W/\\\"b6056e05-c05b-4bdd-b544-445012cbfa96\\\"\",\r\n \"tags\": + \ \"etag\": \"W/\\\"7765eb03-f710-4075-bc15-5793e6d35888\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"21cc3b9b-be3f-43de-9139-c895985d65d7\",\r\n \"ipConfigurations\": + \ \"resourceGuid\": \"41a2da0b-1066-4013-bb1a-ede5457e74e1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm_000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\",\r\n - \ \"etag\": \"W/\\\"b6056e05-c05b-4bdd-b544-445012cbfa96\\\"\",\r\n + \ \"etag\": \"W/\\\"7765eb03-f710-4075-bc15-5793e6d35888\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -798,8 +1025,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\": - \"eeyoksl3v1vufc124rvsf4ngwa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-31-4A-BE\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": + \"etxqjsfiurpu3bqlogqmhx2qpd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-5A-05-63\",\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/networkSecurityGroups/vm_000006NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n @@ -815,9 +1042,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:35 GMT + - Fri, 20 Oct 2023 03:42:51 GMT etag: - - W/"b6056e05-c05b-4bdd-b544-445012cbfa96" + - W/"7765eb03-f710-4075-bc15-5793e6d35888" expires: - '-1' pragma: @@ -834,10 +1061,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c021572-7bbd-40ab-affb-a2ca83740992 + - eaf58fd1-19ca-43e0-9bb9-88fd396a1b75 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -852,17 +1079,16 @@ interactions: ParameterSetName: - -n -g --image --admin-username User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"vm_000006PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Network/publicIPAddresses/vm_000006PublicIP\",\r\n - \ \"etag\": \"W/\\\"bb9a66df-bd54-4115-a20f-8ef2870f05a0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"8bfda557-216f-4f1a-bc34-2accf87236f5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2bd6dcf1-e729-40c6-9384-57d1ac23ce70\",\r\n - \ \"ipAddress\": \"104.42.199.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"a9e67a51-1410-43d8-b925-c9766f9ead16\",\r\n + \ \"ipAddress\": \"40.83.205.164\",\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_copy_vm_restore_point000001/providers/Microsoft.Network/networkInterfaces/vm_000006VMNic/ipConfigurations/ipconfigvm_000006\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -876,9 +1102,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:36 GMT + - Fri, 20 Oct 2023 03:42:53 GMT etag: - - W/"bb9a66df-bd54-4115-a20f-8ef2870f05a0" + - W/"8bfda557-216f-4f1a-bc34-2accf87236f5" expires: - '-1' pragma: @@ -895,7 +1121,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6910e2d-d803-4ea9-b504-83bfc94aed41 + - ff0c9899-825a-4fe3-bcd1-24b64f86204b status: code: 200 message: OK @@ -913,13 +1139,12 @@ interactions: ParameterSetName: - -g --collection-name --source-id User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_copy_vm_restore_point000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-09-26T15:18:27Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001","name":"cli_test_copy_vm_restore_point000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_copy_vm_restore_point","date":"2023-10-20T03:41:19Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -928,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:36 GMT + - Fri, 20 Oct 2023 03:42:53 GMT expires: - '-1' pragma: @@ -960,8 +1185,7 @@ interactions: ParameterSetName: - -g --collection-name --source-id User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002?api-version=2023-07-01 response: @@ -970,7 +1194,7 @@ interactions: \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/virtualMachines/vm_000006\"\r\n - \ },\r\n \"restorePointCollectionId\": \"b2f996c4-2981-4e3c-997e-6c50bdda9891\",\r\n + \ },\r\n \"restorePointCollectionId\": \"e3240e80-d337-4610-9f86-cd27b1228f44\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -980,7 +1204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:38 GMT + - Fri, 20 Oct 2023 03:43:00 GMT expires: - '-1' pragma: @@ -993,9 +1217,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599 + - Microsoft.Compute/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1017,8 +1241,7 @@ interactions: ParameterSetName: - -g --collection-name --source-id -l User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003?api-version=2023-07-01 response: @@ -1027,7 +1250,7 @@ interactions: \ \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002\"\r\n - \ },\r\n \"restorePointCollectionId\": \"417464b6-f22e-4638-9a14-70a2b9dbe7dd\",\r\n + \ },\r\n \"restorePointCollectionId\": \"a8fd0aad-8b12-4ca5-9226-ae3b380ae90c\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1037,7 +1260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:40 GMT + - Fri, 20 Oct 2023 03:43:07 GMT expires: - '-1' pragma: @@ -1050,9 +1273,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599 + - Microsoft.Compute/PutRestorePointCollectionResource;14,Microsoft.Compute/PutRestorePointCollectionSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1074,46 +1297,46 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-07-01 response: body: string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"64a88767-1da1-48d6-9705-d5e3440e59ec\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"bce24f8b-4a04-48b7-956f-7c92f8e9c54a\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_cec5669b7d374d68aa8491153a310650\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": - \"2023-09-26T15:19:41.5357027+00:00\"\r\n }\r\n}" + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": + \"2023-10-20T03:43:09.9156474+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7abbe92a-44f9-404c-b302-75f4b50d3606?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e6be08cb-6524-4c82-9573-ab5d3b770454?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 cache-control: - no-cache content-length: - - '2266' + - '2466' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:41 GMT + - Fri, 20 Oct 2023 03:43:09 GMT expires: - '-1' pragma: @@ -1126,9 +1349,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598 + - Microsoft.Compute/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1146,14 +1369,13 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7abbe92a-44f9-404c-b302-75f4b50d3606?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e6be08cb-6524-4c82-9573-ab5d3b770454?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T15:19:41.5200786+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7abbe92a-44f9-404c-b302-75f4b50d3606\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:43:09.9000264+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e6be08cb-6524-4c82-9573-ab5d3b770454\"\r\n}" headers: cache-control: - no-cache @@ -1162,7 +1384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:19:41 GMT + - Fri, 20 Oct 2023 03:43:09 GMT expires: - '-1' pragma: @@ -1179,7 +1401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29962 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 status: code: 200 message: OK @@ -1197,14 +1419,13 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7abbe92a-44f9-404c-b302-75f4b50d3606?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e6be08cb-6524-4c82-9573-ab5d3b770454?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T15:19:41.5200786+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7abbe92a-44f9-404c-b302-75f4b50d3606\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:43:09.9000264+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e6be08cb-6524-4c82-9573-ab5d3b770454\"\r\n}" headers: cache-control: - no-cache @@ -1213,7 +1434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:20:11 GMT + - Fri, 20 Oct 2023 03:43:39 GMT expires: - '-1' pragma: @@ -1230,7 +1451,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29971 + - Microsoft.Compute/GetOperationResource;58,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 status: code: 200 message: OK @@ -1248,15 +1469,14 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7abbe92a-44f9-404c-b302-75f4b50d3606?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e6be08cb-6524-4c82-9573-ab5d3b770454?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T15:19:41.5200786+00:00\",\r\n \"endTime\": - \"2023-09-26T15:20:27.0830301+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7abbe92a-44f9-404c-b302-75f4b50d3606\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:43:09.9000264+00:00\",\r\n \"endTime\": + \"2023-10-20T03:43:45.3533595+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e6be08cb-6524-4c82-9573-ab5d3b770454\"\r\n}" headers: cache-control: - no-cache @@ -1265,7 +1485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:20:41 GMT + - Fri, 20 Oct 2023 03:44:10 GMT expires: - '-1' pragma: @@ -1282,7 +1502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29969 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 status: code: 200 message: OK @@ -1300,46 +1520,46 @@ interactions: ParameterSetName: - -g -n --collection-name User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004?api-version=2023-07-01 response: body: string: "{\r\n \"name\": \"point_000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"64a88767-1da1-48d6-9705-d5e3440e59ec\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"bce24f8b-4a04-48b7-956f-7c92f8e9c54a\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_cec5669b7d374d68aa8491153a310650\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\"\r\n \ },\r\n \"diskRestorePoint\": {\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_cec5669b7d374d68aa8491153a310650_c2acbe38-3c9e-483c-ba32-a202df118019\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d_049f50c7-00c3-4ee7-8d21-25eb252067ca\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": - \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-09-26T15:19:41.5357027+00:00\"\r\n + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"FileSystemConsistent\",\r\n \"timeCreated\": \"2023-10-20T03:43:09.9156474+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2790' + - '2990' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:20:42 GMT + - Fri, 20 Oct 2023 03:44:11 GMT expires: - '-1' pragma: @@ -1356,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetRestorePoint3Min;498,Microsoft.Compute/LowCostGetRestorePoint30Min;2498 + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 status: code: 200 message: OK @@ -1378,48 +1598,48 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-07-01 response: body: string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"64a88767-1da1-48d6-9705-d5e3440e59ec\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"bce24f8b-4a04-48b7-956f-7c92f8e9c54a\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_cec5669b7d374d68aa8491153a310650\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"consistencyMode\": \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n - \ },\r\n \"timeCreated\": \"2023-09-26T15:19:41.5357027+00:00\"\r\n }\r\n}" + \ },\r\n \"timeCreated\": \"2023-10-20T03:43:09.9156474+00:00\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84150f45-57fd-4075-adb9-6b3f33bd1afd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5801b51b-913b-4f95-9055-11f5d61a1d42?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 cache-control: - no-cache content-length: - - '2567' + - '2767' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:20:44 GMT + - Fri, 20 Oct 2023 03:44:14 GMT expires: - '-1' pragma: @@ -1432,7 +1652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598 + - Microsoft.Compute/PutRestorePointResource;5,Microsoft.Compute/PutRestorePointSubscriptionMaximum;149 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1452,14 +1672,13 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84150f45-57fd-4075-adb9-6b3f33bd1afd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5801b51b-913b-4f95-9055-11f5d61a1d42?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T15:20:43.5775014+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"84150f45-57fd-4075-adb9-6b3f33bd1afd\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:44:14.3026769+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5801b51b-913b-4f95-9055-11f5d61a1d42\"\r\n}" headers: cache-control: - no-cache @@ -1468,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:20:44 GMT + - Fri, 20 Oct 2023 03:44:14 GMT expires: - '-1' pragma: @@ -1485,7 +1704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29965 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1503,15 +1722,14 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84150f45-57fd-4075-adb9-6b3f33bd1afd?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5801b51b-913b-4f95-9055-11f5d61a1d42?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T15:20:43.5775014+00:00\",\r\n \"endTime\": - \"2023-09-26T15:20:50.0618374+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"84150f45-57fd-4075-adb9-6b3f33bd1afd\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:44:14.3026769+00:00\",\r\n \"endTime\": + \"2023-10-20T03:44:20.0526259+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5801b51b-913b-4f95-9055-11f5d61a1d42\"\r\n}" headers: cache-control: - no-cache @@ -1520,7 +1738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:21:13 GMT + - Fri, 20 Oct 2023 03:44:45 GMT expires: - '-1' pragma: @@ -1537,7 +1755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29963 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 status: code: 200 message: OK @@ -1555,49 +1773,49 @@ interactions: ParameterSetName: - -g -n --collection-name --source-restore-point User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005?api-version=2023-07-01 response: body: string: "{\r\n \"name\": \"point_000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005\",\r\n - \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"64a88767-1da1-48d6-9705-d5e3440e59ec\",\r\n + \ \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"bce24f8b-4a04-48b7-956f-7c92f8e9c54a\",\r\n \ \"location\": \"westus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_cec5669b7d374d68aa8491153a310650\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\",\r\n \ \"diskSizeGB\": 30,\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_cec5669b7d374d68aa8491153a310650\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/disks/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d\"\r\n \ },\r\n \"diskRestorePoint\": {\r\n \"sourceDiskRestorePoint\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_cec5669b7d374d68aa8491153a310650_c2acbe38-3c9e-483c-ba32-a202df118019\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004/diskRestorePoints/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d_049f50c7-00c3-4ee7-8d21-25eb252067ca\"\r\n \ },\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_cec5669b7d374d68aa8491153a310650_7fb6a69d-24cb-4b78-8d4c-750c5f6efea4\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000003/restorePoints/point_000005/diskRestorePoints/vm_000006_disk1_f1ba01162c6d4bcc8d0ac29eaa0bc00d_3b7d5924-73bb-479f-8fc3-91c8ecb2ad0c\"\r\n \ }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"vmlyp625r673ra\",\r\n \"adminUsername\": + {\r\n \"computerName\": \"vme2k6ibuscftv\",\r\n \"adminUsername\": \"vmtest\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oct+HU9mLDTVXiGJaxm6yvnUvwDeVZvGnW1+n3sOaUGLgTg2bk0/BemUjEWPt4WVeGXdTq+CzLNMMtzU1M0uSe5zaaAqlJUHiUt2zSwab+GNdiRf7Y5hIZKZkoTAgEH6R4NONHHE7eIN+7TpZIDXkb199cE9EGoAKPjfHd8+4svfXVAOV4mx9rQsKIUQ7tjhip6kkP+2FqWHrIYlOPDYxs30fKauYVn07GYRplNbAOvWnsIm6ghnYpNmoDOxQhQ0rCA0WhtOLVejn2/0WjI72wA9d3EoNnrR4n78aT3Fq6Qa248Uxk6eXKGAK8KpJ5ZGQT3sroJ/HQCSRP/rVdUh\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n - \ \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVkq96e0M8yAgX4RzjcMrER1J+UiWDpmPDlCUppRPtYKdq8n9QcgxD8UIzKHcZuYKYytLfTEPzMyZWIZX9VGZGNIncdObvOD1R/A3aspLKTpFQ6lGoUbua94ajsJxM79j0bSa1Vir6CHGH5nJUCitvsLtGC1xKQa6qHS0PunWsrTyQHfH+vccIi2bR/gmaa6SdUakbfPk1M4Ac0HopTLQhbcJrgMFi/2EspxiZdhCGkqmO7ak/OcvbjdvTffq1naETygMWvXPWkn8x0QckSBaFt4tWU6Zu50r5GwXaKUDaIWCdhfAVOw20irxCbgyD//YBWy5aYUr+uGaugnjHRkmmmCUqAd6i5tYRrLh18vLhPm8GLhvlYTfV09n3IqCXtWnKYRJEd4s/WNOrHeY0lupu7RHm4iJBgfFHnbqtKihaIY4vK5RJmuA/TZ/C/IRysw9zwirSnddhg8xTryPzmcmMjCqLgBILmcPVVU8Bh2kC1FCyWeYyIptRkWFr3aWpG0= + v-taoxuzeng@microsoft.com\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": + \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": - \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": + \"V2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"FileSystemConsistent\",\r\n \"sourceRestorePoint\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_copy_vm_restore_point000001/providers/Microsoft.Compute/restorePointCollections/collection_000002/restorePoints/point_000004\"\r\n - \ },\r\n \"timeCreated\": \"2023-09-26T15:19:41.5357027+00:00\"\r\n }\r\n}" + \ },\r\n \"timeCreated\": \"2023-10-20T03:43:09.9156474+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3428' + - '3628' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 15:21:13 GMT + - Fri, 20 Oct 2023 03:44:45 GMT expires: - '-1' pragma: @@ -1614,7 +1832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetRestorePoint3Min;499,Microsoft.Compute/LowCostGetRestorePoint30Min;2499 + - Microsoft.Compute/LowCostGetRestorePointSubscriptionMaximum;599 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml index d1939c5dd64..7ef89fd3f76 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_custom_data.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001","name":"cli_test_vmss_update_custom_data000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_custom_data","date":"2023-09-26T12:08:45Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001","name":"cli_test_vmss_update_custom_data000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_vmss_update_custom_data","date":"2023-10-20T03:41:19Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,13 +27,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:45 GMT + - Fri, 20 Oct 2023 03:41:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -58,43 +59,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -132,7 +113,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -140,13 +121,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 26 Sep 2023 12:08:46 GMT + - Fri, 20 Oct 2023 03:41:26 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 26 Sep 2023 12:13:46 GMT + - Fri, 20 Oct 2023 03:46:26 GMT source-age: - - '241' + - '15' strict-transport-security: - max-age=31536000 vary: @@ -160,15 +141,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 4b4ee1a84ff177d2cdca29b97fbac92a0aea357d + - 40feab6ce3b96866160764a43f2332af4dda5207 x-frame-options: - deny x-github-request-id: - - C4DA:576F:1EAED6:2624DF:650028D5 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-iad-kcgs7200174-IAD + - cache-qpg1251-QPG x-timer: - - S1695730127.597757,VS0,VE5 + - S1697773287.901655,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -188,24 +169,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20231013.1532\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:46 GMT + - Fri, 20 Oct 2023 03:41:27 GMT expires: - '-1' pragma: @@ -222,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 status: code: 200 message: OK @@ -240,33 +220,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20231013.1532?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20231013.1532\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:46 GMT + - Fri, 20 Oct 2023 03:41:28 GMT expires: - '-1' pragma: @@ -276,10 +257,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73986 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 status: code: 200 message: OK @@ -297,8 +282,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -312,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:47 GMT + - Fri, 20 Oct 2023 03:41:30 GMT expires: - '-1' pragma: @@ -344,43 +328,23 @@ interactions: string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": - \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": - {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n - \ \"sku\": \"7.5\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"CentOS85Gen2\": {\n \"publisher\": - \ \"OpenLogic\",\n \"offer\": \"CentOS\",\n \"sku\": - \ \"8_5-gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"Debian\": {\n \"publisher\": - \"Debian\",\n \"offer\": \"debian-10\",\n \"sku\": \"10\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Debian11\": {\n \"publisher\": \"Debian\",\n - \ \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"Flatcar\": {\n \"publisher\": \"kinvolk\",\n - \ \"offer\": \"flatcar-container-linux-free\",\n \"sku\": - \"stable\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"publisher\": - \ \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS85Gen2\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"8_5-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"Debian11\": + \ {\n \"publisher\": \"Debian\",\n \"offer\": \"debian-11\",\n + \ \"sku\": \"11-backports-gen2\",\n \"version\": \"latest\",\n + \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\": + \ {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\",\n \ \"sku\": \"stable-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"openSUSE-Leap\": - {\n \"publisher\": \"SUSE\",\n \"offer\": \"opensuse-leap-15-3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"publisher\": - \ \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \"sku\": - \ \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"RHEL\": {\n \"publisher\": \"RedHat\",\n - \ \"offer\": \"RHEL\",\n \"sku\": \"7-LVM\",\n \"version\": - \"latest\",\n \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\": - \ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n - \ \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\",\n - \ \"architecture\": \"x64\"\n },\n \"SLES\": {\n - \ \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n - \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": - \"x64\"\n },\n \"SuseSles15SP3\": {\n \"publisher\": - \"SUSE\",\n \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n - \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n - \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n - \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\": + \ {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n + \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \"architecture\": + \"x64\"\n },\n \"RHELRaw8LVMGen2\": {\n \"publisher\": + \ \"RedHat\",\n \"offer\": \"RHEL\",\n \"sku\": \"8-lvm-gen2\",\n + \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n + \ },\n \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n + \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \ },\n \"Ubuntu2204\": {\n \"publisher\": \"Canonical\",\n \ \"offer\": \"0001-com-ubuntu-server-jammy\",\n \"sku\": @@ -418,7 +382,7 @@ interactions: connection: - keep-alive content-length: - - '5018' + - '3592' content-security-policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox content-type: @@ -426,13 +390,13 @@ interactions: cross-origin-resource-policy: - cross-origin date: - - Tue, 26 Sep 2023 12:08:48 GMT + - Fri, 20 Oct 2023 03:41:30 GMT etag: - - W/"0a553f088c358b909a2940b5a97fcb731c1d443cb7a332ca4933eb2b7df38468" + - W/"d899bf46cbe29d2f24fdd8591de45b570357fdcca02295e764b3c6c587e12212" expires: - - Tue, 26 Sep 2023 12:13:48 GMT + - Fri, 20 Oct 2023 03:46:30 GMT source-age: - - '242' + - '18' strict-transport-security: - max-age=31536000 vary: @@ -446,15 +410,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - c5fbf4e2bd5a84c41c0fd646bb43e8e94013f7f3 + - 8c6a2e6d7c6afae30db1687c33569aa7396ddb19 x-frame-options: - deny x-github-request-id: - - C4DA:576F:1EAED6:2624DF:650028D5 + - E616:1960FA:C6186:FB00E:6529D811 x-served-by: - - cache-iad-kiad7000169-IAD + - cache-qpg1278-QPG x-timer: - - S1695730128.998233,VS0,VE26 + - S1697773291.570347,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -474,24 +438,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20231013.1532\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:48 GMT + - Fri, 20 Oct 2023 03:41:31 GMT expires: - '-1' pragma: @@ -508,7 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -526,33 +489,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20231013.1532?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20231013.1532\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:48 GMT + - Fri, 20 Oct 2023 03:41:32 GMT expires: - '-1' pragma: @@ -569,7 +533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73985 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -587,24 +551,23 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20231013.1532\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n \ }\r\n]" headers: cache-control: - no-cache content-length: - - '273' + - '288' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:48 GMT + - Fri, 20 Oct 2023 03:41:33 GMT expires: - '-1' pragma: @@ -621,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 status: code: 200 message: OK @@ -639,33 +602,34 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-11/skus/11-backports-gen2/versions/0.20231013.1532?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n + \ \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": + false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": + \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": + \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n - \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": - {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\n - \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n - \ \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\r\n}" + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": + 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n + \ \"name\": \"0.20231013.1532\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-11/Skus/11-backports-gen2/Versions/0.20231013.1532\"\r\n}" headers: cache-control: - no-cache content-length: - - '1008' + - '1139' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:48 GMT + - Fri, 20 Oct 2023 03:41:34 GMT expires: - '-1' pragma: @@ -682,7 +646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73984 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -710,13 +674,13 @@ interactions: true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {}}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, - "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmssndfd0", "adminUsername": + "imageReference": {"publisher": "Debian", "offer": "debian-11", "sku": "11-backports-gen2", + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmssqf448", "adminUsername": "deploy", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmssndfd0Nic", "properties": {"ipConfigurations": [{"name": "vmssndfd0IPConfig", + [{"name": "vmssqf448Nic", "properties": {"ipConfigurations": [{"name": "vmssqf448IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}], @@ -734,30 +698,29 @@ interactions: Connection: - keep-alive Content-Length: - - '4518' + - '4533' Content-Type: - application/json ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FCz8uX7I348trsCcLdDu2EPYyqkLVZ1a","name":"vmss_deploy_FCz8uX7I348trsCcLdDu2EPYyqkLVZ1a","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4938703550332766143","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-09-26T12:08:55.8349093Z","duration":"PT0.0005658S","correlationId":"763da89e-9f57-44ab-b63f-1d2dcaee5e36","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_QaujdhgMt4hcgZLwdt1FxaTOyLYoZFOv","name":"vmss_deploy_QaujdhgMt4hcgZLwdt1FxaTOyLYoZFOv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14312123194613994708","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-10-20T03:41:46.7955322Z","duration":"PT0.0005772S","correlationId":"89c9c026-ddea-4353-b7c1-10193b720bab","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FCz8uX7I348trsCcLdDu2EPYyqkLVZ1a/operationStatuses/08585058767514063956?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_QaujdhgMt4hcgZLwdt1FxaTOyLYoZFOv/operationStatuses/08585038335816763062?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2493' + - '2494' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:57 GMT + - Fri, 20 Oct 2023 03:41:49 GMT expires: - '-1' pragma: @@ -785,10 +748,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058767514063956?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335816763062?api-version=2022-09-01 response: body: string: '{"status":"Accepted"}' @@ -800,13 +762,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:08:57 GMT + - Fri, 20 Oct 2023 03:41:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -826,10 +790,9 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058767514063956?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335816763062?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -841,13 +804,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:09:27 GMT + - Fri, 20 Oct 2023 03:42:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -867,10 +832,51 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585058767514063956?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335816763062?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 20 Oct 2023 03:42:51 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: + - -n -g --image --admin-username --ssh-key-value + User-Agent: + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585038335816763062?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -882,13 +888,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:09:57 GMT + - Fri, 20 Oct 2023 03:43:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -908,30 +916,31 @@ interactions: ParameterSetName: - -n -g --image --admin-username --ssh-key-value User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_FCz8uX7I348trsCcLdDu2EPYyqkLVZ1a","name":"vmss_deploy_FCz8uX7I348trsCcLdDu2EPYyqkLVZ1a","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4938703550332766143","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-09-26T12:09:54.6255875Z","duration":"PT58.791244S","correlationId":"763da89e-9f57-44ab-b63f-1d2dcaee5e36","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S","maxSurge":false,"rollbackFailedInstancesOnPolicyBreach":false}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmssndfd0","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Resources/deployments/vmss_deploy_QaujdhgMt4hcgZLwdt1FxaTOyLYoZFOv","name":"vmss_deploy_QaujdhgMt4hcgZLwdt1FxaTOyLYoZFOv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14312123194613994708","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-10-20T03:42:54.179931Z","duration":"PT1M7.384976S","correlationId":"89c9c026-ddea-4353-b7c1-10193b720bab","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss000002LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss000002VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss000002LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss000002"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S","maxSurge":false,"rollbackFailedInstancesOnPolicyBreach":false}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmssqf448","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmssndfd0Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmssndfd0IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"717164b2-b9fd-454a-8150-add67b667823","timeCreated":"2023-09-26T12:09:19.5315636+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET"}]}}' + test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-11","sku":"11-backports-gen2","version":"latest"},"diskControllerType":"SCSI"},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmssqf448Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmssqf448IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"0c2458a6-53f8-4e7f-a09a-1f86bff8b0b9","timeCreated":"2023-10-20T03:42:14.6028706+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/publicIPAddresses/vmss000002LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET"}]}}' headers: cache-control: - no-cache content-length: - - '6145' + - '6189' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:09:57 GMT + - Fri, 20 Oct 2023 03:43:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -951,8 +960,7 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-07-01 response: @@ -967,7 +975,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssndfd0\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssqf448\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -980,22 +988,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssndfd0Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssndfd0IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssqf448Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssqf448IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"717164b2-b9fd-454a-8150-add67b667823\",\r\n \"timeCreated\": \"2023-09-26T12:09:19.5315636+00:00\"\r\n + \"0c2458a6-53f8-4e7f-a09a-1f86bff8b0b9\",\r\n \"timeCreated\": \"2023-10-20T03:42:14.6028706+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:09:58 GMT + - Fri, 20 Oct 2023 03:43:24 GMT expires: - '-1' pragma: @@ -1012,7 +1021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;371,Microsoft.Compute/GetVMScaleSet30Min;2502 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;31 status: code: 200 message: OK @@ -1022,7 +1031,7 @@ interactions: "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S", "rollbackFailedInstancesOnPolicyBreach": false, "maxSurge": false}}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "vmssndfd0", "adminUsername": "deploy", + {"osProfile": {"computerNamePrefix": "vmssqf448", "adminUsername": "deploy", "customData": "I2Nsb3VkLWNvbmZpZwpob3N0bmFtZTogbXlWTVNTaG9zdG5hbWU=", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== @@ -1030,9 +1039,9 @@ interactions: false}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": - "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "vmssndfd0Nic", "properties": {"primary": true, "disableTcpStateTracking": false, - "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmssndfd0IPConfig", + "Premium_LRS"}}, "diskControllerType": "SCSI"}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "vmssqf448Nic", "properties": {"primary": true, "disableTcpStateTracking": + false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmssqf448IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool"}], @@ -1049,14 +1058,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2940' + - '2970' Content-Type: - application/json ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-07-01 response: @@ -1071,7 +1079,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssndfd0\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssqf448\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1084,26 +1092,27 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssndfd0Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssndfd0IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssqf448Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssqf448IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"717164b2-b9fd-454a-8150-add67b667823\",\r\n \"timeCreated\": \"2023-09-26T12:09:19.5315636+00:00\"\r\n + \"0c2458a6-53f8-4e7f-a09a-1f86bff8b0b9\",\r\n \"timeCreated\": \"2023-10-20T03:42:14.6028706+00:00\"\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc4b185-f5c8-41b8-873b-9d9bdf1a6d79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7acce62d-0d14-4b4e-9bfa-0b79b5cbd3a7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 cache-control: - no-cache content-length: - - '3937' + - '3991' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:10:04 GMT + - Fri, 20 Oct 2023 03:43:33 GMT expires: - '-1' pragma: @@ -1120,9 +1129,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;56,Microsoft.Compute/CreateVMScaleSet30Min;289,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '0' status: @@ -1142,74 +1151,22 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc4b185-f5c8-41b8-873b-9d9bdf1a6d79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2023-09-26T12:10:03.3600666+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"adc4b185-f5c8-41b8-873b-9d9bdf1a6d79\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 26 Sep 2023 12:10:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29853 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss update - Connection: - - keep-alive - ParameterSetName: - - -n -g --custom-data - User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc4b185-f5c8-41b8-873b-9d9bdf1a6d79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7acce62d-0d14-4b4e-9bfa-0b79b5cbd3a7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T12:10:03.3600666+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"adc4b185-f5c8-41b8-873b-9d9bdf1a6d79\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:43:31.556499+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7acce62d-0d14-4b4e-9bfa-0b79b5cbd3a7\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:10:41 GMT + - Fri, 20 Oct 2023 03:43:33 GMT expires: - '-1' pragma: @@ -1226,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29851 + - Microsoft.Compute/GetOperationResource;59,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 status: code: 200 message: OK @@ -1244,24 +1201,23 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc4b185-f5c8-41b8-873b-9d9bdf1a6d79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7acce62d-0d14-4b4e-9bfa-0b79b5cbd3a7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2023-07-01 response: body: - string: "{\r\n \"startTime\": \"2023-09-26T12:10:03.3600666+00:00\",\r\n \"endTime\": - \"2023-09-26T12:10:48.5793561+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"adc4b185-f5c8-41b8-873b-9d9bdf1a6d79\"\r\n}" + string: "{\r\n \"startTime\": \"2023-10-20T03:43:31.556499+00:00\",\r\n \"endTime\": + \"2023-10-20T03:43:56.4472379+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7acce62d-0d14-4b4e-9bfa-0b79b5cbd3a7\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:11:11 GMT + - Fri, 20 Oct 2023 03:44:11 GMT expires: - '-1' pragma: @@ -1278,7 +1234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29848 + - Microsoft.Compute/GetOperationResource;57,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 status: code: 200 message: OK @@ -1296,8 +1252,7 @@ interactions: ParameterSetName: - -n -g --custom-data User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-07-01 response: @@ -1312,7 +1267,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssndfd0\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssqf448\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1325,22 +1280,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssndfd0Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssndfd0IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssqf448Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssqf448IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"717164b2-b9fd-454a-8150-add67b667823\",\r\n \"timeCreated\": \"2023-09-26T12:09:19.5315636+00:00\"\r\n + \"0c2458a6-53f8-4e7f-a09a-1f86bff8b0b9\",\r\n \"timeCreated\": \"2023-10-20T03:42:14.6028706+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:11:11 GMT + - Fri, 20 Oct 2023 03:44:11 GMT expires: - '-1' pragma: @@ -1357,7 +1313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;376,Microsoft.Compute/GetVMScaleSet30Min;2502 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2397,Microsoft.Compute/GetVMScaleSetResource;33 status: code: 200 message: OK @@ -1375,8 +1331,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.10.13 (Linux-5.15.0-1046-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.53.0 azsdk-python-azure-mgmt-compute/30.2.0 Python/3.9.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss000002?api-version=2023-07-01 response: @@ -1391,7 +1346,7 @@ interactions: 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\",\r\n \"maxSurge\": false,\r\n \"rollbackFailedInstancesOnPolicyBreach\": false\r\n }\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmssndfd0\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmssqf448\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1404,22 +1359,23 @@ interactions: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n - \ \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n }\r\n - \ },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmssndfd0Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssndfd0IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n + {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-11\",\r\n + \ \"sku\": \"11-backports-gen2\",\r\n \"version\": \"latest\"\r\n + \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmssqf448Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmssqf448IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/virtualNetworks/vmss000002VNET/subnets/vmss000002Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/backendAddressPools/vmss000002LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_custom_data000001/providers/Microsoft.Network/loadBalancers/vmss000002LB/inboundNatPools/vmss000002LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"717164b2-b9fd-454a-8150-add67b667823\",\r\n \"timeCreated\": \"2023-09-26T12:09:19.5315636+00:00\"\r\n + \"0c2458a6-53f8-4e7f-a09a-1f86bff8b0b9\",\r\n \"timeCreated\": \"2023-10-20T03:42:14.6028706+00:00\"\r\n \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3938' + - '3992' content-type: - application/json; charset=utf-8 date: - - Tue, 26 Sep 2023 12:11:11 GMT + - Fri, 20 Oct 2023 03:44:14 GMT expires: - '-1' pragma: @@ -1436,7 +1392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;375,Microsoft.Compute/GetVMScaleSet30Min;2501 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32 status: code: 200 message: OK